node/deps/node-inspect/test/cli/preserve-breaks.test.js
Jan Krems a7e4b029da
deps: Add node-inspect 1.10.6
This updates the bundled `node-inspect` to 1.10.6.

Highlights:

* `node --debug-port=1234 inspect` respects the custom port.
* Test stability improvements on various platforms.

Compare: https://github.com/nodejs/node-inspect/compare/v1.10.4...v1.10.6

PR-URL: https://github.com/nodejs/node/pull/11869
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2017-03-20 11:30:42 -04:00

65 lines
2 KiB
JavaScript

'use strict';
const Path = require('path');
const { test } = require('tap');
const startCLI = require('./start-cli');
test('run after quit / restart', (t) => {
const script = Path.join('examples', 'three-lines.js');
const cli = startCLI([script]);
function onFatal(error) {
cli.quit();
throw error;
}
return cli.waitFor(/break/)
.then(() => cli.waitForPrompt())
.then(() => cli.command('breakpoints'))
.then(() => {
t.match(cli.output, 'No breakpoints yet');
})
.then(() => cli.command('sb(2)'))
.then(() => cli.command('sb(3)'))
.then(() => cli.command('breakpoints'))
.then(() => {
t.match(cli.output, `#0 ${script}:2`);
t.match(cli.output, `#1 ${script}:3`);
})
.then(() => cli.stepCommand('c')) // hit line 2
.then(() => cli.stepCommand('c')) // hit line 3
.then(() => {
t.match(cli.output, `break in ${script}:3`);
})
.then(() => cli.command('restart'))
.then(() => cli.waitFor([/break in examples/, /breakpoints restored/]))
.then(() => cli.waitForPrompt())
.then(() => {
t.match(cli.output, `break in ${script}:1`);
})
.then(() => cli.stepCommand('c'))
.then(() => {
t.match(cli.output, `break in ${script}:2`);
})
.then(() => cli.stepCommand('c'))
.then(() => {
t.match(cli.output, `break in ${script}:3`);
})
.then(() => cli.command('breakpoints'))
.then(() => {
if (process.platform === 'aix') {
// TODO: There is a known issue on AIX where the breakpoints aren't
// properly resolved yet when we reach this point.
// Eventually that should be figured out but for now we don't want
// to fail builds because of it.
t.match(cli.output, /#0 [^\n]+three-lines\.js\$?:2/);
t.match(cli.output, /#1 [^\n]+three-lines\.js\$?:3/);
} else {
t.match(cli.output, `#0 ${script}:2`);
t.match(cli.output, `#1 ${script}:3`);
}
})
.then(() => cli.quit())
.then(null, onFatal);
});