Skip to content

Commit 47863a5

Browse files
joaocgreisjasnell
authored andcommitted
test: use npm sandbox in test-npm-install
npm should run in a sandbox to avoid unwanted interactions. Without this change, npm would read the userconfig file $HOME/.npmrc which may contain configs that break this test. Fixes: #9074 PR-URL: #9079 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 67e2b92 commit 47863a5

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

test/parallel/test-npm-install.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ const assert = require('assert');
1111
const fs = require('fs');
1212

1313
common.refreshTmpDir();
14+
const npmSandbox = path.join(common.tmpDir, 'npm-sandbox');
15+
fs.mkdirSync(npmSandbox);
16+
const installDir = path.join(common.tmpDir, 'install-dir');
17+
fs.mkdirSync(installDir);
1418

1519
const npmPath = path.join(
1620
common.testDir,
@@ -32,23 +36,26 @@ const pkgContent = JSON.stringify({
3236
}
3337
});
3438

35-
const pkgPath = path.join(common.tmpDir, 'package.json');
39+
const pkgPath = path.join(installDir, 'package.json');
3640

3741
fs.writeFileSync(pkgPath, pkgContent);
3842

3943
const env = Object.create(process.env);
4044
env['PATH'] = path.dirname(process.execPath);
45+
env['NPM_CONFIG_PREFIX'] = path.join(npmSandbox, 'npm-prefix');
46+
env['NPM_CONFIG_TMP'] = path.join(npmSandbox, 'npm-tmp');
47+
env['HOME'] = path.join(npmSandbox, 'home');
4148

4249
const proc = spawn(process.execPath, args, {
43-
cwd: common.tmpDir,
50+
cwd: installDir,
4451
env: env
4552
});
4653

4754
function handleExit(code, signalCode) {
4855
assert.equal(code, 0, 'npm install should run without an error');
4956
assert.ok(signalCode === null, 'signalCode should be null');
5057
assert.doesNotThrow(function() {
51-
fs.accessSync(common.tmpDir + '/node_modules/package-name');
58+
fs.accessSync(installDir + '/node_modules/package-name');
5259
});
5360
}
5461

0 commit comments

Comments
 (0)