summaryrefslogtreecommitdiff
path: root/test/parallel/test-module-main-preserve-symlinks-fail.js
diff options
context:
space:
mode:
authorGuy Bedford <guybedford@gmail.com>2017-10-11 15:45:21 +0200
committerMichaël Zasso <targos@protonmail.com>2017-10-21 10:45:40 -0700
commitfe4675b301f0e3e26dcb88ef9f68fe35403330a0 (patch)
tree5857d5b4f56dc297dc5865fd311c5307ac80695a /test/parallel/test-module-main-preserve-symlinks-fail.js
parentc4c63812822fc973cb3d4bb4040729213dcaa620 (diff)
downloadandroid-node-v8-fe4675b301f0e3e26dcb88ef9f68fe35403330a0.tar.gz
android-node-v8-fe4675b301f0e3e26dcb88ef9f68fe35403330a0.tar.bz2
android-node-v8-fe4675b301f0e3e26dcb88ef9f68fe35403330a0.zip
module: fix main resolution and not found updates
This simplifies the top-level load when ES modules are enabled as we can entirely delegate the module resolver, which will hand over to CommonJS where appropriate. All not found errors are made consistent to throw during resolve and have the MODULE_NOT_FOUND code. Includes the test case from https://github.com/nodejs/node/pull/15736. Fixes: https://github.com/nodejs/node/issues/15732 PR-URL: https://github.com/nodejs/node/pull/16147 Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-module-main-preserve-symlinks-fail.js')
-rw-r--r--test/parallel/test-module-main-preserve-symlinks-fail.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/parallel/test-module-main-preserve-symlinks-fail.js b/test/parallel/test-module-main-preserve-symlinks-fail.js
new file mode 100644
index 0000000000..b46497b625
--- /dev/null
+++ b/test/parallel/test-module-main-preserve-symlinks-fail.js
@@ -0,0 +1,21 @@
+'use strict';
+require('../common');
+const assert = require('assert');
+const { execFileSync } = require('child_process');
+
+const entryPoints = ['iDoNotExist', 'iDoNotExist.js', 'iDoNotExist.mjs'];
+const flags = [[], ['--experimental-modules', '--preserve-symlinks']];
+const node = process.argv[0];
+
+for (const args of flags) {
+ for (const entryPoint of entryPoints) {
+ try {
+ execFileSync(node, args.concat(entryPoint));
+ } catch (e) {
+ assert(e.toString().match(/Error: Cannot find module/));
+ continue;
+ }
+ assert.fail('Executing node with inexistent entry point should ' +
+ `fail. Entry point: ${entryPoint}, Flags: [${args}]`);
+ }
+}