mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
9e135accbb
PR-URL: https://github.com/nodejs/node/pull/34046 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
196 lines
5.2 KiB
JavaScript
196 lines
5.2 KiB
JavaScript
// Flags: --experimental-wasi-unstable-preview1
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const vm = require('vm');
|
|
const { WASI } = require('wasi');
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
const bufferSource = fixtures.readSync('simple.wasm');
|
|
|
|
(async () => {
|
|
{
|
|
// Verify that a WebAssembly.Instance is passed in.
|
|
const wasi = new WASI();
|
|
|
|
assert.throws(
|
|
() => { wasi.initialize(); },
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
message: /"instance" argument must be of type object/
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
// Verify that the passed instance has an exports objects.
|
|
const wasi = new WASI({});
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', { get() { return null; } });
|
|
assert.throws(
|
|
() => { wasi.initialize(instance); },
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
message: /"instance\.exports" property must be of type object/
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
// Verify that a _initialize() export was passed.
|
|
const wasi = new WASI({});
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', {
|
|
get() {
|
|
return { _initialize: 5, memory: new Uint8Array() };
|
|
},
|
|
});
|
|
assert.throws(
|
|
() => { wasi.initialize(instance); },
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
message: /"instance\.exports\._initialize" property must be of type function/
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
// Verify that a _start export was not passed.
|
|
const wasi = new WASI({});
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', {
|
|
get() {
|
|
return {
|
|
_start() {},
|
|
_initialize() {},
|
|
memory: new Uint8Array(),
|
|
};
|
|
}
|
|
});
|
|
assert.throws(
|
|
() => { wasi.initialize(instance); },
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
message: /"instance\.exports\._start" property must be undefined/
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
// Verify that a memory export was passed.
|
|
const wasi = new WASI({});
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', {
|
|
get() { return { _initialize() {} }; }
|
|
});
|
|
assert.throws(
|
|
() => { wasi.initialize(instance); },
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
message: /"instance\.exports\.memory" property must be of type object/
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
// Verify that a non-ArrayBuffer memory.buffer is rejected.
|
|
const wasi = new WASI({});
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', {
|
|
get() {
|
|
return {
|
|
_initialize() {},
|
|
memory: {},
|
|
};
|
|
}
|
|
});
|
|
// The error message is a little white lie because any object
|
|
// with a .buffer property of type ArrayBuffer is accepted,
|
|
// but 99% of the time a WebAssembly.Memory object is used.
|
|
assert.throws(
|
|
() => { wasi.initialize(instance); },
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
message: /"instance\.exports\.memory\.buffer" property must be an WebAssembly\.Memory/
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
// Verify that an argument that duck-types as a WebAssembly.Instance
|
|
// is accepted.
|
|
const wasi = new WASI({});
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', {
|
|
get() {
|
|
return {
|
|
_initialize() {},
|
|
memory: { buffer: new ArrayBuffer(0) },
|
|
};
|
|
}
|
|
});
|
|
wasi.initialize(instance);
|
|
}
|
|
|
|
{
|
|
// Verify that a WebAssembly.Instance from another VM context is accepted.
|
|
const wasi = new WASI({});
|
|
const instance = await vm.runInNewContext(`
|
|
(async () => {
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', {
|
|
get() {
|
|
return {
|
|
_initialize() {},
|
|
memory: new WebAssembly.Memory({ initial: 1 })
|
|
};
|
|
}
|
|
});
|
|
|
|
return instance;
|
|
})()
|
|
`, { bufferSource });
|
|
|
|
wasi.initialize(instance);
|
|
}
|
|
|
|
{
|
|
// Verify that initialize() can only be called once.
|
|
const wasi = new WASI({});
|
|
const wasm = await WebAssembly.compile(bufferSource);
|
|
const instance = await WebAssembly.instantiate(wasm);
|
|
|
|
Object.defineProperty(instance, 'exports', {
|
|
get() {
|
|
return {
|
|
_initialize() {},
|
|
memory: new WebAssembly.Memory({ initial: 1 })
|
|
};
|
|
}
|
|
});
|
|
wasi.initialize(instance);
|
|
assert.throws(
|
|
() => { wasi.initialize(instance); },
|
|
{
|
|
code: 'ERR_WASI_ALREADY_STARTED',
|
|
message: /^WASI instance has already started$/
|
|
}
|
|
);
|
|
}
|
|
})().then(common.mustCall());
|