-
Notifications
You must be signed in to change notification settings - Fork 1
/
modules_test.go
531 lines (509 loc) · 12.3 KB
/
modules_test.go
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
package sobek
import (
"fmt"
"sync"
"testing"
)
func TestSimpleModule(t *testing.T) {
t.Parallel()
testCases := map[string]map[string]string{
"function export": {
"a.js": `
import { b } from "dep.js";
globalThis.s = b()
`,
"dep.js": `export function b() { return 5 };`,
},
"function export eval": {
"a.js": `
import { b } from "dep.js";
eval("globalThis.s = b()");
`,
"dep.js": `export function b() { return 5 };`,
},
"var export destructuring": {
"a.js": `
import { b } from "dep.js";
eval("globalThis.s = b()");
`,
"dep.js": `
const a = { b: function() {return 5 } };
export var { b } = a;
`,
},
"let export": {
"a.js": `
import { b } from "dep.js";
globalThis.s = b()
`,
"dep.js": `export let b = function() {return 5 };`,
},
"let export eval": {
"a.js": `
import { b } from "dep.js";
eval("globalThis.s = b()");
`,
"dep.js": `export let b = function() {return 5 };`,
},
"let export destructuring": {
"a.js": `
import { b } from "dep.js";
eval("globalThis.s = b()");
`,
"dep.js": `
const a = { b: function() {return 5 } };
export let { b } = a;
`,
},
"const export": {
"a.js": `
import { b } from "dep.js";
globalThis.s = b()
`,
"dep.js": `export const b = function() { return 5 };`,
},
"const export eval": {
"a.js": `
import { b } from "dep.js";
eval("globalThis.s = b()")
`,
"dep.js": `export const b = function() { return 5 };`,
},
"let export with update": {
"a.js": `
import { s, b } from "dep.js";
s()
globalThis.s = b()
`,
"dep.js": `
export let b = "something";
export function s(){
b = function() {
return 5;
};
}`,
},
"let export with update eval": {
"a.js": `
import { s, b } from "dep.js";
s();
eval("globalThis.s = b();");
`,
"dep.js": `
export let b = "something";
export function s(){
b = function() {
return 5;
};
}`,
},
"default export": {
"a.js": `
import b from "dep.js";
globalThis.s = b()
`,
"dep.js": `export default function() { return 5 };`,
},
"default export eval": {
"a.js": `
import b from "dep.js";
eval("globalThis.s = b()");
`,
"dep.js": `export default function() { return 5 };`,
},
"default loop": {
"a.js": `
import b from "a.js";
export default function() {return 5;};
globalThis.s = b()
`,
},
"default loop eval": {
"a.js": `
import b from "a.js";
export default function() {return 5;};
eval("globalThis.s = b()");
`,
},
"default export arrow": {
"a.js": `
import b from "dep.js";
globalThis.s = b();
`,
"dep.js": `export default () => {return 5 };`,
},
"default export Class usage": {
"a.js": `
import b from "dep.js";
export default class m {
some() {
return b();
}
}
let l = new m();
globalThis.s = l.some();
`,
"dep.js": `export default () => {return 5 };`,
},
"default export function usage": {
"a.js": `
import b from "dep.js";
export default function some () {
return b();
}
globalThis.s = some();
`,
"dep.js": `export default () => {return 5 };`,
},
"default export generator usage": {
"a.js": `
import b from "dep.js";
export default function * some () {
yield b();
}
globalThis.s = some().next().value;
`,
"dep.js": `export default () => {return 5 };`,
},
"default export async function usage": {
"a.js": `
import b from "dep.js";
export default async function some () {
return b();
}
globalThis.s = await some();
`,
"dep.js": `export default () => {return 5 };`,
},
"default export arrow async": {
"a.js": `
import b from "dep.js";
globalThis.s = await b();
`,
"dep.js": `export default async () => {return 5 };`,
},
"default export arrow eval": {
"a.js": `
import b from "dep.js";
eval("globalThis.s = b();")
`,
"dep.js": `export default () => {return 5 };`,
},
"default export with as": {
"a.js": `
import b from "dep.js";
globalThis.s = b()
`,
"dep.js": `
function f() {return 5;};
export { f as default };
`,
},
"default export with as eval": {
"a.js": `
import b from "dep.js";
eval("globalThis.s = b()")
`,
"dep.js": `
function f() {return 5;};
export { f as default };
`,
},
"export usage before evaluation as": {
"a.js": `
import "dep.js";
export function a() { return 5; }
`,
"dep.js": `
import { a } from "a.js";
globalThis.s = a();
`,
},
"export usage before evaluation as eval": {
"a.js": `
import "dep.js";
export function a() { return 5; }
`,
"dep.js": `
import { a } from "a.js";
eval("globalThis.s = a()");
`,
},
"dynamic import": {
"a.js": `
import("dep.js").then((imported) => {
globalThis.s = imported.default();
});
`,
"dep.js": `export default function() { return 5; }`,
},
"dynamic import eval": {
"a.js": `
import("dep.js").then((imported) => {
eval("globalThis.s = imported.default()");
});
`,
"dep.js": `export default function() { return 5; }`,
},
"dynamic import error": {
"a.js": `
do {
import('dep.js').catch(error => {
if (error.name == "SyntaxError") {
globalThis.s = 5;
}
});
} while (false);
`,
"dep.js": `import { x } from "0-fixture.js";`,
"0-fixture.js": `
export * from "1-fixture.js";
export * from "2-fixture.js";
`,
"1-fixture.js": `export var x`,
"2-fixture.js": `export var x`,
},
}
for name, cases := range testCases {
cases := cases
t.Run(name, func(t *testing.T) {
t.Parallel()
fn := runModules(t, cases)
for i := 0; i < 10; i++ {
i := i
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
t.Parallel()
vm := New()
promise := fn(vm)
if promise.state != PromiseStateFulfilled {
t.Fatalf("got %+v", promise.Result().Export())
}
v := vm.Get("s")
if v == nil || v.ToNumber().ToInteger() != 5 {
t.Fatalf("expected 5 got %s", v)
}
})
}
})
}
}
func runModules(t testing.TB, files map[string]string) func(*Runtime) *Promise {
type cacheElement struct {
m ModuleRecord
err error
}
mu := sync.Mutex{}
cache := make(map[string]cacheElement)
var hostResolveImportedModule func(referencingScriptOrModule interface{}, specifier string) (ModuleRecord, error)
hostResolveImportedModule = func(_ interface{}, specifier string) (ModuleRecord, error) {
mu.Lock()
defer mu.Unlock()
k, ok := cache[specifier]
if ok {
return k.m, k.err
}
src, ok := files[specifier]
if !ok {
return nil, fmt.Errorf("can't find %q from files", specifier)
}
p, err := ParseModule(specifier, src, hostResolveImportedModule)
if err != nil {
cache[specifier] = cacheElement{err: err}
return nil, err
}
cache[specifier] = cacheElement{m: p}
return p, nil
}
linked := make(map[ModuleRecord]error)
linkMu := new(sync.Mutex)
link := func(m ModuleRecord) error {
linkMu.Lock()
defer linkMu.Unlock()
if err, ok := linked[m]; ok {
return err
}
err := m.Link()
linked[m] = err
return err
}
m, err := hostResolveImportedModule(nil, "a.js")
if err != nil {
t.Fatalf("got error %s", err)
}
p := m.(*SourceTextModuleRecord)
err = link(p)
if err != nil {
t.Fatalf("got error %s", err)
}
return func(vm *Runtime) *Promise {
eventLoopQueue := make(chan func(), 2) // the most basic and likely buggy event loop
vm.SetImportModuleDynamically(func(referencingScriptOrModule interface{}, specifierValue Value, pcap interface{}) {
specifier := specifierValue.String()
eventLoopQueue <- func() {
ex := vm.runWrapped(func() {
m, err := hostResolveImportedModule(referencingScriptOrModule, specifier)
vm.FinishLoadingImportModule(referencingScriptOrModule, specifierValue, pcap, m, err)
})
if ex != nil {
vm.FinishLoadingImportModule(referencingScriptOrModule, specifierValue, pcap, nil, ex)
}
}
})
var promise *Promise
eventLoopQueue <- func() { promise = m.Evaluate(vm) }
outer:
for {
select {
case fn := <-eventLoopQueue:
fn()
default:
break outer
}
}
return promise
}
}
func TestAmbiguousImport(t *testing.T) {
t.Parallel()
fn := runModules(t, map[string]string{
`a.js`: `
import "dep.js"
export let s = 5;
export * from "test1.js"
export * from "test2.js"
`,
`dep.js`: `
import { s } from "a.js"
import { x } from "a.js"
`,
`test1.js`: `
export let x = 6
export let a = 6
`,
`test2.js`: `
export let x = 6
export let b = 6
`,
})
promise := fn(New())
if promise.state != PromiseStateRejected {
t.Fatalf("expected promise to be rejected %q", promise.state)
}
exc := promise.Result().Export().(*Exception)
expValue := `SyntaxError: The requested module "a.js" contains conflicting star exports for name "x"
at dep.js:3:5(2)
at dep.js:1:1(2)
`
if exc.String() != expValue {
t.Fatalf("Expected values %q but got %q", expValue, exc.String())
}
}
func TestImportingUnexported(t *testing.T) {
t.Parallel()
fn := runModules(t, map[string]string{
`a.js`: `
import "dep.js"
export let s = 5;
`,
`dep.js`: `
import { s } from "a.js"
import { x } from "a.js"
`,
})
promise := fn(New())
if promise.state != PromiseStateRejected {
t.Fatalf("expected promise to be rejected %q", promise.state)
}
exc := promise.Result().Export().(*Exception)
expValue := `SyntaxError: The requested module "a.js" does not provide an export named "x"
at dep.js:3:5(2)
at dep.js:1:1(2)
`
if exc.String() != expValue {
t.Fatalf("Expected values %q but got %q", expValue, exc.String())
}
}
func TestModuleAsyncErrorAndPromiseRejection(t *testing.T) {
t.Parallel()
fn := runModules(t, map[string]string{
`a.js`: `
import "dep.js"
something;
`,
`dep.js`: `
await 5;
`,
})
rt := New()
unhandledRejectedPromises := make(map[*Promise]struct{})
rt.promiseRejectionTracker = func(p *Promise, operation PromiseRejectionOperation) {
switch operation {
case PromiseRejectionReject:
unhandledRejectedPromises[p] = struct{}{}
case PromiseRejectionHandle:
delete(unhandledRejectedPromises, p)
}
}
promise := fn(rt)
rt.performPromiseThen(promise, rt.ToValue(func() {}), rt.ToValue(func() {}), nil)
if promise.state != PromiseStateRejected {
t.Fatalf("expected promise to be rejected %q", promise.state)
}
exc := promise.Result().Export().(*Exception)
expValue := "ReferenceError: something is not defined\n\tat a.js:3:4(6)\n"
if exc.String() != expValue {
t.Fatalf("Expected values %q but got %q", expValue, exc.String())
}
if len(unhandledRejectedPromises) != 0 {
t.Fatalf("zero unhandled exceptions were expected but there were some %+v", unhandledRejectedPromises)
}
}
func TestModuleAsyncInterrupt(t *testing.T) {
t.Parallel()
fn := runModules(t, map[string]string{
`a.js`: `
import { s } from "dep.js"
s();
`,
`dep.js`: `
await 5;
export function s() {
interrupt();
let buf = "";
for (let i = 0; i < 10000; i++) {
buf += "a" + "a";
}
badcall();
}
`,
})
rt := New()
var shouldntHappen bool
rt.Set("interrupt", rt.ToValue(func() { rt.Interrupt("the error we want") }))
rt.Set("badcall", rt.ToValue(func() { shouldntHappen = true }))
unhandledRejectedPromises := make(map[*Promise]struct{})
rt.promiseRejectionTracker = func(p *Promise, operation PromiseRejectionOperation) {
switch operation {
case PromiseRejectionReject:
unhandledRejectedPromises[p] = struct{}{}
case PromiseRejectionHandle:
delete(unhandledRejectedPromises, p)
}
}
promise := fn(rt)
rt.performPromiseThen(promise, rt.ToValue(func() {}), rt.ToValue(func() {}), nil)
if promise.state != PromiseStateRejected {
t.Fatalf("expected promise to be rejected %q", promise.state)
}
exc := promise.Result().Export().(*InterruptedError)
expValue := "the error we want\n\tat s (dep.js:4:14(3))\n\tat a.js:3:5(10)\n"
if exc.String() != expValue {
t.Fatalf("Expected values %q but got %q", expValue, exc.String())
}
if len(unhandledRejectedPromises) != 0 {
t.Fatalf("zero unhandled exceptions were expected but there were some %+v", unhandledRejectedPromises)
}
if shouldntHappen {
t.Fatal("code was supposed to be interrupted but that din't work")
}
}