forked from palantir/tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruleLoaderTests.ts
151 lines (129 loc) · 6.65 KB
/
ruleLoaderTests.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/**
* @license
* Copyright 2013 Palantir Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { assert } from "chai";
import * as diff from "diff";
import * as fs from "fs";
import * as path from "path";
import { rules as allRules, RULES_EXCLUDED_FROM_ALL_CONFIG } from "../src/configs/all";
import { IEnableDisablePosition } from "../src/ruleLoader";
import { camelize } from "../src/utils";
import { IOptions } from "./../src/language/rule/rule";
import { loadRules } from "./lint";
const builtRulesDir = "build/src/rules";
const srcRulesDir = "src/rules";
const testRulesDir = "test/rules";
describe("Rule Loader", () => {
it("loads core rules", () => {
const validConfiguration: IOptions[] = [
{ ruleName: "class-name", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "eofline", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "forin", ruleArguments: [], ruleSeverity: "off", disabledIntervals: [] },
{ ruleName: "no-debugger", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "quotemark", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
];
const rules = loadRules(validConfiguration, new Map<string, IEnableDisablePosition[]>(), builtRulesDir);
assert.equal(rules.length, 5);
});
it("ignores invalid rules", () => {
const invalidConfiguration: IOptions[] = [
{ ruleName: "class-name", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "invalidConfig1", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "invalidConfig2", ruleArguments: [], ruleSeverity: "off", disabledIntervals: [] },
];
const rules = loadRules(invalidConfiguration, new Map<string, IEnableDisablePosition[]>(), [builtRulesDir]);
assert.equal(rules.length, 1);
});
it("properly sets rule severity with options", () => {
const withOptions: IOptions[] = [
{ ruleName: "callable-types", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "max-line-length", ruleArguments: [140], ruleSeverity: "warning", disabledIntervals: [] },
];
const rules = loadRules(withOptions, new Map<string, IEnableDisablePosition[]>(), [builtRulesDir]);
assert.equal(rules.length, 2);
assert.equal(rules[0].getOptions().ruleSeverity, "error");
assert.equal(rules[1].getOptions().ruleSeverity, "warning");
});
it("loads disabled rules if rule in enableDisableRuleMap", () => {
const validConfiguration: IOptions[] = [
{ ruleName: "forin", ruleArguments: [], ruleSeverity: "off", disabledIntervals: [] },
];
const enableDisableMap = new Map<string, IEnableDisablePosition[]>();
enableDisableMap.set("forin", [{ isEnabled: true, position: 4 }]);
const rules = loadRules(validConfiguration, enableDisableMap, builtRulesDir);
assert.equal(rules.length, 1);
});
it("works with rulesDirectory argument as an Array", () => {
const validConfiguration: IOptions[] = [
{ ruleName: "class-name", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "eofline", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "forin", ruleArguments: [], ruleSeverity: "off", disabledIntervals: [] },
{ ruleName: "no-debugger", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "quotemark", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
];
const rules = loadRules(validConfiguration, new Map<string, IEnableDisablePosition[]>(), [builtRulesDir]);
assert.equal(rules.length, 5);
});
it("loads js rules", () => {
const validConfiguration: IOptions[] = [
{ ruleName: "class-name", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
{ ruleName: "await-promise", ruleArguments: [], ruleSeverity: "error", disabledIntervals: [] },
];
const rules = loadRules(validConfiguration, new Map<string, IEnableDisablePosition[]>(), builtRulesDir, true);
assert.equal(rules.length, 1);
});
it("tests every rule", () => {
const tests = fs.readdirSync(testRulesDir)
.filter((file) => !file.startsWith("_") && fs.statSync(path.join(testRulesDir, file)).isDirectory())
.map(camelize);
const diffResults = diffLists(everyRule(), tests);
let testFailed = false;
for (const { added, removed, value } of diffResults) {
if (added) {
console.warn(`Test has no matching rule: ${value}`);
testFailed = true;
} else if (removed) {
console.warn(`Missing test: ${value}`);
testFailed = true;
}
}
assert.isFalse(testFailed, "List of rules doesn't match list of tests");
});
it("includes every rule in 'tslint:all'", () => {
const expectedAllRules = everyRule().filter((ruleName) =>
RULES_EXCLUDED_FROM_ALL_CONFIG.indexOf(ruleName) === -1);
const tslintAllRules = Object.keys(allRules).map(camelize).sort();
const diffResults = diffLists(expectedAllRules, tslintAllRules);
const failures: string[] = [];
for (const { added, removed, value } of diffResults) {
if (added) {
failures.push(`Rule in 'tslint:all' does not exist: ${value}`);
} else if (removed) {
failures.push(`Rule not in 'tslint:all': ${value}`);
}
}
assert(failures.length === 0, failures.join("\n"));
});
});
function diffLists(actual: string[], expected: string[]): diff.IDiffResult[] {
return diff.diffLines(actual.join("\n"), expected.join("\n"));
}
function everyRule(): string[] {
return fs.readdirSync(srcRulesDir)
.filter((file) => /Rule.ts$/.test(file))
.map((file) => file.substr(0, file.length - "Rule.ts".length))
.sort();
}