-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathlinters.js
executable file
·268 lines (186 loc) · 9.61 KB
/
linters.js
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
'use strict';
// Load modules
const Fs = require('fs');
const Path = require('path');
const _Lab = require('../test_runner');
const Code = require('@hapi/code');
const Linters = require('../lib/modules/lint');
// Test shortcuts
const lab = exports.lab = _Lab.script();
const describe = lab.describe;
const it = lab.it;
const expect = Code.expect;
describe('Linters - eslint', () => {
it('should lint files in a folder', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'basic');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint' });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
const checkedFile = eslintResults[0];
expect(checkedFile).to.include({ filename: Path.join(path, 'fail.js') });
expect(checkedFile.errors).to.include([
{ line: 13, severity: 'ERROR', message: 'semi - Missing semicolon.' },
{ line: 14, severity: 'WARNING', message: 'eol-last - Newline required at end of file but not found.' }
]);
});
it('should default to eslint', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'basic');
const result = await Linters.lint({ lintingPath: path });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
const checkedFile = eslintResults[0];
expect(checkedFile).to.include({ filename: Path.join(path, 'fail.js') });
expect(checkedFile.errors).to.include([
{ line: 13, severity: 'ERROR', message: 'semi - Missing semicolon.' },
{ line: 14, severity: 'WARNING', message: 'eol-last - Newline required at end of file but not found.' }
]);
});
it('should use local configuration files', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'with_config');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint' });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(2);
const checkedFile = eslintResults[1];
expect(checkedFile).to.include({ filename: Path.join(path, 'fail.js') });
expect(checkedFile.errors).to.include([
{ line: 14, severity: 'ERROR', message: 'eol-last - Newline required at end of file but not found.' }]);
expect(checkedFile.errors).to.not.include({ line: 8, severity: 'ERROR', message: 'no-unused-vars - internals is defined but never used' });
});
it('should lint ESM files', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'esm');
const result = await Linters.lint({ lintingPath: path });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(2);
const checkedModuleFile = eslintResults.find(({ filename }) => filename === Path.join(path, 'fail.js'));
expect(checkedModuleFile.errors).to.include([
{ line: 11, severity: 'ERROR', message: 'semi - Missing semicolon.' },
{ line: 12, severity: 'WARNING', message: 'eol-last - Newline required at end of file but not found.' }
]);
const checkedCjsFile = eslintResults.find(({ filename }) => filename === Path.join(path, 'eslint.config.cjs'));
expect(checkedCjsFile.errors).to.be.empty();
});
it('should lint files with all js extensions', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'extensions');
const result = await Linters.lint({ lintingPath: path });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(3);
const checkedCjs = eslintResults.find(({ filename }) => filename === Path.join(path, 'index.cjs'));
expect(checkedCjs.errors).to.include([
{ line: 3, severity: 'ERROR', message: 'semi - Missing semicolon.' }
]);
const checkedJs = eslintResults.find(({ filename }) => filename === Path.join(path, 'index.js'));
expect(checkedJs.errors).to.include([
{ line: 3, severity: 'ERROR', message: 'semi - Missing semicolon.' }
]);
const checkedMjs = eslintResults.find(({ filename }) => filename === Path.join(path, 'index.mjs'));
expect(checkedMjs.errors).to.include([
{ line: 1, severity: 'ERROR', message: 'semi - Missing semicolon.' }
]);
});
it('should lint typescript files in a folder', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'typescript');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint', typescript: true });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(2);
const checkedFile = eslintResults.find(({ filename }) => filename.endsWith('.ts'));
expect(checkedFile).to.include({ filename: Path.join(path, 'fail.ts') });
expect(checkedFile.errors).to.include([
{ line: 6, severity: 'ERROR', message: 'indent - Expected indentation of 4 spaces but found 1 tab.' },
{ line: 6, severity: 'ERROR', message: 'semi - Missing semicolon.' }
]);
});
it('displays success message if no issues found', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'clean');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint' });
expect(result.lint).to.exist();
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
const checkedFile = eslintResults[0];
expect(checkedFile.errors.length).to.equal(0);
});
it('allows err to be shadowed', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'shadow');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint' });
expect(result.lint).to.exist();
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
const checkedFile = eslintResults[0];
expect(checkedFile.errors.length).to.equal(0);
});
it('doesn\'t allow res to be shadowed', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'shadow-res');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint' });
expect(result.lint).to.exist();
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
const checkedFile = eslintResults[0];
expect(checkedFile.errors.length).to.equal(1);
});
it('allows object rest/spread properties', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'object-rest-spread');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint' });
expect(result.lint).to.exist();
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
const checkedFile = eslintResults[0];
expect(checkedFile.errors.length).to.equal(0);
});
it('should pass options and not find any files', async () => {
const lintOptions = JSON.stringify({ extensions: ['.jsx'], ignores: ['**/*.js'] });
const path = Path.join(__dirname, 'lint', 'eslint', 'basic');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint', 'lint-options': lintOptions });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
expect(eslintResults[0].errors[0].message).to.contain('All files matched by \'.\' are ignored.');
});
it('should fix lint rules when --lint-fix used', async (flags) => {
let isFixed = false;
const originalWriteFileSync = Fs.writeFileSync;
flags.onCleanup = () => {
Fs.writeFileSync = originalWriteFileSync;
};
Fs.writeFileSync = (path, output) => {
expect(path).to.endWith(Path.join('test', 'lint', 'eslint', 'fix', 'success.js'));
expect(output).to.match(/\r?\n return value;\r?\n\};\r?\n/);
isFixed = true;
};
const path = Path.join(__dirname, 'lint', 'eslint', 'fix');
const result = await Linters.lint({ lintingPath: path, linter: 'eslint', 'lint-fix': true });
expect(result).to.include('lint');
const eslintResults = result.lint;
expect(eslintResults).to.have.length(1);
expect(eslintResults[0]).to.include({
totalErrors: 0,
totalWarnings: 1
});
expect(isFixed, 'Lint updates not written').to.be.true();
});
it('should error on malformed lint-options', async () => {
const path = Path.join(__dirname, 'lint', 'eslint', 'fix');
try {
await Linters.lint({ lintingPath: path, linter: 'eslint', 'lint-options': '}' });
}
catch (ex) {
expect(ex.message).to.equal('lint-options could not be parsed');
}
});
});
describe('Linters - custom', () => {
it('can run custom linter', async () => {
const path = Path.join(__dirname, 'lint');
const result = await Linters.lint({ lintingPath: path, linter: Path.join(__dirname, 'lint', 'custom') });
expect(result).to.include('lint');
const results = result.lint;
expect(results).to.have.length(1);
const checkedFile = results[0];
expect(checkedFile.filename).to.equal('custom');
expect(checkedFile.errors.length).to.equal(1);
});
});