-
Notifications
You must be signed in to change notification settings - Fork 29.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add test for debugger restart message issue
Running "restart" in the debugger confusingly prints an out-of-date "Debugger listening on..." message before printing a second updated one. Refs: #39272
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
'use strict'; | ||
|
||
// Refs: https://github.com/nodejs/node/issues/39272 | ||
|
||
require('../common'); | ||
|
||
// Will need to uncomment this (and assign `common` above) when moved out of | ||
// known_issues common.skipIfInspectorDisabled(); | ||
|
||
// This can be reduced to 2 or even 1 (and the loop removed) once the debugger | ||
// is fixed. It's set to 32 just to make sure that the error is tripped reliably | ||
// in CI. | ||
const RESTARTS = 32; | ||
|
||
const fixtures = require('../common/fixtures'); | ||
const startCLI = require('../common/debugger'); | ||
|
||
const assert = require('assert'); | ||
|
||
// Using `restart` should result in only one "Connect/For help" message. | ||
{ | ||
const script = fixtures.path('debugger', 'three-lines.js'); | ||
const cli = startCLI([script]); | ||
|
||
function onFatal(error) { | ||
cli.quit(); | ||
throw error; | ||
} | ||
|
||
const listeningRegExp = /Debugger listening on/g; | ||
|
||
cli.waitForInitialBreak() | ||
.then(() => cli.waitForPrompt()) | ||
.then(() => { | ||
assert.strictEqual(cli.output.match(listeningRegExp).length, 1); | ||
}) | ||
.then(async () => { | ||
for (let i = 0; i < RESTARTS; i++) { | ||
await cli.stepCommand('restart'); | ||
assert.strictEqual(cli.output.match(listeningRegExp).length, 1); | ||
} | ||
}) | ||
.then(() => cli.quit()) | ||
.then(null, onFatal); | ||
} |