-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathparser-selection.test.ts
More file actions
527 lines (455 loc) · 23.1 KB
/
Copy pathparser-selection.test.ts
File metadata and controls
527 lines (455 loc) · 23.1 KB
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
import {
ConfigObject,
Engine,
EngineRunResults,
RunOptions,
Workspace
} from "@salesforce/code-analyzer-engine-api";
import * as path from "node:path";
import {ESLintEnginePlugin} from "../src";
import {ESLintEngine} from "../src/engine";
import {createRunOptions} from "./test-helpers";
jest.setTimeout(60_000);
const testDataFolder: string = path.join(__dirname, 'test-data');
const workspaceWithLwcDecorators: string = path.join(testDataFolder, 'workspaceWithLwcDecorators');
const workspaceWithJsxOnly: string = path.join(testDataFolder, 'workspaceWithJsxOnly');
const workspaceWithMixedJsJsx: string = path.join(testDataFolder, 'workspaceWithMixedJsJsx');
async function createEngineFromPlugin(configObject: ConfigObject): Promise<Engine> {
const plugin: ESLintEnginePlugin = new ESLintEnginePlugin();
const engine: ESLintEngine = await plugin.createEngine('eslint', configObject);
engine._runESLintWorkerTask._runInCurrentThreadInsteadofNewThread = true;
return engine;
}
describe('Parser Selection for Decorator Support', () => {
describe('Scenario 1: LWC files with decorators and disable_lwc_base_config: true', () => {
it('should successfully parse .js files with LWC decorators using Babel parser', async () => {
// Setup: Config with disable_lwc_base_config: true and .js extension
const configWithLwcDisabled: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.js'],
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configWithLwcDisabled);
const workspace: Workspace = new Workspace('test', [workspaceWithLwcDecorators],
[path.join(workspaceWithLwcDecorators, 'lwcComponent.js')]);
// Act: Run the engine
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-unused-vars'], runOptions);
// Assert: Should parse without errors (no "Unexpected character '@'" error)
expect(results.violations).toBeDefined();
// If there are violations, they should be legitimate rule violations, not parsing errors
if (results.violations.length > 0) {
results.violations.forEach(violation => {
expect(violation.message).not.toContain('Unexpected character');
expect(violation.message).not.toContain("Parsing error");
});
}
});
it('should handle @api, @track, and @wire decorators', async () => {
const configWithLwcDisabled: ConfigObject = {
disable_lwc_base_config: true,
disable_react_base_config: true,
file_extensions: {
javascript: ['.js'],
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configWithLwcDisabled);
const workspace: Workspace = new Workspace('test', [workspaceWithLwcDecorators],
[path.join(workspaceWithLwcDecorators, 'lwcComponent.js')]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Should not throw parsing errors
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
});
describe('Scenario 2: React JSX files with only .jsx extension (Espree parser)', () => {
it('should use Espree parser for .jsx files when only .jsx is configured', async () => {
// Setup: Config with only .jsx extension (should trigger Espree)
const configWithJsxOnly: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.jsx'], // Only .jsx, no .js
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configWithJsxOnly);
const workspace: Workspace = new Workspace('test', [workspaceWithJsxOnly],
[path.join(workspaceWithJsxOnly, 'ReactComponent.jsx')]);
// Act
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-unused-vars'], runOptions);
// Assert: Should parse JSX successfully with Espree
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error')
);
expect(parsingErrors.length).toBe(0);
});
});
describe('Scenario 3: Mixed .js and .jsx files (Babel parser)', () => {
it('should use Babel parser when both .js and .jsx are configured', async () => {
// Setup: Config with both .js and .jsx (should trigger Babel)
const configWithMixed: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.js', '.jsx'], // Both extensions
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configWithMixed);
const workspace: Workspace = new Workspace('test', [workspaceWithMixedJsJsx],
[
path.join(workspaceWithMixedJsJsx, 'lwcFile.js'),
path.join(workspaceWithMixedJsJsx, 'reactFile.jsx')
]);
// Act
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Assert: Should parse both LWC decorators and React JSX successfully
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
});
describe('Scenario 4: Default config with .js extension', () => {
it('should use Babel parser with default config (includes .js)', async () => {
// Setup: Use default config which includes .js
const defaultConfig: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.js', '.cjs', '.mjs', '.jsx'], // Default includes .js
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(defaultConfig);
const workspace: Workspace = new Workspace('test', [workspaceWithLwcDecorators],
[path.join(workspaceWithLwcDecorators, 'lwcComponent.js')]);
// Act
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Assert: Should parse decorators successfully with default config
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
});
describe('Scenario 5: Other JavaScript extensions (.mjs, .cjs)', () => {
it('should handle configs with only .mjs and .cjs extensions', async () => {
// Setup: Config with only .mjs and .cjs (no .js)
const configWithModuleExtensions: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.mjs', '.cjs'], // No .js
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
// This is more of a configuration validation - if .mjs/.cjs files existed,
// they would use Espree parser (which doesn't support decorators)
// Just verify the config is valid
const fileExtensions = configWithModuleExtensions.file_extensions as { javascript: string[] };
expect(fileExtensions.javascript).not.toContain('.js');
expect(fileExtensions.javascript).toContain('.mjs');
expect(fileExtensions.javascript).toContain('.cjs');
});
});
describe('Scenario 6: Both LWC and React disabled', () => {
it('should still parse .js files with decorators when both base configs disabled', async () => {
const configWithBothDisabled: ConfigObject = {
disable_lwc_base_config: true,
disable_react_base_config: true,
file_extensions: {
javascript: ['.js'], // .js triggers Babel
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configWithBothDisabled);
const workspace: Workspace = new Workspace('test', [workspaceWithLwcDecorators],
[path.join(workspaceWithLwcDecorators, 'lwcComponent.js')]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Assert: Should still parse decorators (smart selection based on .js extension)
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
});
describe('Edge Case 1: TypeScript files with decorators', () => {
const workspaceWithTypeScriptDecorators: string = path.join(testDataFolder, 'workspaceWithTypeScriptDecorators');
it('should parse .ts files with decorators using TypeScript parser', async () => {
const configWithTs: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.js'],
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configWithTs);
const workspace: Workspace = new Workspace('test', [workspaceWithTypeScriptDecorators],
[path.join(workspaceWithTypeScriptDecorators, 'tsComponent.ts')]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Assert: TypeScript parser should handle decorators
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
it('should parse .tsx files with decorators using TypeScript parser', async () => {
const configWithTsx: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.js'],
typescript: ['.ts', '.tsx'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configWithTsx);
const workspace: Workspace = new Workspace('test', [workspaceWithTypeScriptDecorators],
[path.join(workspaceWithTypeScriptDecorators, 'tsxComponent.tsx')]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Assert: TypeScript parser should handle decorators in JSX
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
});
describe('Edge Case 2: Empty file extensions', () => {
it('should handle empty javascript extensions gracefully', async () => {
const configWithEmptyJs: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: [], // Empty array
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
// Should not throw when creating engine
const engine: Engine = await createEngineFromPlugin(configWithEmptyJs);
expect(engine).toBeDefined();
expect(engine.getName()).toBe('eslint');
});
});
describe('Edge Case 3: Error messages when Espree is forced on decorator files', () => {
it('should give clear error message when decorators fail with Espree parser', async () => {
// Force Espree by using only .jsx (no .js)
const configForcingEspree: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.jsx'], // Only .jsx forces Espree
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(configForcingEspree);
// Try to scan a .js file with decorators (will fail because only .jsx is configured)
// This simulates user misconfiguration
const workspace: Workspace = new Workspace('test', [workspaceWithLwcDecorators],
[path.join(workspaceWithLwcDecorators, 'lwcComponent.js')]);
const runOptions: RunOptions = createRunOptions(workspace);
// The file won't be scanned because .js is not in the configured extensions
// This is expected behavior - not an error, just filtered out
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Should have no violations because .js files are filtered out
expect(results.violations).toBeDefined();
expect(results.violations.length).toBe(0);
});
});
describe('Edge Case 4: Multiple files with mixed success', () => {
const workspaceWithMultipleFiles: string = path.join(testDataFolder, 'workspaceWithMultipleFiles');
it('should handle multiple files where some have violations', async () => {
const config: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.js'],
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(config);
const workspace: Workspace = new Workspace('test', [workspaceWithMultipleFiles],
[
path.join(workspaceWithMultipleFiles, 'validLwc.js'),
path.join(workspaceWithMultipleFiles, 'withViolations.js')
]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger', 'no-var'], runOptions);
// Assert: Should parse all files, find legitimate violations in one file
expect(results.violations).toBeDefined();
// No parsing errors - all decorators parsed successfully
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
// Should have violations from withViolations.js
const debuggerViolations = results.violations.filter(v =>
v.ruleName === 'no-debugger'
);
expect(debuggerViolations.length).toBeGreaterThan(0);
const noVarViolations = results.violations.filter(v =>
v.ruleName === 'no-var'
);
expect(noVarViolations.length).toBeGreaterThan(0);
});
it('should successfully parse all files even when decorators are present', async () => {
const config: ConfigObject = {
disable_lwc_base_config: true,
disable_react_base_config: true,
file_extensions: {
javascript: ['.js'],
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(config);
const workspace: Workspace = new Workspace('test', [workspaceWithMultipleFiles],
[
path.join(workspaceWithMultipleFiles, 'validLwc.js'),
path.join(workspaceWithMultipleFiles, 'withViolations.js')
]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-unused-vars'], runOptions);
// All files should parse without decorator errors
expect(results.violations).toBeDefined();
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
});
describe('Edge Case 5: Verify Babel vs Espree selection logic', () => {
it('should use Babel when .js is first in array', async () => {
const config: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.js', '.jsx', '.mjs'], // .js first
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(config);
const workspace: Workspace = new Workspace('test', [workspaceWithLwcDecorators],
[path.join(workspaceWithLwcDecorators, 'lwcComponent.js')]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Should use Babel (decorators work)
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
it('should use Babel when .js is last in array', async () => {
const config: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.jsx', '.mjs', '.js'], // .js last
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(config);
const workspace: Workspace = new Workspace('test', [workspaceWithLwcDecorators],
[path.join(workspaceWithLwcDecorators, 'lwcComponent.js')]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Should still use Babel (includes() checks entire array)
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error') || v.message.includes('Unexpected character')
);
expect(parsingErrors.length).toBe(0);
});
it('should use Espree when .js is NOT in array', async () => {
const config: ConfigObject = {
disable_lwc_base_config: true,
file_extensions: {
javascript: ['.jsx', '.mjs', '.cjs'], // No .js
typescript: ['.ts'],
html: ['.html'],
css: ['.css'],
other: []
},
config_root: __dirname
};
const engine: Engine = await createEngineFromPlugin(config);
// Scan a .jsx file (should use Espree successfully)
const workspace: Workspace = new Workspace('test', [workspaceWithJsxOnly],
[path.join(workspaceWithJsxOnly, 'ReactComponent.jsx')]);
const runOptions: RunOptions = createRunOptions(workspace);
const results: EngineRunResults = await engine.runRules(['no-debugger'], runOptions);
// Espree should handle .jsx fine (no decorators in React files)
const parsingErrors = results.violations.filter(v =>
v.message.includes('Parsing error')
);
expect(parsingErrors.length).toBe(0);
});
});
});