node/test/parallel/test-debugger-probe-max-hit-shared.js
Joyee Cheung 8c4ec8a674
debugger: add --max-hit option to probe mode
This option provides a new way of terminating the probing by
specifying a limit for the per-probe hit evaluation. When any
probe reaches the limit, the session removes the V8 breakpoints
and finishes with a `completed` terminal event rather than waiting
for the target to exit or timeout. This would be useful when we
provide a way to attach to and probe a running process in the future.

Signed-off-by: Joyee Cheung <joyeec9h3@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/63704
Refs: https://github.com/nodejs/node/issues/63646
Reviewed-By: Jan Martin <jan.krems@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
2026-06-13 20:50:15 +00:00

53 lines
1.5 KiB
JavaScript

// This tests that when two probes share one location but have different
// --max-hit limits, the session ends as soon as one of them reaches the limit.
'use strict';
const common = require('../common');
common.skipIfInspectorDisabled();
const fixtures = require('../common/fixtures');
const { spawnSyncAndAssert } = require('../common/child_process');
const { assertProbeJson } = require('../common/debugger-probe');
const cwd = fixtures.path('debugger');
const probeUrl = fixtures.fileURL('debugger', 'probe-max-hit.js').href;
spawnSyncAndAssert(process.execPath, [
'inspect',
'--json',
'--probe', 'probe-max-hit.js:5',
'--expr', 'index',
'--max-hit', '1',
'--probe', 'probe-max-hit.js:5',
'--expr', 'total',
'--max-hit', '2',
'probe-max-hit.js',
], { cwd }, {
stdout(output) {
assertProbeJson(output, {
v: 2,
probes: [
{ expr: 'index', target: { suffix: 'probe-max-hit.js', line: 5 }, maxHit: 1 },
{ expr: 'total', target: { suffix: 'probe-max-hit.js', line: 5 }, maxHit: 2 },
],
results: [
{
probe: 0,
event: 'hit',
hit: 1,
location: { url: probeUrl, line: 5, column: 3 },
result: { type: 'number', value: 0, description: '0' },
},
{
probe: 1,
event: 'hit',
hit: 1,
location: { url: probeUrl, line: 5, column: 3 },
result: { type: 'number', value: 0, description: '0' },
},
{ event: 'completed' },
],
});
},
trim: true,
});