mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
7efae9341f
- remove default for version - updates tests to specify version - add test for when version is not specified Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/47391 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
60 lines
2.7 KiB
JavaScript
60 lines
2.7 KiB
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { WASI } = require('wasi');
|
|
|
|
// If args is undefined, it should default to [] and should not throw.
|
|
new WASI({ version: 'preview1' });
|
|
|
|
// If args is not an Array and not undefined, it should throw.
|
|
assert.throws(() => { new WASI({ version: 'preview1', args: 'fhqwhgads' }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\bargs\b/ });
|
|
|
|
// If env is not an Object and not undefined, it should throw.
|
|
assert.throws(() => { new WASI({ version: 'preview1', env: 'fhqwhgads' }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\benv\b/ });
|
|
|
|
// If preopens is not an Object and not undefined, it should throw.
|
|
assert.throws(() => { new WASI({ version: 'preview1', preopens: 'fhqwhgads' }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\bpreopens\b/ });
|
|
|
|
// If returnOnExit is not a boolean and not undefined, it should throw.
|
|
assert.throws(() => { new WASI({ version: 'preview1', returnOnExit: 'fhqwhgads' }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\breturnOnExit\b/ });
|
|
|
|
// If stdin is not an int32 and not undefined, it should throw.
|
|
assert.throws(() => { new WASI({ version: 'preview1', stdin: 'fhqwhgads' }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\bstdin\b/ });
|
|
|
|
// If stdout is not an int32 and not undefined, it should throw.
|
|
assert.throws(() => { new WASI({ version: 'preview1', stdout: 'fhqwhgads' }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\bstdout\b/ });
|
|
|
|
// If stderr is not an int32 and not undefined, it should throw.
|
|
assert.throws(() => { new WASI({ version: 'preview1', stderr: 'fhqwhgads' }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\bstderr\b/ });
|
|
|
|
// If options is provided, but not an object, the constructor should throw.
|
|
[null, 'foo', '', 0, NaN, Symbol(), true, false, () => {}].forEach((value) => {
|
|
assert.throws(() => { new WASI(value); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE' });
|
|
});
|
|
|
|
// Verify that exceptions thrown from the binding layer are handled.
|
|
assert.throws(() => {
|
|
new WASI({ version: 'preview1', preopens: { '/sandbox': '__/not/real/path' } });
|
|
}, { code: 'UVWASI_ENOENT', message: /uvwasi_init/ });
|
|
|
|
// If version is not a string, it should throw
|
|
assert.throws(() => { new WASI({ version: { x: 'y' } }); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\bversion\b/ });
|
|
|
|
// If version is not specified, it should throw.
|
|
assert.throws(() => { new WASI(); },
|
|
{ code: 'ERR_INVALID_ARG_TYPE', message: /\bversion\b/ });
|
|
|
|
// If version is an unsupported version, it should throw
|
|
assert.throws(() => { new WASI({ version: 'not_a_version' }); },
|
|
{ code: 'ERR_INVALID_ARG_VALUE', message: /\bversion\b/ });
|