-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathno-unresolved.js
402 lines (355 loc) · 12.1 KB
/
no-unresolved.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
import * as path from 'path'
import { test, SYNTAX_CASES } from '../utils'
import { CASE_SENSITIVE_FS } from 'eslint-module-utils/resolve'
import { RuleTester } from 'eslint'
var ruleTester = new RuleTester()
, rule = require('rules/no-unresolved')
function runResolverTests(resolver) {
// redefine 'test' to set a resolver
// thus 'rest'. needed something 4-chars-long for formatting simplicity
function rest(specs) {
specs.settings = Object.assign({},
specs.settings,
{ 'import/resolver': resolver }
)
return test(specs)
}
ruleTester.run(`no-unresolved (${resolver})`, rule, {
valid: [
test({ code: 'import "./malformed.js"' }),
rest({ code: 'import foo from "./bar";' }),
rest({ code: "import bar from './bar.js';" }),
rest({ code: "import {someThing} from './test-module';" }),
rest({ code: "import fs from 'fs';" }),
rest({ code: 'import * as foo from "a"' }),
rest({ code: 'export { foo } from "./bar"' }),
rest({ code: 'export * from "./bar"' }),
rest({ code: 'export { foo }' }),
// stage 1 proposal for export symmetry,
rest({ code: 'export * as bar from "./bar"'
, parser: 'babel-eslint' }),
rest({ code: 'export bar from "./bar"'
, parser: 'babel-eslint' }),
rest({ code: 'import foo from "./jsx/MyUnCoolComponent.jsx"' }),
// commonjs setting
rest({ code: 'var foo = require("./bar")'
, options: [{ commonjs: true }]}),
rest({ code: 'require("./bar")'
, options: [{ commonjs: true }]}),
rest({ code: 'require("./does-not-exist")'
, options: [{ commonjs: false }]}),
rest({ code: 'require("./does-not-exist")' }),
// amd setting
rest({ code: 'require(["./bar"], function (bar) {})'
, options: [{ amd: true }]}),
rest({ code: 'define(["./bar"], function (bar) {})'
, options: [{ amd: true }]}),
rest({ code: 'require(["./does-not-exist"], function (bar) {})'
, options: [{ amd: false }]}),
// magic modules: http://git.io/vByan
rest({ code: 'define(["require", "exports", "module"], function (r, e, m) { })'
, options: [{ amd: true }]}),
// don't validate without callback param
rest({ code: 'require(["./does-not-exist"])'
, options: [{ amd: true }]}),
rest({ code: 'define(["./does-not-exist"], function (bar) {})' }),
// requireResolve setting
rest({ code: 'var foo = require.resolve("./bar")'
, options: [{ requireResolve: true }]}),
rest({ code: 'require.resolve("./bar")'
, options: [{ requireResolve: true }]}),
rest({ code: 'require.resolve("./does-not-exist")'
, options: [{ requireResolve: false }]}),
rest({ code: 'require.resolve("./does-not-exist")' }),
// stress tests
rest({ code: 'require("./does-not-exist", "another arg")'
, options: [{ commonjs: true, amd: true }]}),
rest({ code: 'proxyquire("./does-not-exist")'
, options: [{ commonjs: true, amd: true }]}),
rest({ code: '(function() {})("./does-not-exist")'
, options: [{ commonjs: true, amd: true }]}),
rest({ code: 'define([0, foo], function (bar) {})'
, options: [{ amd: true }]}),
rest({ code: 'require(0)'
, options: [{ commonjs: true }]}),
rest({ code: 'require(foo)'
, options: [{ commonjs: true }]}),
],
invalid: [
rest({
code: 'import reallyfake from "./reallyfake/module"',
settings: { 'import/ignore': ['^\\./fake/'] },
errors: [{ message: 'Unable to resolve path to module ' +
'\'./reallyfake/module\'.' }],
}),
rest({
code: "import bar from './baz';",
errors: [{ message: "Unable to resolve path to module './baz'."
, type: 'Literal' }],
}),
rest({ code: "import bar from './baz';"
, errors: [{ message: "Unable to resolve path to module './baz'."
, type: 'Literal',
}] }),
rest({
code: "import bar from './empty-folder';",
errors: [{ message: "Unable to resolve path to module './empty-folder'."
, type: 'Literal',
}]}),
// sanity check that this module is _not_ found without proper settings
rest({
code: "import { DEEP } from 'in-alternate-root';",
errors: [{ message: 'Unable to resolve path to ' +
"module 'in-alternate-root'."
, type: 'Literal',
}]}),
rest({ code: 'export { foo } from "./does-not-exist"'
, errors: ["Unable to resolve path to module './does-not-exist'."] }),
rest({
code: 'export * from "./does-not-exist"',
errors: ["Unable to resolve path to module './does-not-exist'."],
}),
// export symmetry proposal
rest({ code: 'export * as bar from "./does-not-exist"'
, parser: 'babel-eslint'
, errors: ["Unable to resolve path to module './does-not-exist'."],
}),
rest({ code: 'export bar from "./does-not-exist"'
, parser: 'babel-eslint'
, errors: ["Unable to resolve path to module './does-not-exist'."],
}),
// commonjs setting
rest({
code: 'var bar = require("./baz")',
options: [{ commonjs: true }],
errors: [{
message: "Unable to resolve path to module './baz'.",
type: 'Literal',
}],
}),
rest({
code: 'require("./baz")',
options: [{ commonjs: true }],
errors: [{
message: "Unable to resolve path to module './baz'.",
type: 'Literal',
}],
}),
// amd
rest({
code: 'require(["./baz"], function (bar) {})',
options: [{ amd: true }],
errors: [{
message: "Unable to resolve path to module './baz'.",
type: 'Literal',
}],
}),
rest({
code: 'define(["./baz"], function (bar) {})',
options: [{ amd: true }],
errors: [{
message: "Unable to resolve path to module './baz'.",
type: 'Literal',
}],
}),
rest({
code: 'define(["./baz", "./bar", "./does-not-exist"], function (bar) {})',
options: [{ amd: true }],
errors: [{
message: "Unable to resolve path to module './baz'.",
type: 'Literal',
},{
message: "Unable to resolve path to module './does-not-exist'.",
type: 'Literal',
}],
}),
// requireResolve setting
rest({
code: 'var bar = require.resolve("./baz")',
options: [{ requireResolve: true }],
errors: [{
message: "Unable to resolve path to module './baz'.",
type: 'Literal',
}],
}),
rest({
code: 'require.resolve("./baz")',
options: [{ requireResolve: true }],
errors: [{
message: "Unable to resolve path to module './baz'.",
type: 'Literal',
}],
}),
],
})
ruleTester.run(`issue #333 (${resolver})`, rule, {
valid: [
rest({ code: 'import foo from "./bar.json"' }),
rest({ code: 'import foo from "./bar"' }),
rest({
code: 'import foo from "./bar.json"',
settings: { 'import/extensions': ['.js'] },
}),
rest({
code: 'import foo from "./bar"',
settings: { 'import/extensions': ['.js'] },
}),
],
invalid: [
rest({
code: 'import bar from "./foo.json"',
errors: ["Unable to resolve path to module './foo.json'."],
}),
],
})
if (!CASE_SENSITIVE_FS) {
ruleTester.run('case sensitivity', rule, {
valid: [
rest({ // test with explicit flag
code: 'import foo from "./jsx/MyUncoolComponent.jsx"',
options: [{ caseSensitive: false }],
}),
],
invalid: [
rest({ // test default
code: 'import foo from "./jsx/MyUncoolComponent.jsx"',
errors: [`Casing of ./jsx/MyUncoolComponent.jsx does not match the underlying filesystem.`],
}),
rest({ // test with explicit flag
code: 'import foo from "./jsx/MyUncoolComponent.jsx"',
options: [{ caseSensitive: true }],
errors: [`Casing of ./jsx/MyUncoolComponent.jsx does not match the underlying filesystem.`],
}),
],
})
}
}
['node', 'webpack'].forEach(runResolverTests)
ruleTester.run('no-unresolved (import/resolve legacy)', rule, {
valid: [
test({
code: "import { DEEP } from 'in-alternate-root';",
settings: {
'import/resolve': {
'paths': [path.join( process.cwd()
, 'tests', 'files', 'alternate-root')],
},
},
}),
test({
code: "import { DEEP } from 'in-alternate-root'; " +
"import { bar } from 'src-bar';",
settings: {'import/resolve': { 'paths': [
path.join('tests', 'files', 'src-root'),
path.join('tests', 'files', 'alternate-root'),
]}}}),
test({
code: 'import * as foo from "jsx-module/foo"',
settings: { 'import/resolve': { 'extensions': ['.jsx'] } },
}),
],
invalid: [
test({
code: 'import * as foo from "jsx-module/foo"',
errors: [ "Unable to resolve path to module 'jsx-module/foo'." ],
}),
],
})
ruleTester.run('no-unresolved (webpack-specific)', rule, {
valid: [
test({
// default webpack config in files/webpack.config.js knows about jsx
code: 'import * as foo from "jsx-module/foo"',
settings: { 'import/resolver': 'webpack' },
}),
test({
// should ignore loaders
code: 'import * as foo from "some-loader?with=args!jsx-module/foo"',
settings: { 'import/resolver': 'webpack' },
}),
],
invalid: [
test({
// default webpack config in files/webpack.config.js knows about jsx
code: 'import * as foo from "jsx-module/foo"',
settings: {
'import/resolver': { 'webpack': { 'config': 'webpack.empty.config.js' } },
},
errors: [ "Unable to resolve path to module 'jsx-module/foo'." ],
}),
],
})
ruleTester.run('no-unresolved ignore list', rule, {
valid: [
test({
code: 'import "./malformed.js"',
options: [{ ignore: ['\.png$', '\.gif$']}],
}),
test({
code: 'import "./test.giffy"',
options: [{ ignore: ['\.png$', '\.gif$']}],
}),
test({
code: 'import "./test.gif"',
options: [{ ignore: ['\.png$', '\.gif$']}],
}),
test({
code: 'import "./test.png"',
options: [{ ignore: ['\.png$', '\.gif$']}],
}),
],
invalid:[
test({
code: 'import "./test.gif"',
options: [{ ignore: ['\.png$']}],
errors: [ "Unable to resolve path to module './test.gif'." ],
}),
test({
code: 'import "./test.png"',
options: [{ ignore: ['\.gif$']}],
errors: [ "Unable to resolve path to module './test.png'." ],
}),
],
})
ruleTester.run('no-unresolved unknown resolver', rule, {
valid: [],
invalid:[
// logs resolver load error
test({
code: 'import "./malformed.js"',
settings: { 'import/resolver': 'foo' },
errors: [
`Resolve error: unable to load resolver "foo".`,
`Unable to resolve path to module './malformed.js'.`,
],
}),
// only logs resolver message once
test({
code: 'import "./malformed.js"; import "./fake.js"',
settings: { 'import/resolver': 'foo' },
errors: [
`Resolve error: unable to load resolver "foo".`,
`Unable to resolve path to module './malformed.js'.`,
`Unable to resolve path to module './fake.js'.`,
],
}),
],
})
ruleTester.run('no-unresolved electron', rule, {
valid: [
test({
code: 'import "electron"',
settings: { 'import/core-modules': ['electron'] },
}),
],
invalid:[
test({
code: 'import "electron"',
errors: [`Unable to resolve path to module 'electron'.`],
}),
],
})
ruleTester.run('no-unresolved syntax verification', rule, {
valid: SYNTAX_CASES,
invalid:[],
})