summaryrefslogtreecommitdiff
path: root/deps/node/deps/node-inspect/test/cli/exec.test.js
blob: acfd6e34abb279b52bebac1e12825e922036aab4 (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
'use strict';
const { test } = require('tap');

const startCLI = require('./start-cli');

test('examples/alive.js', (t) => {
  const cli = startCLI(['examples/alive.js']);

  function onFatal(error) {
    cli.quit();
    throw error;
  }

  return cli.waitForInitialBreak()
    .then(() => cli.waitForPrompt())
    .then(() => cli.command('exec [typeof heartbeat, typeof process.exit]'))
    .then(() => {
      t.match(cli.output, '[ \'function\', \'function\' ]', 'works w/o paren');
    })
    .then(() => cli.command('repl'))
    .then(() => {
      t.match(
        cli.output,
        'Press Ctrl + C to leave debug repl\n> ',
        'shows hint for how to leave repl');
      t.notMatch(cli.output, 'debug>', 'changes the repl style');
    })
    .then(() => cli.command('[typeof heartbeat, typeof process.exit]'))
    .then(() => cli.waitFor(/function/))
    .then(() => cli.waitForPrompt())
    .then(() => {
      t.match(
        cli.output,
        '[ \'function\', \'function\' ]', 'can evaluate in the repl');
      t.match(cli.output, /> $/);
    })
    .then(() => cli.ctrlC())
    .then(() => cli.waitFor(/debug> $/))
    .then(() => cli.command('exec("[typeof heartbeat, typeof process.exit]")'))
    .then(() => {
      t.match(cli.output, '[ \'function\', \'function\' ]', 'works w/ paren');
    })
    .then(() => cli.command('cont'))
    .then(() => cli.command('exec [typeof heartbeat, typeof process.exit]'))
    .then(() => {
      t.match(
        cli.output,
        '[ \'undefined\', \'function\' ]',
        'non-paused exec can see global but not module-scope values');
    })
    .then(() => cli.quit())
    .then(null, onFatal);
});

test('exec .scope', (t) => {
  const cli = startCLI(['examples/backtrace.js']);

  function onFatal(error) {
    cli.quit();
    throw error;
  }

  return cli.waitForInitialBreak()
    .then(() => cli.waitForPrompt())
    .then(() => cli.stepCommand('c'))
    .then(() => cli.command('exec .scope'))
    .then(() => {
      t.match(
        cli.output,
        '\'moduleScoped\'', 'displays closure from module body');
      t.match(cli.output, '\'a\'', 'displays local / function arg');
      t.match(cli.output, '\'l1\'', 'displays local scope');
      t.notMatch(cli.output, '\'encodeURIComponent\'', 'omits global scope');
    })
    .then(() => cli.quit())
    .then(null, onFatal);
});