mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
0161ad0baf
`NodeRuntime.waitingForDebugger` is a new Inspector Protocol event that will fire when the process being inspected is waiting for the debugger (for example, when `inspector.waitForDebugger()` is called). This allows inspecting processes to know when the inspected process is waiting for a `Runtime.runIfWaitingForDebugger` message to resume execution. It allows tooling to resume execution of the inspected process as soon as it deems necessary, without having to guess if the inspected process is waiting or not, making the workflow more deterministic. With a more deterministic workflow, it is possible to update Node.js core tests to avoid race conditions that can cause flakiness. Therefore, tests were also changed as following: * Remove no-op Runtime.runIfWaitingForDebugger from tests that don't need it * Use NodeRuntime.waitingForDebugger in all tests that need Runtime.runIfWaitingForDebugger, to ensure order of operations is predictable and correct * Simplify test-inspector-multisession-ws There might be value in adding `NodeWorker.waitingForDebugger` in a future patch, but as of right now, no Node.js core inspector tests using worker threads are not failing due to race conditions. Fixes: https://github.com/nodejs/node/issues/34730 PR-URL: https://github.com/nodejs/node/pull/51560 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
90 lines
3.0 KiB
JavaScript
90 lines
3.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
common.skipIfInspectorDisabled();
|
|
const { NodeInstance } = require('../common/inspector-helper.js');
|
|
const assert = require('assert');
|
|
|
|
const script = `
|
|
'use strict';
|
|
const assert = require('assert');
|
|
const vm = require('vm');
|
|
global.outer = true;
|
|
global.inner = false;
|
|
const context = vm.createContext({
|
|
outer: false,
|
|
inner: true
|
|
});
|
|
const script = new vm.Script("outer");
|
|
debugger;
|
|
|
|
assert.strictEqual(script.runInThisContext(), true);
|
|
assert.strictEqual(script.runInContext(context), false);
|
|
debugger;
|
|
|
|
vm.runInContext('inner', context);
|
|
debugger;
|
|
|
|
vm.runInNewContext('Array', {});
|
|
debugger;
|
|
|
|
vm.runInNewContext('debugger', {});
|
|
`;
|
|
|
|
async function getContext(session) {
|
|
const created =
|
|
await session.waitForNotification('Runtime.executionContextCreated');
|
|
return created.params.context;
|
|
}
|
|
|
|
async function checkScriptContext(session, context) {
|
|
const scriptParsed =
|
|
await session.waitForNotification('Debugger.scriptParsed');
|
|
assert.strictEqual(scriptParsed.params.executionContextId, context.id);
|
|
}
|
|
|
|
async function runTests() {
|
|
const instance = new NodeInstance(['--inspect-brk=0', '--expose-internals'],
|
|
script);
|
|
const session = await instance.connectInspectorSession();
|
|
|
|
await session.send({ method: 'NodeRuntime.enable' });
|
|
await session.waitForNotification('NodeRuntime.waitingForDebugger');
|
|
await session.send({ 'method': 'Debugger.enable' });
|
|
await session.send({ method: 'Runtime.runIfWaitingForDebugger' });
|
|
await session.send({ method: 'NodeRuntime.disable' });
|
|
|
|
await session.waitForBreakOnLine(2, '[eval]');
|
|
|
|
await session.send({ 'method': 'Runtime.enable' });
|
|
await getContext(session);
|
|
await session.send({ 'method': 'Debugger.resume' });
|
|
const childContext = await getContext(session);
|
|
await session.waitForBreakOnLine(11, '[eval]');
|
|
|
|
console.error('[test]', 'Script is unbound');
|
|
await session.send({ 'method': 'Debugger.resume' });
|
|
await session.waitForBreakOnLine(15, '[eval]');
|
|
|
|
console.error('[test]', 'vm.runInContext associates script with context');
|
|
await session.send({ 'method': 'Debugger.resume' });
|
|
await checkScriptContext(session, childContext);
|
|
await session.waitForBreakOnLine(18, '[eval]');
|
|
|
|
console.error('[test]', 'vm.runInNewContext associates script with context');
|
|
await session.send({ 'method': 'Debugger.resume' });
|
|
const thirdContext = await getContext(session);
|
|
await checkScriptContext(session, thirdContext);
|
|
await session.waitForBreakOnLine(21, '[eval]');
|
|
|
|
console.error('[test]', 'vm.runInNewContext can contain debugger statements');
|
|
await session.send({ 'method': 'Debugger.resume' });
|
|
const fourthContext = await getContext(session);
|
|
await checkScriptContext(session, fourthContext);
|
|
await session.waitForBreakOnLine(0, 'evalmachine.<anonymous>');
|
|
|
|
await session.runToCompletion();
|
|
assert.strictEqual((await instance.expectShutdown()).exitCode, 0);
|
|
}
|
|
|
|
runTests().then(common.mustCall());
|