-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
inspector: add inspector.waitForDebugger()
This method blocks current node process until a client sends Runtime.runifWaitingForDebugger. It can be useful when we need to report inspector.url() before waiting for connection: ``` inspector.open(0, undefined, false); fs.writeFileSync(someFileName, inspector.url()); inspector.waitForDebugger(); ``` PR-URL: #28453 Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
Showing
6 changed files
with
107 additions
and
7 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
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
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,63 @@ | ||
// Flags: --expose-internals | ||
|
||
'use strict'; | ||
const common = require('../common'); | ||
|
||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const { NodeInstance } = require('../common/inspector-helper.js'); | ||
|
||
async function runTests() { | ||
const child = new NodeInstance(['-e', `(${main.toString()})()`], '', ''); | ||
const session = await child.connectInspectorSession(); | ||
await session.send({ method: 'Runtime.enable' }); | ||
// Check that there is only one console message received. | ||
await session.waitForConsoleOutput('log', 'before wait for debugger'); | ||
assert.ok(!session.unprocessedNotifications() | ||
.some((n) => n.method === 'Runtime.consoleAPICalled')); | ||
// Check that inspector.url() is available between inspector.open() and | ||
// inspector.waitForDebugger() | ||
const { result: { value } } = await session.send({ | ||
method: 'Runtime.evaluate', | ||
params: { | ||
expression: 'process._ws', | ||
includeCommandLineAPI: true | ||
} | ||
}); | ||
assert.ok(value.startsWith('ws://')); | ||
session.send({ method: 'Runtime.runIfWaitingForDebugger' }); | ||
// Check that messages after first and before second waitForDebugger are | ||
// received | ||
await session.waitForConsoleOutput('log', 'after wait for debugger'); | ||
await session.waitForConsoleOutput('log', 'before second wait for debugger'); | ||
assert.ok(!session.unprocessedNotifications() | ||
.some((n) => n.method === 'Runtime.consoleAPICalled')); | ||
const secondSession = await child.connectInspectorSession(); | ||
// Check that inspector.waitForDebugger can be resumed from another session | ||
secondSession.send({ method: 'Runtime.runIfWaitingForDebugger' }); | ||
await session.waitForConsoleOutput('log', 'after second wait for debugger'); | ||
assert.ok(!session.unprocessedNotifications() | ||
.some((n) => n.method === 'Runtime.consoleAPICalled')); | ||
secondSession.disconnect(); | ||
session.disconnect(); | ||
|
||
function main(prefix) { | ||
const inspector = require('inspector'); | ||
inspector.open(0, undefined, false); | ||
process._ws = inspector.url(); | ||
console.log('before wait for debugger'); | ||
inspector.waitForDebugger(); | ||
console.log('after wait for debugger'); | ||
console.log('before second wait for debugger'); | ||
inspector.waitForDebugger(); | ||
console.log('after second wait for debugger'); | ||
} | ||
|
||
// Check that inspector.waitForDebugger throws if there is no active | ||
// inspector | ||
const re = /^Error \[ERR_INSPECTOR_NOT_ACTIVE\]: Inspector is not active$/; | ||
assert.throws(() => require('inspector').waitForDebugger(), re); | ||
} | ||
|
||
runTests(); |