summaryrefslogtreecommitdiff
path: root/test/parallel/test-debugger-break.js
blob: 65b4355cfe7bc25464626cca6f1c3b0de1dd9a45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
'use strict';
const common = require('../common');

common.skipIfInspectorDisabled();

const fixtures = require('../common/fixtures');
const startCLI = require('../common/debugger');

const assert = require('assert');
const path = require('path');

const scriptFullPath = fixtures.path('debugger', 'break.js');
const script = path.relative(process.cwd(), scriptFullPath);
const cli = startCLI(['--port=0', script]);

(async () => {
  await cli.waitForInitialBreak();
  await cli.waitForPrompt();
  assert.deepStrictEqual(
    cli.breakInfo,
    { filename: script, line: 1 },
  );
  assert.match(
    cli.output,
    /> 1 (?:\(function \([^)]+\) \{ )?const x = 10;/,
    'shows the source and marks the current line');

  await cli.stepCommand('n');
  assert.ok(
    cli.output.includes(`break in ${script}:2`),
    'pauses in next line of the script');
  assert.match(
    cli.output,
    /> 2 let name = 'World';/,
    'marks the 2nd line');

  await cli.stepCommand('next');
  assert.ok(
    cli.output.includes(`break in ${script}:3`),
    'pauses in next line of the script');
  assert.match(
    cli.output,
    /> 3 name = 'Robin';/,
    'marks the 3nd line');

  await cli.stepCommand('cont');
  assert.ok(
    cli.output.includes(`break in ${script}:10`),
    'pauses on the next breakpoint');
  assert.match(
    cli.output,
    />10 debugger;/,
    'marks the debugger line');

  await cli.command('sb("break.js", 6)');
  assert.doesNotMatch(cli.output, /Could not resolve breakpoint/);

  await cli.command('sb("otherFunction()")');
  await cli.command('sb(16)');
  assert.doesNotMatch(cli.output, /Could not resolve breakpoint/);

  await cli.command('breakpoints');
  assert.ok(cli.output.includes(`#0 ${script}:6`));
  assert.ok(cli.output.includes(`#1 ${script}:16`));

  await cli.command('list()');
  assert.match(
    cli.output,
    />10 debugger;/,
    'prints and marks current line'
  );
  assert.deepStrictEqual(
    cli.parseSourceLines(),
    [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
  );

  await cli.command('list(2)');
  assert.match(
    cli.output,
    />10 debugger;/,
    'prints and marks current line'
  );
  assert.deepStrictEqual(
    cli.parseSourceLines(),
    [8, 9, 10, 11, 12],
  );

  await cli.stepCommand('s');
  await cli.stepCommand('');
  assert.match(
    cli.output,
    /break in node:timers/,
    'entered timers.js');

  await cli.stepCommand('cont');
  assert.ok(
    cli.output.includes(`break in ${script}:16`),
    'found breakpoint we set above w/ line number only');

  await cli.stepCommand('cont');
  assert.ok(
    cli.output.includes(`break in ${script}:6`),
    'found breakpoint we set above w/ line number & script');

  await cli.stepCommand('');
  assert.ok(
    cli.output.includes(`debugCommand in ${script}:14`),
    'found function breakpoint we set above');
})().finally(() => cli.quit())
  .then(common.mustCall());