forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
inspector: --inspect-brk for es modules
Reworked rebase of PR nodejs#17360 with feedback PR-URL: nodejs#18194 Fixes: nodejs#17340 Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
8392f00
commit 5fbf407
Showing
22 changed files
with
202 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
var t = 1; | ||
var k = 1; | ||
console.log('A message', 5); | ||
while (t > 0) { | ||
if (t++ === 1000) { | ||
t = 0; | ||
console.log(`Outputed message #${k++}`); | ||
} | ||
} | ||
process.exit(55); |
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,120 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
common.skipIfInspectorDisabled(); | ||
|
||
const assert = require('assert'); | ||
const fixtures = require('../common/fixtures'); | ||
const { NodeInstance } = require('../common/inspector-helper.js'); | ||
|
||
function assertNoUrlsWhileConnected(response) { | ||
assert.strictEqual(response.length, 1); | ||
assert.ok(!response[0].hasOwnProperty('devtoolsFrontendUrl')); | ||
assert.ok(!response[0].hasOwnProperty('webSocketDebuggerUrl')); | ||
} | ||
|
||
function assertScopeValues({ result }, expected) { | ||
const unmatched = new Set(Object.keys(expected)); | ||
for (const actual of result) { | ||
const value = expected[actual['name']]; | ||
assert.strictEqual(actual['value']['value'], value); | ||
unmatched.delete(actual['name']); | ||
} | ||
assert.deepStrictEqual(Array.from(unmatched.values()), []); | ||
} | ||
|
||
async function testBreakpointOnStart(session) { | ||
console.log('[test]', | ||
'Verifying debugger stops on start (--inspect-brk option)'); | ||
const commands = [ | ||
{ 'method': 'Runtime.enable' }, | ||
{ 'method': 'Debugger.enable' }, | ||
{ 'method': 'Debugger.setPauseOnExceptions', | ||
'params': { 'state': 'none' } }, | ||
{ 'method': 'Debugger.setAsyncCallStackDepth', | ||
'params': { 'maxDepth': 0 } }, | ||
{ 'method': 'Profiler.enable' }, | ||
{ 'method': 'Profiler.setSamplingInterval', | ||
'params': { 'interval': 100 } }, | ||
{ 'method': 'Debugger.setBlackboxPatterns', | ||
'params': { 'patterns': [] } }, | ||
{ 'method': 'Runtime.runIfWaitingForDebugger' } | ||
]; | ||
|
||
await session.send(commands); | ||
await session.waitForBreakOnLine(0, session.scriptURL()); | ||
} | ||
|
||
async function testBreakpoint(session) { | ||
console.log('[test]', 'Setting a breakpoint and verifying it is hit'); | ||
const commands = [ | ||
{ 'method': 'Debugger.setBreakpointByUrl', | ||
'params': { 'lineNumber': 5, | ||
'url': session.scriptURL(), | ||
'columnNumber': 0, | ||
'condition': '' | ||
} | ||
}, | ||
{ 'method': 'Debugger.resume' }, | ||
]; | ||
await session.send(commands); | ||
const { scriptSource } = await session.send({ | ||
'method': 'Debugger.getScriptSource', | ||
'params': { 'scriptId': session.mainScriptId } }); | ||
assert(scriptSource && (scriptSource.includes(session.script())), | ||
`Script source is wrong: ${scriptSource}`); | ||
|
||
await session.waitForConsoleOutput('log', ['A message', 5]); | ||
const paused = await session.waitForBreakOnLine(5, session.scriptURL()); | ||
const scopeId = paused.params.callFrames[0].scopeChain[0].object.objectId; | ||
|
||
console.log('[test]', 'Verify we can read current application state'); | ||
const response = await session.send({ | ||
'method': 'Runtime.getProperties', | ||
'params': { | ||
'objectId': scopeId, | ||
'ownProperties': false, | ||
'accessorPropertiesOnly': false, | ||
'generatePreview': true | ||
} | ||
}); | ||
assertScopeValues(response, { t: 1001, k: 1 }); | ||
|
||
let { result } = await session.send({ | ||
'method': 'Debugger.evaluateOnCallFrame', 'params': { | ||
'callFrameId': '{"ordinal":0,"injectedScriptId":1}', | ||
'expression': 'k + t', | ||
'objectGroup': 'console', | ||
'includeCommandLineAPI': true, | ||
'silent': false, | ||
'returnByValue': false, | ||
'generatePreview': true | ||
} | ||
}); | ||
|
||
assert.strictEqual(result['value'], 1002); | ||
|
||
result = (await session.send({ | ||
'method': 'Runtime.evaluate', 'params': { | ||
'expression': '5 * 5' | ||
} | ||
})).result; | ||
assert.strictEqual(result['value'], 25); | ||
} | ||
|
||
async function runTest() { | ||
const child = new NodeInstance(['--inspect-brk=0', '--experimental-modules'], | ||
'', fixtures.path('es-modules/loop.mjs')); | ||
|
||
const session = await child.connectInspectorSession(); | ||
assertNoUrlsWhileConnected(await child.httpGet(null, '/json/list')); | ||
await testBreakpointOnStart(session); | ||
await testBreakpoint(session); | ||
await session.runToCompletion(); | ||
assert.strictEqual((await child.expectShutdown()).exitCode, 55); | ||
} | ||
|
||
common.crashOnUnhandledRejection(); | ||
|
||
runTest(); |
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
1 change: 1 addition & 0 deletions
1
test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js
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
1 change: 1 addition & 0 deletions
1
test/sequential/test-inspector-async-stack-traces-promise-then.js
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
1 change: 1 addition & 0 deletions
1
test/sequential/test-inspector-async-stack-traces-set-interval.js
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// Flags: --expose-internals | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
|
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
Oops, something went wrong.