-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.js
489 lines (447 loc) · 12.6 KB
/
test.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
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
'use strict';
const { join } = require('path');
//------------------------------------------------------------------------------
// Test File Definitions
//------------------------------------------------------------------------------
const singleComponent = `export const temp = () => {
return <Icon data-component="temp" name="metric" size={24} />;
};`;
const singleComponentError = `export const temp = () => {
return <Icon name="metric" size={24} />;
};`;
const defaultSingleComponent = `export default function temp () {
return <Icon data-component="temp" name="metric" size={24} />;
};`;
const defaultSingleComponentError = `export default function temp () {
return <Icon name="metric" size={24} />;
};`;
const genericTest = `
export const yAxis = (xScale, xTicks) => (
<BottomAxis<Date> data-component="yAxis" width={1} height={1} xScale={xScale} xTicks={xTicks}>
123
</BottomAxis>
); `;
const genericTestError = `
export const yAxis = (xScale, xTicks) => (
<BottomAxis<Date> width={1} height={1} xScale={xScale} xTicks={xTicks}>
123
</BottomAxis>
); `;
const renamingComponentDoesntError = `
export const myDiv = () => (
<div data-component="temp"/>
); `;
const nestedComponentsError = /* tsx */ `
export const FooChart: React.FC<FooChartProps> = props => {
const [spacing, setSpacing] = useState({ top: 8, right: 38, bottom: 50, left: 50 });
return (
<Chart height={400} spacing={spacing}>
{({ height, width, overlay }) => (
<InnerFooChart
width={width}
height={height}
overlay={overlay}
spacing={spacing}
setSpacing={setSpacing}
{...props}
/>
)}
</Chart>
);
};`;
const nestedComponents = /* tsx */ `
export const FooChart: React.FC<FooChartProps> = props => {
const [spacing, setSpacing] = useState({ top: 8, right: 38, bottom: 50, left: 50 });
return (
<Chart data-component="FooChart" height={400} spacing={spacing}>
{({ height, width, overlay }) => (
<InnerFooChart
width={width}
height={height}
overlay={overlay}
spacing={spacing}
setSpacing={setSpacing}
{...props}
/>
)}
</Chart>
);
};`;
const multipleComponentsErrors = `
const Component1 = () => <div />;
const Component2 = () => <span />;
export { Component1, Component2 }
`;
const multipleComponents = `
const Component1 = () => <div data-component="Component1" />;
const Component2 = () => <span data-component="Component2" />;
export { Component1, Component2 }
`;
const fragmentsWontUpdate = `export const Component = () =>
<>
<a/>
<a/>
<a/>
</>
;`;
const classComponent = `export class Car extends React.Component {
render() {
return <h2 data-component="Car">Hi, I am a Car!</h2>;
}
}`;
const classComponentError = `export class Car extends React.Component {
render() {
return <h2>Hi, I am a Car!</h2>;
}
}`;
const classComponentNestedError = `export class Car extends React.Component {
render() {
const Door = () => (
<h1>I am a door!</h1>
);
return (
<div>
<Door />
<h2>Hi, I am a Car!</h2>
</div>
);
}
}`;
const classComponentNested = `export class Car extends React.Component {
render() {
const Door = () => (
<h1>I am a door!</h1>
);
return (
<div data-component="Car">
<Door />
<h2>Hi, I am a Car!</h2>
</div>
);
}
}`;
const reactForwardRef = /* tsx */ `
export const InternalLink = React.forwardRef<HTMLAnchorElement, InternalLinkProps>(
({ variant, ...props }, ref) => (
<Link data-component="InternalLink"
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
),
);`;
const reactForwardRefError = /* tsx */ `
export const InternalLink = React.forwardRef<HTMLAnchorElement, InternalLinkProps>(
({ variant, ...props }, ref) => (
<Link
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
),
);`;
const forwardRef = /* tsx */ `
export const InternalLink = forwardRef<HTMLAnchorElement, InternalLinkProps>(
({ variant, ...props }, ref) => (
<Link data-component="InternalLink"
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
),
);`;
const forwardRefError = /* tsx */ `
export const InternalLink = forwardRef<HTMLAnchorElement, InternalLinkProps>(
({ variant, ...props }, ref) => (
<Link
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
),
);`;
const defaultReactForwardRef = /* tsx */ `
export default React.forwardRef<HTMLAnchorElement, InternalLinkProps>(
function InternalLink({ variant, ...props }, ref) {
return (
<Link data-component="InternalLink"
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
);
}
);`;
const defaultReactForwardRefError = /* tsx */ `
export default React.forwardRef<HTMLAnchorElement, InternalLinkProps>(
function InternalLink({ variant, ...props }, ref) {
return (
<Link
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
);
}
);`;
const defaultForwardRef = /* tsx */ `
export default forwardRef<HTMLAnchorElement, InternalLinkProps>(
function InternalLink({ variant, ...props }, ref) {
return (
<Link data-component="InternalLink"
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
);
}
);`;
const defaultForwardRefError = /* tsx */ `
export default forwardRef<HTMLAnchorElement, InternalLinkProps>(
function InternalLink({ variant, ...props }, ref) {
return (
<Link
ref={ref}
className={classNames(css.link, { [css.inverse]: variant === 'inverse' })}
{...props}
>
{props.children}
</Link>
);
}
);`;
const provider = /* tsx */ `
export const Test = () => <TestProvider />;
`;
const providerWithDot = /* tsx */ `
export const Test = () => <Test.Provider />;
`;
const ternary = /* tsx */ `
export const TernaryComponent = () => {
const active = useIsActive();
return active ? <ActiveComponent /> : null;
};
`;
const exportedError = /* tsx */ `
const NotExported = () => <Foo />
export const Exported = () => <Foo />
export default DefaultExported = () => <Foo />
const ExportedAtEnd = () => <Foo />
const RenamedExport = () => <Foo />
export { ExportedAtEnd, RenamedExport as ThisIsRenamed }
`;
const exported = /* tsx */ `
const NotExported = () => <Foo />
export const Exported = () => <Foo data-component="Exported" />
export default DefaultExported = () => <Foo data-component="DefaultExported" />
const ExportedAtEnd = () => <Foo data-component="ExportedAtEnd" />
const RenamedExport = () => <Foo data-component="RenamedExport" />
export { ExportedAtEnd, RenamedExport as ThisIsRenamed }
`;
// TODO: Implement fix for if block conditionals
// const ifBlock = /* tsx */ `
// export const IfBlockComponent = () => {
// const active = useIsActive();
// if (active) {
// return <ActiveComponent />;
// }
// return <div />;
// };
// `;
const tests = {
'data-component': {
// Require the actual rule definition
rule: require('./index').rules['data-component'],
// Define eslintrc for the test
ruleConfig: {
env: {
es6: true,
},
parser: join(__dirname, 'node_modules/@typescript-eslint/parser'),
parserOptions: {
ecmaVersion: 2019,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
rules: {
'data-component': 'error',
},
},
// Define the test cases
testCases: {
valid: [
{
code: singleComponent,
},
{
code: defaultSingleComponent,
},
{
code: genericTest,
},
{
code: renamingComponentDoesntError,
},
{
code: nestedComponents,
},
{
code: multipleComponents,
},
{
// Multiple return paths should not trigger the eslint warning
code: fragmentsWontUpdate,
},
{
code: reactForwardRef,
},
{
code: forwardRef,
},
{
code: defaultReactForwardRef,
},
{
code: defaultForwardRef,
},
{
code: provider,
},
{
code: providerWithDot,
},
{
code: ternary,
},
{
code: exported,
},
// {
// code: ifBlock,
// },
],
invalid: [
{
code: singleComponentError,
output: singleComponent,
errors: [
'temp is missing the data-component attribute for the top-level element.',
],
},
{
code: defaultSingleComponentError,
output: defaultSingleComponent,
errors: [
'temp is missing the data-component attribute for the top-level element.',
],
},
{
code: classComponentError,
output: classComponent,
errors: [
'Car is missing the data-component attribute for the top-level element.',
],
},
{
code: classComponentNestedError,
output: classComponentNested,
errors: [
'Car is missing the data-component attribute for the top-level element.',
],
},
{
code: genericTestError,
output: genericTest,
errors: [
'yAxis is missing the data-component attribute for the top-level element.',
],
},
{
code: nestedComponentsError,
output: nestedComponents,
errors: [
'FooChart is missing the data-component attribute for the top-level element.',
],
},
{
// Multiple components with errors
code: multipleComponentsErrors,
output: multipleComponents,
errors: [
'Component1 is missing the data-component attribute for the top-level element.',
'Component2 is missing the data-component attribute for the top-level element.',
],
},
{
code: reactForwardRefError,
output: reactForwardRef,
errors: [
'InternalLink is missing the data-component attribute for the top-level element.',
],
},
{
code: forwardRefError,
output: forwardRef,
errors: [
'InternalLink is missing the data-component attribute for the top-level element.',
],
},
{
code: defaultReactForwardRefError,
output: defaultReactForwardRef,
errors: [
'InternalLink is missing the data-component attribute for the top-level element.',
],
},
{
code: defaultForwardRefError,
output: defaultForwardRef,
errors: [
'InternalLink is missing the data-component attribute for the top-level element.',
],
},
{
code: exportedError,
output: exported,
errors: [
'Exported is missing the data-component attribute for the top-level element.',
'DefaultExported is missing the data-component attribute for the top-level element.',
'ExportedAtEnd is missing the data-component attribute for the top-level element.',
'RenamedExport is missing the data-component attribute for the top-level element.',
],
},
],
},
},
};
//------------------------------------------------------------------------------
// Test Runner Definition
//------------------------------------------------------------------------------
const { RuleTester } = require('eslint');
RuleTester.it = function (text, method) {
test(text, method);
};
RuleTester.describe = function (text, method) {
describe(text, method);
};
Object.keys(tests).forEach((key) => {
const test = tests[key];
const ruleTester = new RuleTester(test.ruleConfig);
ruleTester.run(key, test.rule, test.testCases);
});