Skip to content

Commit 8fdfa08

Browse files
Jan Kremsitaloacasas
Jan Krems
authored andcommitted
build: add node-inspect integration test
This just adds an additional make target (`make test-node-inspect`) but will not include the new debugger in releases. PR-URL: #10187 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 85f5490 commit 8fdfa08

File tree

3 files changed

+151
-0
lines changed

3 files changed

+151
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,10 @@ test-debugger: all
256256
test-inspector: all
257257
$(PYTHON) tools/test.py inspector
258258

259+
test-node-inspect: $(NODE_EXE)
260+
USE_EMBEDDED_NODE_INSPECT=1 $(NODE) tools/test-npm-package \
261+
--install deps/node-inspect test
262+
259263
test-tick-processor: all
260264
$(PYTHON) tools/test.py tick-processor
261265

tools/test-npm-package.js

+139
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
#!/usr/bin/env node
2+
/**
3+
* Usage:
4+
* test-npm-package.js [--install] [--rebuild] <source> <test-arg>+
5+
*
6+
* Everything after the <source> directory gets passed to `npm run` to build
7+
* the test command.
8+
*
9+
* If `--install` is passed, we'll run a full `npm install` before running the
10+
* test suite. Same for `--rebuild` and `npm rebuild`.
11+
*
12+
* We always use the node used to spawn this script and the `npm` version
13+
* bundled in `deps/npm`.
14+
*
15+
* If an additional `--logfile=<filename>` option is passed before `<source>`,
16+
* the stdout output of the test script will be written to that file.
17+
*/
18+
'use strict';
19+
const { spawn, spawnSync } = require('child_process');
20+
const { createHash } = require('crypto');
21+
const { createWriteStream, mkdirSync, rmdirSync } = require('fs');
22+
const path = require('path');
23+
24+
const common = require('../test/common');
25+
26+
const projectDir = path.resolve(__dirname, '..');
27+
const npmBin = path.join(projectDir, 'deps', 'npm', 'cli.js');
28+
const nodePath = path.dirname(process.execPath);
29+
30+
function spawnCopyDeepSync(source, destination) {
31+
if (common.isWindows) {
32+
mkdirSync(destination); // prevent interactive prompt
33+
return spawnSync('xcopy.exe', ['/E', source, destination]);
34+
} else {
35+
return spawnSync('cp', ['-r', `${source}/`, destination]);
36+
}
37+
}
38+
39+
function runNPMPackageTests({ srcDir, install, rebuild, testArgs, logfile }) {
40+
// Make sure we don't conflict with concurrent test runs
41+
const srcHash = createHash('md5').update(srcDir).digest('hex');
42+
common.tmpDir = common.tmpDir + '.npm.' + srcHash;
43+
common.refreshTmpDir();
44+
45+
const tmpDir = common.tmpDir;
46+
const npmCache = path.join(tmpDir, 'npm-cache');
47+
const npmPrefix = path.join(tmpDir, 'npm-prefix');
48+
const npmTmp = path.join(tmpDir, 'npm-tmp');
49+
const npmUserconfig = path.join(tmpDir, 'npm-userconfig');
50+
const pkgDir = path.join(tmpDir, 'pkg');
51+
52+
spawnCopyDeepSync(srcDir, pkgDir);
53+
54+
const npmOptions = {
55+
cwd: pkgDir,
56+
env: Object.assign({}, process.env, {
57+
'npm_config_cache': npmCache,
58+
'npm_config_prefix': npmPrefix,
59+
'npm_config_tmp': npmTmp,
60+
'npm_config_userconfig': npmUserconfig,
61+
}),
62+
stdio: 'inherit',
63+
};
64+
65+
if (common.isWindows) {
66+
npmOptions.env.home = tmpDir;
67+
npmOptions.env.Path = `${nodePath};${process.env.Path}`;
68+
} else {
69+
npmOptions.env.HOME = tmpDir;
70+
npmOptions.env.PATH = `${nodePath}:${process.env.PATH}`;
71+
}
72+
73+
if (rebuild) {
74+
spawnSync(process.execPath, [
75+
npmBin,
76+
'rebuild',
77+
], npmOptions);
78+
}
79+
80+
if (install) {
81+
spawnSync(process.execPath, [
82+
npmBin,
83+
'install',
84+
'--ignore-scripts',
85+
], npmOptions);
86+
}
87+
88+
const testChild = spawn(process.execPath, [
89+
npmBin,
90+
'--silent',
91+
'run',
92+
...testArgs,
93+
], Object.assign({}, npmOptions, { stdio: 'pipe' }));
94+
95+
testChild.stdout.pipe(process.stdout);
96+
testChild.stderr.pipe(process.stderr);
97+
98+
if (logfile) {
99+
const logStream = createWriteStream(logfile);
100+
testChild.stdout.pipe(logStream);
101+
}
102+
103+
testChild.on('exit', () => {
104+
common.refreshTmpDir();
105+
rmdirSync(tmpDir);
106+
});
107+
}
108+
109+
function parseArgs(args) {
110+
let srcDir;
111+
let rebuild = false;
112+
let install = false;
113+
let logfile = null;
114+
const testArgs = [];
115+
args.forEach((arg) => {
116+
if (srcDir) {
117+
testArgs.push(arg);
118+
return;
119+
}
120+
121+
if (arg === '--install') {
122+
install = true;
123+
} else if (arg === '--rebuild') {
124+
rebuild = true;
125+
} else if (arg[0] !== '-') {
126+
srcDir = path.resolve(projectDir, arg);
127+
} else if (arg.startsWith('--logfile=')) {
128+
logfile = path.resolve(projectDir, arg.slice('--logfile='.length));
129+
} else {
130+
throw new Error(`Unrecognized option ${arg}`);
131+
}
132+
});
133+
if (!srcDir) {
134+
throw new Error('Expected a source directory');
135+
}
136+
return { srcDir, install, rebuild, testArgs, logfile };
137+
}
138+
139+
runNPMPackageTests(parseArgs(process.argv.slice(2)));

vcbuild.bat

+8
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ set enable_vtune_arg=
3939
set configure_flags=
4040
set build_addons=
4141
set dll=
42+
set test_node_inspect=
4243

4344
:next-arg
4445
if "%1"=="" goto args-done
@@ -68,6 +69,7 @@ if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok
6869
if /i "%1"=="test-pummel" set test_args=%test_args% pummel&goto arg-ok
6970
if /i "%1"=="test-all" set test_args=%test_args% sequential parallel message gc inspector internet pummel&set build_testgc_addon=1&set jslint=1&goto arg-ok
7071
if /i "%1"=="test-known-issues" set test_args=%test_args% known_issues&goto arg-ok
72+
if /i "%1"=="test-node-inspect" set test_node_inspect=1&goto arg-ok
7173
if /i "%1"=="jslint" set jslint=1&goto arg-ok
7274
if /i "%1"=="jslint-ci" set jslint_ci=1&goto arg-ok
7375
if /i "%1"=="package" set package=1&goto arg-ok
@@ -331,6 +333,12 @@ EndLocal
331333
goto run-tests
332334

333335
:run-tests
336+
if not defined test_node_inspect goto node-tests
337+
set USE_EMBEDDED_NODE_INSPECT=1
338+
%config%\node tools\test-npm-package.js --install deps\node-inspect test
339+
goto node-tests
340+
341+
:node-tests
334342
if "%test_args%"=="" goto jslint
335343
if "%config%"=="Debug" set test_args=--mode=debug %test_args%
336344
if "%config%"=="Release" set test_args=--mode=release %test_args%

0 commit comments

Comments
 (0)