nodejs/test/parallel/test-vm-module-synthetic.js
Michaël Zasso ab78d4df34 src: fix crash with SyntheticModule#setExport
Use the new non-deprecated V8 API for that.

PR-URL: https://github.com/nodejs/node/pull/30062
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2019-10-26 16:22:39 -07:00

58 lines
1.2 KiB
JavaScript

'use strict';
// Flags: --experimental-vm-modules
require('../common');
const { SyntheticModule, SourceTextModule } = require('vm');
const assert = require('assert');
(async () => {
{
const s = new SyntheticModule(['x'], () => {
s.setExport('x', 1);
});
const m = new SourceTextModule(`
import { x } from 'synthetic';
export const getX = () => x;
`);
await m.link(() => s);
await m.evaluate();
assert.strictEqual(m.namespace.getX(), 1);
s.setExport('x', 42);
assert.strictEqual(m.namespace.getX(), 42);
}
for (const invalidName of [1, Symbol.iterator, {}, [], null, true, 0]) {
const s = new SyntheticModule([], () => {});
await s.link(() => {});
assert.throws(() => {
s.setExport(invalidName, undefined);
}, {
name: 'TypeError',
});
}
{
const s = new SyntheticModule([], () => {});
await s.link(() => {});
assert.throws(() => {
s.setExport('does not exist');
}, {
name: 'ReferenceError',
});
}
{
const s = new SyntheticModule([], () => {});
assert.throws(() => {
s.setExport('name', 'value');
}, {
code: 'ERR_VM_MODULE_STATUS',
});
}
})();