-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathdynamic-module-functionality.js
432 lines (413 loc) · 22 KB
/
dynamic-module-functionality.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// ES6 Module functionality tests -- verifies functionality of import and export statements
WScript.LoadScriptFile("..\\UnitTestFramework\\UnitTestFramework.js");
function testScript(source, message, shouldFail = false, explicitAsync = false) {
message += " (script)";
let testfunc = () => testRunner.LoadScript(source, undefined, shouldFail, explicitAsync);
if (shouldFail) {
let caught = false;
assert.throws(testfunc, SyntaxErrr, message);
assert.isTrue(caught, `Expected error not thrown: ${message}`);
} else {
assert.doesNotThrow(testfunc, message);
}
}
function testModuleScript(source, message, shouldFail = false, explicitAsync = false) {
message += " (module)";
let testfunc = () => testRunner.LoadModule(source, 'samethread', shouldFail, explicitAsync);
if (shouldFail) {
let caught = false;
// We can't use assert.throws here because the SyntaxError used to construct the thrown error
// is from a different context so it won't be strictly equal to our SyntaxError.
try {
testfunc();
} catch(e) {
caught = true;
// Compare toString output of SyntaxError and other context SyntaxError constructor.
assert.areEqual(e.constructor.toString(), SyntaxError.toString(), message);
}
assert.isTrue(caught, `Expected error not thrown: ${message}`);
} else {
assert.doesNotThrow(testfunc, message);
}
}
function testDynamicImport(importFunc, thenFunc, catchFunc, _asyncEnter, _asyncExit) {
var promise = importFunc();
assert.isTrue(promise instanceof Promise);
promise.then((v)=>{
_asyncEnter();
thenFunc(v);
_asyncExit();
}).catch((err)=>{
_asyncEnter();
catchFunc(err);
_asyncExit();
});
}
function testDoubleDynamicImport(importFunc, secondFunc, thirdFunc, catchFunc, _asyncEnter, _asyncExit) {
let promise = importFunc();
assert.isTrue(promise instanceof Promise);
promise.then((v)=>{
_asyncEnter();
let secondPromise = secondFunc(v);
secondPromise.then((v2)=>{
_asyncEnter();
thirdFunc(v2);
_asyncExit();
});
_asyncExit();
}).catch((err)=>{
_asyncEnter();
catchFunc(err);
_asyncExit();
});
}
var tests = [
{
name: "Runtime evaluation of module specifier",
body: function () {
let functionBody =
`testDynamicImport(
()=>{
var getName = ()=>{ return 'ModuleSimpleExport'; };
return import( getName() + '.js');
},
(v)=>{
assert.areEqual('ModuleSimpleExport', v.ModuleSimpleExport_foo(), 'Failed to import ModuleSimpleExport_foo from ModuleSimpleExport.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit
)`;
testScript(functionBody, "Test importing a simple exported function", false, true);
testModuleScript(functionBody, "Test importing a simple exported function", false, true);
}
},
{
name: "Validate a simple module export",
body: function () {
let functionBody =
`testDynamicImport(
()=>{ return import('ModuleSimpleExport.js'); },
(v)=>{ assert.areEqual('ModuleSimpleExport', v.ModuleSimpleExport_foo(), 'Failed to import ModuleSimpleExport_foo from ModuleSimpleExport.js'); },
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit
)`;
testScript(functionBody, "Test importing a simple exported function", false, true);
testModuleScript(functionBody, "Test importing a simple exported function", false, true);
}
},
{
name: "Validate importing from multiple modules",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleComplexExports.js'),
(v)=>{
assert.areEqual('foo', v.foo2(), 'Failed to import foo2 from ModuleComplexExports.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit
)`;
testScript(functionBody, "Test importing from multiple modules", false, true);
testModuleScript(functionBody, "Test importing from multiple modules", false, true);
}
},
{
name: "Validate a variety of more complex exports",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleComplexExports.js'),
(v)=>{
assert.areEqual('foo', v.foo(), 'Failed to import foo from ModuleComplexExports.js');
assert.areEqual('foo', v.foo2(), 'Failed to import foo2 from ModuleComplexExports.js');
assert.areEqual('bar', v.bar(), 'Failed to import bar from ModuleComplexExports.js');
assert.areEqual('bar', v.bar2(), 'Failed to import bar2 from ModuleComplexExports.js');
assert.areEqual('let2', v.let2, 'Failed to import let2 from ModuleComplexExports.js');
assert.areEqual('let3', v.let3, 'Failed to import let3 from ModuleComplexExports.js');
assert.areEqual('let2', v.let4, 'Failed to import let4 from ModuleComplexExports.js');
assert.areEqual('let3', v.let5, 'Failed to import let5 from ModuleComplexExports.js');
assert.areEqual('const2', v.const2, 'Failed to import const2 from ModuleComplexExports.js');
assert.areEqual('const3', v.const3, 'Failed to import const3 from ModuleComplexExports.js');
assert.areEqual('const2', v.const4, 'Failed to import const4 from ModuleComplexExports.js');
assert.areEqual('const3', v.const5, 'Failed to import const5 from ModuleComplexExports.js');
assert.areEqual('var2', v.var2, 'Failed to import var2 from ModuleComplexExports.js');
assert.areEqual('var3', v.var3, 'Failed to import var3 from ModuleComplexExports.js');
assert.areEqual('var2', v.var4, 'Failed to import var4 from ModuleComplexExports.js');
assert.areEqual('var3', v.var5, 'Failed to import var5 from ModuleComplexExports.js');
assert.areEqual('class2', v.class2.static_member(), 'Failed to import class2 from ModuleComplexExports.js');
assert.areEqual('class2', new v.class2().member(), 'Failed to create intance of class2 from ModuleComplexExports.js');
assert.areEqual('class2', v.class3.static_member(), 'Failed to import class3 from ModuleComplexExports.js');
assert.areEqual('class2', new v.class3().member(), 'Failed to create intance of class3 from ModuleComplexExports.js');
assert.areEqual('class4', v.class4.static_member(), 'Failed to import class4 from ModuleComplexExports.js');
assert.areEqual('class4', new v.class4().member(), 'Failed to create intance of class4 from ModuleComplexExports.js');
assert.areEqual('class4', v.class5.static_member(), 'Failed to import class4 from ModuleComplexExports.js');
assert.areEqual('class4', new v.class5().member(), 'Failed to create intance of class4 from ModuleComplexExports.js');
assert.areEqual('default', v.default(), 'Failed to import default from ModuleComplexExports.js');
assert.areEqual('ModuleComplexExports', v.function, 'Failed to import v.function from ModuleComplexExports.js');
assert.areEqual('ModuleComplexExports', v.export, 'Failed to import v.export from ModuleComplexExports.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Test importing a variety of exports", false, true);
testModuleScript(functionBody, "Test importing a variety of exports", false, true);
}
},
{
name: "Exporting module changes exported value",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleComplexExports.js'),
(v)=>{
v.reset();
assert.areEqual('before', v.target(), 'Failed to import target from ModuleComplexExports.js');
assert.areEqual('ok', v.changeTarget(), 'Failed to import changeTarget from ModuleComplexExports.js');
assert.areEqual('after', v.target(), 'changeTarget failed to change export value');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Changing exported value", false, true);
testModuleScript(functionBody, "Changing exported value", false, true);
}
},
{
name: "Simple re-export forwards import to correct slot",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleSimpleReexport.js'),
(v)=>{
assert.areEqual('ModuleSimpleExport', v.ModuleSimpleExport_foo(), 'Failed to import ModuleSimpleExport_foo from ModuleSimpleReexport.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Simple re-export from one module to another", false, true);
testModuleScript(functionBody, "Simple re-export from one module to another", false, true);
}
},
{
name: "Renamed re-export and dynamic import",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleComplexReexports.js'),
(v)=>{
assert.areEqual('bar', v.ModuleComplexReexports_foo(), 'Failed to import ModuleComplexReexports_foo from ModuleComplexReexports.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Rename already renamed re-export", false, true);
testModuleScript(functionBody, "Rename already renamed re-export", false, true);
}
},
{
name: "Explicit export/import to default binding",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleDefaultExport1.js'),
(v)=>{
assert.areEqual('ModuleDefaultExport1', v.default(), 'Failed to import default from ModuleDefaultExport1.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Explicitly export and import a local name to the default binding", false, true);
testModuleScript(functionBody, "Explicitly export and import a local name to the default binding", false, true);
}
},
{
name: "Explicit import of default binding",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleDefaultExport2.js'),
(v)=>{
assert.areEqual('ModuleDefaultExport2', v.default(), 'Failed to import default from ModuleDefaultExport2.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Explicitly import the default export binding", false, true);
testModuleScript(functionBody, "Explicitly import the default export binding", false, true);
}
},
{
name: "Exporting module changes value of default export",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleDefaultExport3.js'),
(v)=>{
assert.areEqual(2, v.default, 'Failed to import default from ModuleDefaultExport3.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Exported value incorrectly bound", false, true);
testModuleScript(functionBody, "Exported value incorrectly bound", false, true);
functionBody =
`testDynamicImport(
()=>import('ModuleDefaultExport4.js'),
(v)=>{
assert.areEqual(1, v.default, 'Failed to import default from ModuleDefaultExport4.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Exported value incorrectly bound", false, true);
testModuleScript(functionBody, "Exported value incorrectly bound", false, true);
}
},
{
name: "Import bindings used in a nested function",
body: function () {
let functionBody =
`function test(func) {
assert.areEqual('ModuleDefaultExport2', func(), 'Failed to import default from ModuleDefaultExport2.js');
}
testDynamicImport(
()=>import('ModuleDefaultExport2.js'),
(v)=>test(v.default),
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Failed to find imported name correctly in nested function", false, true);
testModuleScript(functionBody, "Failed to find imported name correctly in nested function", false, true);
}
},
{
name: "Exported name may be any keyword",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleComplexExports.js'),
(v)=>{
assert.areEqual('ModuleComplexExports', v.export, 'Failed to import export from ModuleDefaultExport2.js');
assert.areEqual('ModuleComplexExports', v.function, 'Failed to import function from ModuleDefaultExport2.js');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Exported name may be a keyword (import binding must be binding identifier)", false, true);
testModuleScript(functionBody, "Exported name may be a keyword (import binding must be binding identifier)", false, true);
}
},
{
name: "Odd case of 'export { as as as }; import { as as as };'",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleComplexExports.js'),
(v)=>{
assert.areEqual('as', v.as(), 'String "as" is not reserved word');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Test 'import { as as as}'", false, true);
testModuleScript(functionBody, "Test 'import { as as as}'", false, true);
}
},
{
name: "Typeof a module export",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleDefaultExport2.js'),
(v)=>{
assert.areEqual('function', typeof v.default, 'typeof default export from ModuleDefaultExport2.js is function');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Typeof a module export", false, true);
testModuleScript(functionBody, "Typeof a module export", false, true);
}
},
{
name: "Circular module dependency",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleCircularFoo.js'),
(v)=>{
v.reset();
assert.areEqual(2, v.circular_foo(), 'This function calls between both modules in the circular dependency incrementing a counter in each');
assert.areEqual(4, v.rexportbar(), 'Second call originates in the other module but still increments the counter twice');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Circular module dependency", false, true);
testModuleScript(functionBody, "Circular module dependency", false, true);
}
},
{
name: "Implicitly re-exporting an import binding (import { foo } from ''; export { foo };)",
body: function () {
let functionBody =
`testDynamicImport(
()=>import('ModuleComplexReexports.js'),
(v)=>{
assert.areEqual('foo', v.foo(), 'Simple implicit re-export');
assert.areEqual('foo', v.baz(), 'Renamed export imported and renamed during implicit re-export');
assert.areEqual('foo', v.localfoo(), 'Export renamed as import and implicitly re-exported');
assert.areEqual('foo', v.bar(), 'Renamed export renamed as import and renamed again during implicit re-exported');
assert.areEqual('foo', v.localfoo2(), 'Renamed export renamed as import and implicitly re-exported');
assert.areEqual('foo', v.bar2(), 'Renamed export renamed as import and renamed again during implicit re-export');
},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit);
`;
testScript(functionBody, "Implicitly re-exporting an import binding (import { foo } from ''; export { foo };)", false, true);
testModuleScript(functionBody, "Implicitly re-exporting an import binding (import { foo } from ''; export { foo };)", false, true);
}
},
{
name: "Validate a simple module export inside eval()",
body: function () {
let functionBody =
`testDynamicImport(
()=>{ return eval("import('ModuleSimpleExport.js')"); },
(v)=>{ assert.areEqual('ModuleSimpleExport', v.ModuleSimpleExport_foo(), 'Failed to import ModuleSimpleExport_foo from ModuleSimpleExport.js'); },
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit
)`;
testScript(functionBody, "Test importing a simple exported function", false, true);
testModuleScript(functionBody, "Test importing a simple exported function", false, true);
}
},
{
name: "Test dynamic import of an un-parsed module from a module",
body: function () {
let functionBody =
`testDoubleDynamicImport(
()=>{ return import('testDynamicImportfromModule.js'); },
(v)=>{ return v.foo; },
(v2)=>{ assert.areEqual(true, v.foo.success, "Failed to load module dynamicly from module");},
(err)=>{ assert.fail(err.message); }, _asyncEnter, _asyncExit
)`;
testModuleScript(functionBody, "Test dynamic import of an un-parsed module from a module", false, true);
//note exclusion of testScript case intentional - running the code from a script loads the module
//then the test from Module uses the one loaded by the script - do not add testScript here
}
},
{
name : "Test 'new import()' throws - Bug Issue 5797",
body: function() {
assert.throws(()=>{eval('new import("ModuleSimpleExport.js")')}, SyntaxError);
}
},
{
name : "Test that import() always gives different promise objects - Bug Issue #5795",
body: function () {
WScript.RegisterModuleSource("testModule", "export const a = 5;");
let functionBody =
`testDynamicImport(function () {
const first = import ('ModuleSimpleExport.js');
const second = import ('ModuleSimpleExport.js');
assert.isTrue(first !== second, 'import() should not return the same promise');
return Promise.all([first, second]).then ((results) => ({first, second, results}));
}, function (imports) {
assert.isTrue(imports.first !== imports.second, 'import() should not return the same promise after resolution');
assert.isTrue(imports.results[0] === imports.results[1], 'import() should return the same namespace object');
}, function (e) {
print ("Test should not throw, threw " + e);
}, _asyncEnter, _asyncExit);`;
testScript(functionBody, "Test that import() always gives different promise objects", false, true);
testModuleScript(functionBody, "Test that import() always gives different promise objects", false, true);
}
}
];
testRunner.runTests(tests, { verbose: WScript.Arguments[0] != "summary" });