mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7535a94c8a
Adds a new `../common/fixtures' module to begin normalizing `test/fixtures` use. Our test code is a bit inconsistent with regards to use of the fixtures directory. Some code uses `path.join()`, some code uses string concats, some other code uses template strings, etc. In mnay cases, significant duplication of code is seen when accessing fixture files, etc. This updates many (but by no means all) of the tests in the test suite to use the new consistent API. There are still many more to update, which would make an excelent Code-n-Learn exercise. PR-URL: https://github.com/nodejs/node/pull/14332 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
32 lines
970 B
JavaScript
32 lines
970 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// Ensures that child_process.fork can accept string
|
|
// variant of stdio parameter in options object and
|
|
// throws a TypeError when given an unexpected string
|
|
|
|
const assert = require('assert');
|
|
const fork = require('child_process').fork;
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const childScript = fixtures.path('child-process-spawn-node');
|
|
const errorRegexp = /^TypeError: Incorrect value of stdio option:/;
|
|
const malFormedOpts = { stdio: '33' };
|
|
const payload = { hello: 'world' };
|
|
|
|
assert.throws(() => fork(childScript, malFormedOpts), errorRegexp);
|
|
|
|
function test(stringVariant) {
|
|
const child = fork(childScript, { stdio: stringVariant });
|
|
|
|
child.on('message', common.mustCall((message) => {
|
|
assert.deepStrictEqual(message, { foo: 'bar' });
|
|
}));
|
|
|
|
child.send(payload);
|
|
|
|
child.on('exit', common.mustCall((code) => assert.strictEqual(code, 0)));
|
|
}
|
|
|
|
['pipe', 'inherit', 'ignore'].forEach(test);
|