Skip to content

Commit 907567e

Browse files
committed
sqaush! normalize
1 parent de0dcc5 commit 907567e

File tree

1 file changed

+28
-30
lines changed

1 file changed

+28
-30
lines changed

test/parallel/test-child-process-fork-exec-path.js

+28-30
Original file line numberDiff line numberDiff line change
@@ -21,44 +21,42 @@
2121

2222
'use strict';
2323
const common = require('../common');
24+
25+
// Test that `fork()` respects the `execPath` option.
26+
27+
const tmpdir = require('../common/tmpdir');
28+
const { addLibraryPath } = require('../common/shared-lib-util');
2429
const assert = require('assert');
25-
const fs = require('fs');
26-
const { COPYFILE_FICLONE } = fs.constants;
2730
const path = require('path');
28-
const tmpdir = require('../common/tmpdir');
31+
const fs = require('fs');
32+
const { fork } = require('child_process');
33+
2934
const msg = { test: 'this' };
3035
const nodePath = process.execPath;
3136
const copyPath = path.join(tmpdir.path, 'node-copy.exe');
32-
const { addLibraryPath } = require('../common/shared-lib-util');
3337

3438
addLibraryPath(process.env);
3539

40+
// Child
3641
if (process.env.FORK) {
37-
assert(process.send);
38-
assert.strictEqual(process.argv[0], copyPath);
42+
assert.strictEqual(process.execPath, copyPath);
43+
assert.ok(process.send);
3944
process.send(msg);
40-
process.exit();
41-
} else {
42-
tmpdir.refresh();
43-
try {
44-
fs.unlinkSync(copyPath);
45-
} catch (e) {
46-
if (e.code !== 'ENOENT') throw e;
47-
}
48-
fs.copyFileSync(nodePath, copyPath, COPYFILE_FICLONE);
49-
fs.chmodSync(copyPath, '0755');
50-
51-
// slow but simple
52-
const envCopy = JSON.parse(JSON.stringify(process.env));
53-
envCopy.FORK = 'true';
54-
const child = require('child_process').fork(__filename, {
55-
execPath: copyPath,
56-
env: envCopy
57-
});
58-
child.on('message', common.mustCall(function(recv) {
59-
assert.deepStrictEqual(msg, recv);
60-
}));
61-
child.on('exit', common.mustCall(function(code) {
62-
assert.strictEqual(code, 0);
63-
}));
45+
return process.exit();
6446
}
47+
48+
// Parent
49+
tmpdir.refresh();
50+
assert.strictEqual(fs.existsSync(copyPath), false);
51+
fs.copyFileSync(nodePath, copyPath, fs.constants.COPYFILE_FICLONE);
52+
fs.chmodSync(copyPath, '0755');
53+
54+
// slow but simple
55+
const envCopy = Object.assign({}, process.env, { 'FORK': 'true' });
56+
const child = fork(__filename, { execPath: copyPath, env: envCopy });
57+
child.on('message', common.mustCall(function(recv) {
58+
assert.deepStrictEqual(recv, msg);
59+
}));
60+
child.on('exit', common.mustCall(function(code) {
61+
assert.strictEqual(code, 0);
62+
}));

0 commit comments

Comments
 (0)