forked from e18e/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprefer-array-to-sorted.test.ts
More file actions
376 lines (360 loc) · 9.47 KB
/
Copy pathprefer-array-to-sorted.test.ts
File metadata and controls
376 lines (360 loc) · 9.47 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
import {RuleTester} from 'eslint';
import {RuleTester as TSRuleTester} from '@typescript-eslint/rule-tester';
import {preferArrayToSorted} from './prefer-array-to-sorted.js';
import * as path from 'node:path';
import {fileURLToPath} from 'node:url';
const rootDir = path.resolve(
path.dirname(fileURLToPath(import.meta.url)),
'../..'
);
const typedRuleTester = new TSRuleTester({
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: ['*.ts'],
defaultProject: './tsconfig.json'
},
tsconfigRootDir: rootDir
}
}
});
const ruleTester = new RuleTester({
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module'
}
});
const tsSyntaxRuleTester = new TSRuleTester({
languageOptions: {
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module'
}
}
});
ruleTester.run(
'prefer-array-to-sorted (untyped)',
preferArrayToSorted as never,
{
valid: [
'const sorted = arr.sort();',
'arr.sort((a, b) => a - b);',
// Other array methods
'const mapped = arr.map(x => x * 2);',
'const arr = [1, 2, 3];',
// slice with different arguments
'arr.slice(1).sort();',
'arr.slice(0, 5).sort();',
'const sorted = [...new Set([1, 2, 3])].sort();',
'const sorted = [...new Set(arr)].sort();',
'const sorted = [...new Map()].sort();',
'const foundVersions = new Set(); const sorted = [...foundVersions].sort();',
'let foundVersions = new Set(); const sorted = [...foundVersions].sort();',
'const entries = new Map(); const sorted = [...entries].sort();',
'const sorted = [...items.entries()].sort();',
'const sorted = [...items.keys()].sort();',
'const sorted = [...items.values()].sort();'
],
invalid: [
// concat().sort()
{
code: 'const sorted = arr.concat().sort((a, b) => a - b);',
output: 'const sorted = arr.toSorted((a, b) => a - b);',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'arr'},
line: 1,
column: 16
}
]
},
{
code: 'const sorted = arr.concat().sort();',
output: 'const sorted = arr.toSorted();',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'arr'},
line: 1,
column: 16
}
]
},
// slice().sort()
{
code: 'const sorted = arr.slice().sort();',
output: 'const sorted = arr.toSorted();',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'arr'},
line: 1,
column: 16
}
]
},
{
code: 'const sorted = myArray.slice().sort((a, b) => b - a);',
output: 'const sorted = myArray.toSorted((a, b) => b - a);',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'myArray'},
line: 1,
column: 16
}
]
},
// slice(0).sort()
{
code: 'const sorted = arr.slice(0).sort((a, b) => b - a);',
output: 'const sorted = arr.toSorted((a, b) => b - a);',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'arr'},
line: 1,
column: 16
}
]
},
{
code: 'const sorted = arr.slice(0).sort();',
output: 'const sorted = arr.toSorted();',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'arr'},
line: 1,
column: 16
}
]
},
// [...arr].sort()
{
code: 'const sorted = [...arr].sort();',
output: 'const sorted = arr.toSorted();',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'arr'},
line: 1,
column: 16
}
]
},
{
code: 'const sorted = [...myArray].sort((a, b) => a - b);',
output: 'const sorted = myArray.toSorted((a, b) => a - b);',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'myArray'},
line: 1,
column: 16
}
]
},
// Complex expressions
{
code: 'const sorted = obj.data.items.slice().sort();',
output: 'const sorted = obj.data.items.toSorted();',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'obj.data.items'},
line: 1,
column: 16
}
]
},
{
code: 'function foo() { return [...this.items].sort((a, b) => a.id - b.id); }',
output:
'function foo() { return this.items.toSorted((a, b) => a.id - b.id); }',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'this.items'},
line: 1,
column: 25
}
]
},
{
code: 'const sorted = [...Object.entries(counts)].sort(([a], [b]) => a.localeCompare(b));',
output:
'const sorted = Object.entries(counts).toSorted(([a], [b]) => a.localeCompare(b));',
errors: [{messageId: 'preferToSorted'}]
},
// Multiple arguments (edge case - sort() typically takes 0 or 1 arg)
{
code: 'const sorted = arr.slice().sort(arg1, arg2);',
output: 'const sorted = arr.toSorted(arg1, arg2);',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'arr'},
line: 1,
column: 16
}
]
},
// Expressions needing parentheses for property access
{
code: 'const sorted = [...a ?? b].sort(fn);',
output: 'const sorted = (a ?? b).toSorted(fn);',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'a ?? b'},
line: 1,
column: 16
}
]
},
{
code: 'const sorted = [...a || b].sort();',
output: 'const sorted = (a || b).toSorted();',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'a || b'},
line: 1,
column: 16
}
]
},
// Optional chaining preservation
{
code: 'const sorted = obj.arr?.slice().sort(fn);',
output: 'const sorted = obj.arr?.toSorted(fn);',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'obj.arr'},
line: 1,
column: 16
}
]
},
{
code: 'const sorted = obj.arr?.concat().sort();',
output: 'const sorted = obj.arr?.toSorted();',
errors: [
{
messageId: 'preferToSorted',
data: {array: 'obj.arr'},
line: 1,
column: 16
}
]
}
]
}
);
tsSyntaxRuleTester.run(
'prefer-array-to-sorted (typescript syntax)',
preferArrayToSorted,
{
valid: [
'function sortItems<T>(items: Iterable<T>) { return [...items].sort(); }',
'function sortItems(items: Map<string, number>) { return [...items.entries()].sort(); }',
'const items: Set<string> = new Set(); const sorted = [...items].sort();',
'let items: Iterable<string>; const sorted = [...items].sort();'
],
invalid: [
{
code: 'const items: string[] = []; const sorted = [...items].sort();',
output: 'const items: string[] = []; const sorted = items.toSorted();',
errors: [{messageId: 'preferToSorted'}]
}
]
}
);
typedRuleTester.run('prefer-array-to-sorted (typed)', preferArrayToSorted, {
valid: [
// Set spread - Set doesn't have toSorted()
{
code: `
declare const mySet: Set<number>;
const sorted = [...mySet].sort();
`
},
// Map spread - Map doesn't have toSorted()
{
code: `
declare const myMap: Map<string, number>;
const sorted = [...myMap].sort();
`
},
// Iterable spread - generic iterables don't have toSorted()
{
code: `
declare const iter: Iterable<number>;
const sorted = [...iter].sort();
`
}
],
invalid: [
// Typed array variable - spread
{
code: `
const arr: number[] = [1, 2, 3];
const sorted = [...arr].sort();
`,
output: `
const arr: number[] = [1, 2, 3];
const sorted = arr.toSorted();
`,
errors: [
{
messageId: 'preferToSorted',
line: 3,
column: 24
}
]
},
// Tuple type - concat
{
code: `
const tuple: [number, string] = [1, 'a'];
const sorted = tuple.concat().sort();
`,
output: `
const tuple: [number, string] = [1, 'a'];
const sorted = tuple.toSorted();
`,
errors: [
{
messageId: 'preferToSorted',
line: 3,
column: 24
}
]
},
// Function returning array
{
code: `
function getItems(): string[] {
return ['a', 'b', 'c'];
}
const sorted = [...getItems()].sort();
`,
output: `
function getItems(): string[] {
return ['a', 'b', 'c'];
}
const sorted = getItems().toSorted();
`,
errors: [
{
messageId: 'preferToSorted',
line: 5,
column: 24
}
]
}
]
});