mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
1fcb128771
We had a bunch of tests that would fail if run from an executable that contains any char that should be escaped when run from a shell. PR-URL: https://github.com/nodejs/node/pull/55028 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
68 lines
1.8 KiB
JavaScript
68 lines
1.8 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const path = require('path');
|
|
const exec = require('child_process').exec;
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
const npmSandbox = tmpdir.resolve('npm-sandbox');
|
|
fs.mkdirSync(npmSandbox);
|
|
const homeDir = tmpdir.resolve('home');
|
|
fs.mkdirSync(homeDir);
|
|
const installDir = tmpdir.resolve('install-dir');
|
|
fs.mkdirSync(installDir);
|
|
|
|
const npmPath = path.join(
|
|
__dirname,
|
|
'..',
|
|
'..',
|
|
'deps',
|
|
'npm',
|
|
'bin',
|
|
'npm-cli.js'
|
|
);
|
|
|
|
const pkgContent = JSON.stringify({
|
|
dependencies: {
|
|
'package-name': fixtures.path('packages/main')
|
|
}
|
|
});
|
|
|
|
const pkgPath = path.join(installDir, 'package.json');
|
|
|
|
fs.writeFileSync(pkgPath, pkgContent);
|
|
|
|
const env = { ...process.env,
|
|
PATH: path.dirname(process.execPath),
|
|
NODE: process.execPath,
|
|
NPM: npmPath,
|
|
NPM_CONFIG_PREFIX: path.join(npmSandbox, 'npm-prefix'),
|
|
NPM_CONFIG_TMP: path.join(npmSandbox, 'npm-tmp'),
|
|
NPM_CONFIG_AUDIT: false,
|
|
NPM_CONFIG_UPDATE_NOTIFIER: false,
|
|
HOME: homeDir };
|
|
|
|
exec(`"${common.isWindows ? process.execPath : '$NODE'}" "${common.isWindows ? npmPath : '$NPM'}" install`, {
|
|
cwd: installDir,
|
|
env: env
|
|
}, common.mustCall(handleExit));
|
|
|
|
function handleExit(error, stdout, stderr) {
|
|
const code = error ? error.code : 0;
|
|
const signalCode = error ? error.signal : null;
|
|
|
|
if (code !== 0) {
|
|
process.stderr.write(stderr);
|
|
}
|
|
|
|
assert.strictEqual(code, 0, `npm install got error code ${code}`);
|
|
assert.strictEqual(signalCode, null, `unexpected signal: ${signalCode}`);
|
|
assert(fs.existsSync(`${installDir}/node_modules/package-name`));
|
|
}
|