node/test/parallel/test-vm-module-reevaluate.js
Gus Caplan 5e7946fe79 vm: refactor SourceTextModule
- Removes redundant `instantiate` method
- Refactors `link` to match the spec linking steps more accurately
- Removes URL validation from SourceTextModule specifiers
- DRYs some dynamic import logic

Closes: https://github.com/nodejs/node/issues/29030

Co-Authored-By: Michaël Zasso <targos@protonmail.com>

PR-URL: https://github.com/nodejs/node/pull/29776
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
2019-10-02 15:54:35 -07:00

47 lines
950 B
JavaScript

'use strict';
// Flags: --experimental-vm-modules
const common = require('../common');
const assert = require('assert');
const { SourceTextModule } = require('vm');
const finished = common.mustCall();
(async function main() {
{
const m = new SourceTextModule('1');
await m.link(common.mustNotCall());
assert.strictEqual((await m.evaluate()).result, 1);
assert.strictEqual((await m.evaluate()).result, undefined);
assert.strictEqual((await m.evaluate()).result, undefined);
}
{
const m = new SourceTextModule('throw new Error()');
await m.link(common.mustNotCall());
let threw = false;
try {
await m.evaluate();
} catch (err) {
assert(err instanceof Error);
threw = true;
}
assert(threw);
threw = false;
try {
await m.evaluate();
} catch (err) {
assert(err instanceof Error);
threw = true;
}
assert(threw);
}
finished();
})();