2021-04-09 06:55:45 +00:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
|
|
|
|
const fixtures = require('../common/fixtures');
|
2021-05-04 04:58:42 +00:00
|
|
|
const startCLI = require('../common/debugger');
|
2021-04-09 06:55:45 +00:00
|
|
|
|
|
|
|
const assert = require('assert');
|
|
|
|
const path = require('path');
|
|
|
|
|
2022-09-27 16:52:30 +00:00
|
|
|
const scriptFullPath = fixtures.path('debugger', 'three-lines.js');
|
|
|
|
const script = path.relative(process.cwd(), scriptFullPath);
|
|
|
|
|
2021-04-09 06:55:45 +00:00
|
|
|
// Run after quit.
|
2022-09-27 16:52:30 +00:00
|
|
|
const runTest = async () => {
|
2023-03-27 22:03:40 +00:00
|
|
|
const cli = startCLI(['--port=0', script]);
|
2022-09-27 16:52:30 +00:00
|
|
|
try {
|
|
|
|
await cli.waitForInitialBreak();
|
|
|
|
await cli.waitForPrompt();
|
|
|
|
await cli.command('breakpoints');
|
|
|
|
assert.match(cli.output, /No breakpoints yet/);
|
|
|
|
await cli.command('sb(2)');
|
|
|
|
await cli.command('sb(3)');
|
|
|
|
await cli.command('breakpoints');
|
|
|
|
assert.ok(cli.output.includes(`#0 ${script}:2`));
|
|
|
|
assert.ok(cli.output.includes(`#1 ${script}:3`));
|
|
|
|
await cli.stepCommand('c'); // hit line 2
|
|
|
|
await cli.stepCommand('c'); // hit line 3
|
|
|
|
assert.deepStrictEqual(cli.breakInfo, { filename: script, line: 3 });
|
|
|
|
await cli.command('restart');
|
|
|
|
await cli.waitForInitialBreak();
|
|
|
|
assert.deepStrictEqual(cli.breakInfo, { filename: script, line: 1 });
|
|
|
|
await cli.stepCommand('c');
|
|
|
|
assert.deepStrictEqual(cli.breakInfo, { filename: script, line: 2 });
|
|
|
|
await cli.stepCommand('c');
|
|
|
|
assert.deepStrictEqual(cli.breakInfo, { filename: script, line: 3 });
|
|
|
|
await cli.command('breakpoints');
|
|
|
|
const msg = `SCRIPT: ${script}, OUTPUT: ${cli.output}`;
|
|
|
|
assert.ok(cli.output.includes(`#0 ${script}:2`), msg);
|
|
|
|
assert.ok(cli.output.includes(`#1 ${script}:3`), msg);
|
|
|
|
} finally {
|
|
|
|
await cli.quit();
|
2021-04-09 06:55:45 +00:00
|
|
|
}
|
2022-09-27 16:52:30 +00:00
|
|
|
};
|
2021-04-09 06:55:45 +00:00
|
|
|
|
2022-09-27 16:52:30 +00:00
|
|
|
runTest();
|