2017-04-11 09:33:11 +00:00
|
|
|
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// Flags: --allow-natives-syntax --harmony-dynamic-import
|
2019-09-20 13:32:43 +00:00
|
|
|
//
|
|
|
|
// Note: This test fails with top level await due to test1, which tries to
|
|
|
|
// import a module using top level await and expects it to fail.
|
2017-04-11 09:33:11 +00:00
|
|
|
|
|
|
|
var ran = false;
|
|
|
|
|
|
|
|
async function test1() {
|
|
|
|
try {
|
2019-06-27 10:49:03 +00:00
|
|
|
let x = await import('modules-skip-8.mjs');
|
2017-04-11 09:33:11 +00:00
|
|
|
%AbortJS('failure: should be unreachable');
|
|
|
|
} catch(e) {
|
|
|
|
assertEquals('Unexpected reserved word', e.message);
|
|
|
|
ran = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test1();
|
2018-12-04 06:12:49 +00:00
|
|
|
%PerformMicrotaskCheckpoint();
|
2017-04-11 09:33:11 +00:00
|
|
|
assertTrue(ran);
|
|
|
|
|
|
|
|
ran = false;
|
|
|
|
|
|
|
|
async function test2() {
|
|
|
|
try {
|
2019-06-27 10:49:03 +00:00
|
|
|
let x = await import('modules-skip-9.mjs');
|
2017-04-11 09:33:11 +00:00
|
|
|
%AbortJS('failure: should be unreachable');
|
|
|
|
} catch(e) {
|
|
|
|
assertInstanceof(e, SyntaxError);
|
|
|
|
assertEquals(
|
2019-06-27 10:49:03 +00:00
|
|
|
"The requested module 'modules-skip-empty.mjs' does not provide an " +
|
2017-12-08 08:39:01 +00:00
|
|
|
"export named 'default'",
|
2017-04-11 09:33:11 +00:00
|
|
|
e.message);
|
|
|
|
ran = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test2();
|
2018-12-04 06:12:49 +00:00
|
|
|
%PerformMicrotaskCheckpoint();
|
2017-04-11 09:33:11 +00:00
|
|
|
assertTrue(ran);
|
|
|
|
|
|
|
|
ran = false;
|
|
|
|
|
|
|
|
async function test3() {
|
|
|
|
try {
|
2019-06-27 10:49:03 +00:00
|
|
|
let x = await import('nonexistent-file.mjs');
|
2017-04-11 09:33:11 +00:00
|
|
|
%AbortJS('failure: should be unreachable');
|
|
|
|
} catch(e) {
|
2020-09-28 15:24:47 +00:00
|
|
|
assertTrue(e.startsWith('d8: Error reading'));
|
2017-04-11 09:33:11 +00:00
|
|
|
ran = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test3();
|
2018-12-04 06:12:49 +00:00
|
|
|
%PerformMicrotaskCheckpoint();
|
2017-04-11 09:33:11 +00:00
|
|
|
assertTrue(ran);
|