-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Highlights: * Remove use of `process.binding` on modern node (@addaleax) * Increase timeout for port checking (@yilmazdurmaz) * Auto-resume on start when `NODE_INSPECT_RESUME_ON_START` is set (@dolsem) Compare: nodejs/node-inspect@v1.11.6...v2.0.0 PR-URL: #33447 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matheus Marchini <mat@mmarchini.me> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
- Loading branch information
1 parent
7ccb021
commit b0bce9b
Showing
8 changed files
with
166 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Node CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
# See https://github.com/nodejs/node-inspect/pull/78 | ||
# - 10.x | ||
- 12.x | ||
- 13.x | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: npm install, build, and test | ||
run: | | ||
npm install | ||
npm run build --if-present | ||
npm test | ||
env: | ||
CI: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
'use strict'; | ||
const { spawn } = require('child_process'); | ||
const Path = require('path'); | ||
const { test } = require('tap'); | ||
|
||
const startCLI = require('./start-cli'); | ||
|
||
// NOTE(oyyd): We might want to import this regexp from "lib/_inspect.js"? | ||
const kDebuggerMsgReg = /Debugger listening on ws:\/\/\[?(.+?)\]?:(\d+)\//; | ||
|
||
function launchTarget(...args) { | ||
const childProc = spawn(process.execPath, args); | ||
return new Promise((resolve, reject) => { | ||
const onExit = () => { | ||
reject(new Error('Child process exits unexpectly')); | ||
}; | ||
childProc.on('exit', onExit); | ||
childProc.stderr.setEncoding('utf8'); | ||
childProc.stderr.on('data', (data) => { | ||
const ret = kDebuggerMsgReg.exec(data); | ||
childProc.removeListener('exit', onExit); | ||
if (ret) { | ||
resolve({ | ||
childProc, | ||
host: ret[1], | ||
port: ret[2], | ||
}); | ||
} | ||
}); | ||
}); | ||
} | ||
|
||
// process.debugPort is our proxy for "the version of node used to run this | ||
// test suite doesn't support SIGUSR1 for enabling --inspect for a process". | ||
const defaultsToOldProtocol = process.debugPort === 5858; | ||
|
||
test('examples/alive.js', { skip: defaultsToOldProtocol }, (t) => { | ||
const script = Path.join('examples', 'alive.js'); | ||
let cli = null; | ||
let target = null; | ||
|
||
function cleanup(error) { | ||
if (cli) { | ||
cli.quit(); | ||
cli = null; | ||
} | ||
if (target) { | ||
target.kill(); | ||
target = null; | ||
} | ||
if (error) throw error; | ||
} | ||
|
||
return launchTarget('--inspect=0', script) | ||
.then(({ childProc, host, port }) => { | ||
target = childProc; | ||
cli = startCLI([`${host || '127.0.0.1'}:${port}`]); | ||
return cli.waitForPrompt(); | ||
}) | ||
.then(() => cli.command('sb("alive.js", 3)')) | ||
.then(() => cli.waitFor(/break/)) | ||
.then(() => cli.waitForPrompt()) | ||
.then(() => { | ||
t.match( | ||
cli.output, | ||
'> 3 ++x;', | ||
'marks the 3rd line'); | ||
}) | ||
.then(() => cleanup()) | ||
.then(null, cleanup); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters