This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathmisc-tests.mjs
624 lines (550 loc) · 18.3 KB
/
misc-tests.mjs
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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
import SemVer from "semver"
import assert from "assert"
import fs from "fs-extra"
import path from "path"
import require from "./require.js"
const isWin = process.platform === "win32"
const __filename = import.meta.url.slice(isWin ? 8 : 7)
const __dirname = path.dirname(__filename)
const pkgJSON = JSON.parse(fs.readFileSync("../package.json", "utf8"))
const pkgPath = path.resolve(__dirname, "../index.js")
const skipOutsideDot = SemVer.satisfies(process.version, ">=9")
const abcId = "./fixture/export/abc.mjs"
const abcNs = {
a: "a",
b: "b",
c: "c",
default: "default"
}
function checkError(error, code) {
const message = error.message
checkErrorProps(error, code, message)
checkErrorCustomProps(error, code, message)
checkErrorProps(error, code, message)
}
function checkErrorCustomProps(error, code, message) {
error.code = "ERR_CUSTOM"
assert.strictEqual(error.code, "ERR_CUSTOM")
assert.strictEqual(error.toString(), "Error [" + code + "]: " + message)
assert.deepStrictEqual(Object.keys(error), ["code"])
error.name = "Custom"
assert.strictEqual(error.name, "Custom")
assert.strictEqual(error.toString(), "Custom: " + message)
assert.deepStrictEqual(Object.keys(error), ["code", "name"])
delete error.code
delete error.name
}
function checkErrorProps(error, code, message) {
assert.strictEqual(error.code, code)
assert.strictEqual(error.name, "Error [" + code + "]")
assert.strictEqual(error.toString(), "Error [" + code + "]: " + message)
const actual = Object.getOwnPropertyNames(error).sort()
const expected = Object.getOwnPropertyNames(new Error("x")).sort()
assert.deepStrictEqual(actual, expected)
assert.deepStrictEqual(Object.keys(error), [])
}
function checkErrorStack(error, startsWith) {
const stack = error.stack.replace(/\r\n/g, "\n")
assert.ok(stack.startsWith(startsWith) || stack.startsWith("SyntaxError:"))
}
describe("built-in modules", () => {
it("should load built-in modules", () =>
import("./misc/builtin/load.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should fire setters if already loaded", () =>
import("./misc/builtin/loaded.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should produce valid namespace objects", () =>
import("./misc/builtin/namespace.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
})
describe("package.json", () => {
it("should not be enabled for nested node_modules", () =>
import("disabled")
.then(() => assert.ok(false))
.catch((e) => assert.ok(e instanceof SyntaxError))
)
it("should support `@std/esm` package options", () =>
Promise.all([
"@std-esm-object",
"@std-esm-string",
"@std-object",
"@std-string"
].map((id) =>
import(id)
.then(() => assert.ok(true))
.catch((e) => assert.ifError(e))
))
)
it("should support `@std/esm` as package dependencies", () =>
Promise.all([
"dependencies",
"dev-dependencies",
"peer-dependencies"
].map((id) =>
import(id)
.then(() => assert.ok(true))
.catch((e) => assert.ifError(e))
))
)
})
describe("errors", () => {
it("should not wrap custom errors", () =>
import("./fixture/error/custom.mjs")
.then(() => assert.ok(false))
.catch((e) => assert.strictEqual(e, global.customError))
)
it("should mask stack arrows", () => {
const id1 = path.resolve(__dirname, "fixture/error/import.mjs")
const id2 = path.resolve(__dirname, "fixture/error/export.js")
const id3 = path.resolve(__dirname, "fixture/error/import.js")
const id4 = path.resolve(__dirname, "fixture/error/nested.mjs")
const id5 = path.resolve(__dirname, "fixture/error/syntax.js")
const id6 = path.resolve(__dirname, "node_modules/error/index.js")
return Promise.all([
import(id1)
.then(() => assert.ok(false))
.catch((e) => {
checkErrorStack(e, [
id2 + ":1",
'export const a = "a"',
"^"
].join("\n"))
assert.strictEqual(e.stack.includes(id1 + ":"), false)
}),
import(id3)
.then(() => assert.ok(false))
.catch((e) =>
checkErrorStack(e, [
id3 + ":1",
'import { a } from "./export.js"',
"^"
].join("\n"))
),
import(id4)
.then(() => assert.ok(false))
.catch((e) =>
checkErrorStack(e, [
id4 + ":2",
' import"nested"',
" ^"
].join("\n"))
),
import(id5)
.then(() => assert.ok(false))
.catch((e) =>
checkErrorStack(e, [
id5 + ":1",
"syntax@error",
" ^"
].join("\n"))
),
import(id6)
.then(() => assert.ok(false))
.catch((e) =>
checkErrorStack(e, [
id6 + ":1",
"syntax@error",
" ^"
].join("\n"))
)
])
})
it("should mask stack traces", () =>
import("./fixture/error/import.mjs")
.then(() => assert.ok(false))
.catch((e) => assert.strictEqual(e.stack.includes(pkgPath), false))
)
})
describe("Node rules", () => {
it("should find `.mjs` before `.js`", () =>
Promise.all([
"./fixture/priority",
"priority"
].map((id) =>
import(id)
.then((ns) => assert.strictEqual(ns.default, "mjs"))
.catch((e) => assert.ifError(e))
))
)
it("should support URL ids", () =>
Promise.all([
abcId + "?a",
abcId + "#a",
abcId.replace("abc", "%61%62%63")
].map((id) =>
import(id)
.then((ns) => assert.deepEqual(ns, abcNs))
.catch((e) => assert.ifError(e))
))
)
it("should support ids containing colons", () =>
Promise.all([
"./fixture/with:colon.mjs",
"./fixture/with%3acolon.mjs",
"./fixture/with%3Acolon.mjs"
].map((id) =>
import(id)
.then(() => assert.ok(true))
.catch((e) => assert.ifError(e))
))
)
it("should support ids containing pounds", () =>
import("./fixture/with%23pound.mjs")
.then(() => assert.ok(true))
.catch((e) => assert.ifError(e))
)
it('should support local "." ids', () =>
Promise.all([
"./fixture/relative/dot.js",
"./fixture/relative/dot-slash.js"
].map((id) =>
import(id)
.then((ns) => assert.strictEqual(ns.default, "inside dot"))
.catch((e) => assert.ifError(e))
))
)
it("should reevaluate for ids with different query+hash", () =>
import("./fixture/load-count.mjs")
.then((oldNs) =>
[
{ id: "./fixture/load-count.mjs?", count: 2 },
{ id: "./fixture/load-count.mjs#", count: 3 },
{ id: "./fixture/load-count.mjs?", count: 2 },
{ id: "./fixture/load-count.mjs#", count: 3 },
{ id: "./fixture/load-count.mjs?4", count: 4 },
{ id: "./fixture/load-count.mjs#5", count: 5 },
{ id: "./fixture/load-count.mjs?4", count: 4 },
{ id: "./fixture/load-count.mjs#5", count: 5 },
{ id: "./fixture/load-count.mjs?6#6", count: 6 },
{ id: "./fixture/load-count.mjs#5", count: 5 },
{ id: "./fixture/load-count.mjs?6#6", count: 6 }
].reduce((promise, data) =>
promise
.then(() => import(data.id))
.then((ns) => {
assert.notStrictEqual(ns, oldNs)
assert.strictEqual(ns.default, data.count)
oldNs = ns
})
, Promise.resolve())
)
)
it("should not support URL ids with encoded slashes", () =>
Promise.all([
abcId.replace("/", "%2f"),
abcId.replace("/", "%2F"),
abcId.replace("/", isWin ? "%5c" : "%2f"),
abcId.replace("/", isWin ? "%5C" : "%2F")
].map((id) =>
import(id)
.then(() => assert.ok(false))
.catch((e) => checkError(e, "ERR_MISSING_MODULE"))
))
)
it("should not resolve non-local dependencies", () =>
Promise.all([
"home-node-libraries",
"home-node-modules",
"node-path",
"prefix-path"
].map((id) =>
import(id)
.then(() => assert.ok(false))
.catch((e) => checkError(e, "ERR_MODULE_RESOLUTION_LEGACY"))
))
)
it('should not resolve non-local "." ids', () =>
import(".")
.then(() => assert.ok(false))
.catch((e) => checkError(e,
skipOutsideDot
? "ERR_MISSING_MODULE"
: "ERR_MODULE_RESOLUTION_LEGACY"
))
)
it("should not reevaluate errors", () =>
[
"./fixture/reevaluate-error.mjs",
"./fixture/reevaluate-error.mjs?a",
"./fixture/reevaluate-error.mjs#a"
].reduce((promise, id, index) =>
promise
.then(() => {
delete global.evaluated
return import(id)
.then(() => assert.ok(false))
.catch((e) =>
import(id)
.then(() => assert.ok(false))
.catch((re) => {
if (re.code === "ERR_ASSERTION") {
assert.ok(false)
} else {
assert.strictEqual(e, re)
assert.strictEqual(global.loadCount, index + 1)
}
})
)
})
, Promise.resolve())
)
it("should not support custom file extensions in ESM", () => {
require.extensions[".coffee"] = require.extensions[".js"]
return import("./fixture/cof")
.then(() => assert.ok(false))
.catch((e) => checkError(e, "ERR_MODULE_RESOLUTION_LEGACY"))
})
it("should not support overwriting `.json` handling", () => {
require.extensions[".json"] = () => ({})
return import("../package.json")
.then((ns) => assert.deepStrictEqual(ns.default, pkgJSON))
.catch((e) => assert.ifError(e))
})
it("should not cache ES modules in `require.cache`", () => {
const filePath = path.resolve(__dirname, "fixture/cache/out/file.mjs")
delete require.cache[filePath]
return import("./fixture/cache/out")
.then(() => assert.strictEqual(filePath in require.cache, false))
.catch((e) => assert.ifError(e))
})
it("should resolve non-local dependencies with `require`", () => {
const ids = [
"home-node-libraries",
"home-node-modules",
"node-path",
"prefix-path"
]
ids.map((id) => assert.ok(require(id)))
})
it('should resolve non-local "." ids with `require`', () => {
try {
const exported = require(".")
if (skipOutsideDot) {
assert.ok(false)
} else {
assert.strictEqual(exported, "outside dot")
}
} catch (e) {
if (skipOutsideDot) {
checkError(e, "ERR_MISSING_MODULE")
} else {
assert.ifError(e)
}
}
})
it("should cache ES modules in `require.cache` with `options.cjs`", () => {
const filePath = path.resolve(__dirname, "fixture/cache/in/file.mjs")
delete require.cache[filePath]
return import("./fixture/cache/in")
.then(() => assert.ok(filePath in require.cache))
.catch((e) => assert.ifError(e))
})
it('should add "__esModule" to `module.exports` of ES modules with `options.cjs`', () =>
import("./misc/export/pseudo")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
})
describe("spec compliance", () => {
it("should bind exports before the module executes", () =>
import("./misc/export/cycle-named.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should establish live binding of values", () =>
import("./misc/live.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should execute modules in the correct order", () =>
import("./misc/order.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should produce valid namespace objects", () =>
import("./misc/namespace.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should have a top-level `this` of `undefined`", () =>
import("./misc/this.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should export CJS `module.exports` as default", () =>
import("./misc/export/cjs-default.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should load CJS modules that delete their cache entry", () => {
return import("./fixture/delete-cache.js")
.then((ns) => assert.strictEqual(ns.default, "delete cache"))
.catch((e) => assert.ifError(e))
})
it("should support `import.meta` in ESM", () =>
import("./misc/meta.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should support loading ESM from dynamic import in CJS", () =>
import("./misc/import/dynamic.js")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should not have CJS free variables", () =>
import("./misc/free-vars.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should not export CJS named binding", () =>
import("./fixture/export/cjs-named.mjs")
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.includes("' does not provide an export named '"))
})
)
it("should not support `import.meta` in CJS", () =>
import("./fixture/meta.js")
.then((ns) => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.startsWith("'import.meta' may only be used in ES modules"))
})
)
it("should not support loading ESM from require", () =>
import("./fixture/require-esm.js")
.then(() => assert.ok(false))
.catch((e) => checkError(e, "ERR_REQUIRE_ESM"))
)
it("should not support loading ESM from require if already loaded", () =>
import("./fixture/require-esm.js")
.then(() => assert.ok(false))
.catch((e) => checkError(e, "ERR_REQUIRE_ESM"))
)
it("should not execute already loaded modules from require", () =>
import("./fixture/load-count.js")
.then(() => import("./fixture/require-load-count.js"))
.then((ns) => assert.strictEqual(ns.default, 1))
)
it("should not error when importing a non-ambiguous export", () =>
import("./misc/import/non-ambiguous.mjs")
.then((ns) => ns.default())
.catch((e) => assert.ifError(e))
)
it("should throw a syntax error when exporting duplicate local bindings", () =>
import("./fixture/export/dup-local.mjs")
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.startsWith("Duplicate export of '"))
})
)
it("should throw a syntax error when importing or re-exporting a conflicted star exports", () =>
Promise.all([
"./fixture/import/star-conflict.mjs",
"./fixture/export/star-conflict.mjs"
].map((id) =>
import(id)
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.includes("contains conflicting star exports for name '"))
})
))
)
it("should throw a syntax error when importing non-exported binding", () =>
Promise.all([
"./fixture/import/missing-cjs.mjs",
"./fixture/import/missing-esm.mjs",
"./fixture/cycle/missing/a.mjs"
].map((id) =>
import(id)
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.includes("' does not provide an export named '"))
})
))
)
it("should throw a type error when setting an imported identifier", () =>
Promise.all([
"./fixture/import/const.mjs",
"./fixture/import/let.mjs"
].map((id) =>
import(id)
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof TypeError)
assert.ok(e.message.startsWith("Assignment to constant variable."))
})
))
)
it("should throw a syntax error when accessing top-level `arguments`", () =>
import("./fixture/source/arguments-binding.mjs")
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.startsWith("Binding arguments in strict mode"))
})
)
it("should throw a syntax error when creating an `arguments` binding", () =>
Promise.all([
"./fixture/source/arguments-undefined.mjs",
"./fixture/source/arguments-undefined-nested.mjs"
].map((id) =>
import(id)
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof ReferenceError)
assert.ok(e.message.startsWith("arguments is not defined"))
})
))
)
it("should throw a syntax error when creating an `await` binding", () =>
import("./fixture/source/await-binding.mjs")
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.startsWith("The keyword 'await' is reserved"))
})
)
it("should throw a syntax error when using top-level `new.target`", () =>
import("./fixture/source/new-target.mjs")
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.startsWith("new.target can only be used in functions"))
})
)
it("should throw a syntax error when using an opening HTML comment in ESM", () =>
import("./fixture/source/html-comment.mjs")
.then(() => assert.ok(false))
.catch((e) => {
assert.ok(e instanceof SyntaxError)
assert.ok(e.message.startsWith("HTML comments are not allowed in modules"))
})
)
it("should not throw when accessing `arguments` in a function", () =>
import("./fixture/source/arguments-function.mjs")
.then(() => assert.ok(true))
.catch((e) => assert.ifError(e))
)
it("should not throw when typeof checking `arguments`", () =>
import("./fixture/source/arguments-typeof.mjs")
.then(() => assert.ok(true))
.catch((e) => assert.ifError(e))
)
it("should not throw when using an opening HTML comment in CJS", () =>
import("./fixture/source/html-comment.js")
.then(() => assert.ok(true))
.catch((e) => assert.ifError(e))
)
})