mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 03:45:39 +00:00

`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>
91 lines
3.2 KiB
JavaScript
91 lines
3.2 KiB
JavaScript
import * as common from '../common/index.mjs';
|
|
import * as fixtures from '../common/fixtures.mjs';
|
|
import tmpdir from '../common/tmpdir.js';
|
|
import assert from 'node:assert';
|
|
import path from 'node:path';
|
|
import fs from 'node:fs/promises';
|
|
import { NodeInstance } from '../common/inspector-helper.js';
|
|
|
|
|
|
common.skipIfInspectorDisabled();
|
|
tmpdir.refresh();
|
|
|
|
{
|
|
const child = new NodeInstance(
|
|
['--test', '--inspect-brk=0'],
|
|
undefined,
|
|
fixtures.path('test-runner/default-behavior/index.test.js')
|
|
);
|
|
|
|
let stdout = '';
|
|
let stderr = '';
|
|
child.on('stdout', (line) => stdout += line);
|
|
child.on('stderr', (line) => stderr += line);
|
|
|
|
const session = await child.connectInspectorSession();
|
|
|
|
await session.send({ method: 'NodeRuntime.enable' });
|
|
await session.waitForNotification('NodeRuntime.waitingForDebugger');
|
|
await session.send([
|
|
{ method: 'Runtime.enable' },
|
|
{ method: 'Runtime.runIfWaitingForDebugger' }]);
|
|
await session.send({ method: 'NodeRuntime.disable' });
|
|
|
|
session.disconnect();
|
|
assert.match(stderr,
|
|
/Warning: Using the inspector with --test forces running at a concurrency of 1\. Use the inspectPort option to run with concurrency/);
|
|
}
|
|
|
|
|
|
{
|
|
const args = ['--test', '--inspect=0', fixtures.path('test-runner/index.js')];
|
|
const { stderr, stdout, code, signal } = await common.spawnPromisified(process.execPath, args);
|
|
|
|
assert.match(stderr,
|
|
/Warning: Using the inspector with --test forces running at a concurrency of 1\. Use the inspectPort option to run with concurrency/);
|
|
assert.match(stdout, /not ok 1 - .+index\.js/);
|
|
assert.strictEqual(code, 1);
|
|
assert.strictEqual(signal, null);
|
|
}
|
|
|
|
|
|
{
|
|
// File not found.
|
|
const args = ['--test', '--inspect=0', 'a-random-file-that-does-not-exist.js'];
|
|
const { stderr, stdout, code, signal } = await common.spawnPromisified(process.execPath, args);
|
|
|
|
assert.strictEqual(stdout, '');
|
|
assert.match(stderr, /^Could not find/);
|
|
assert.doesNotMatch(stderr, /Warning: Using the inspector with --test forces running at a concurrency of 1\. Use the inspectPort option to run with concurrency/);
|
|
assert.strictEqual(code, 1);
|
|
assert.strictEqual(signal, null);
|
|
}
|
|
|
|
|
|
// Outputs coverage when event loop is drained, with no async logic.
|
|
{
|
|
const coverageDirectory = tmpdir.resolve('coverage');
|
|
async function getCoveredFiles() {
|
|
const coverageFiles = await fs.readdir(coverageDirectory);
|
|
const files = new Set();
|
|
for (const coverageFile of coverageFiles) {
|
|
const coverage = JSON.parse(await fs.readFile(path.join(coverageDirectory, coverageFile)));
|
|
for (const { url } of coverage.result) {
|
|
if (!url.startsWith('node:')) files.add(url);
|
|
}
|
|
}
|
|
return files;
|
|
}
|
|
|
|
const { stderr, code, signal } = await common
|
|
.spawnPromisified(process.execPath,
|
|
['--test', fixtures.path('v8-coverage/basic.js')],
|
|
{ env: { ...process.env, NODE_V8_COVERAGE: coverageDirectory } });
|
|
|
|
assert.strictEqual(stderr, '');
|
|
assert.strictEqual(code, 0);
|
|
assert.strictEqual(signal, null);
|
|
const files = await getCoveredFiles(coverageDirectory);
|
|
assert.ok(files.has(fixtures.fileURL('v8-coverage/basic.js').href));
|
|
}
|