-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: fix test-debug-signal-cluster.js flakyness #8568
Closed
Closed
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
const common = require('../common'); | ||
const assert = require('assert'); | ||
const spawn = require('child_process').spawn; | ||
const os = require('os'); | ||
const path = require('path'); | ||
|
||
const port = common.PORT; | ||
|
@@ -11,13 +12,24 @@ const args = [`--debug-port=${port}`, serverPath]; | |
const options = { stdio: ['inherit', 'inherit', 'pipe', 'ipc'] }; | ||
const child = spawn(process.execPath, args, options); | ||
|
||
const outputLines = []; | ||
var waitingForDebuggers = false; | ||
var expectedContent = [ | ||
'Starting debugger agent.', | ||
'Debugger listening on 127.0.0.1:' + (port + 0), | ||
'Starting debugger agent.', | ||
'Debugger listening on 127.0.0.1:' + (port + 1), | ||
'Starting debugger agent.', | ||
'Debugger listening on 127.0.0.1:' + (port + 2), | ||
].join(os.EOL); | ||
expectedContent += os.EOL; // the last line also contains an EOL character | ||
|
||
var debuggerAgentsOutput = ''; | ||
var debuggerAgentsStarted = false; | ||
|
||
var pids; | ||
|
||
child.stderr.on('data', function(data) { | ||
const lines = data.toString().replace(/\r/g, '').trim().split('\n'); | ||
const childStderrOutputString = data.toString(); | ||
const lines = childStderrOutputString.replace(/\r/g, '').trim().split('\n'); | ||
|
||
lines.forEach(function(line) { | ||
console.log('> ' + line); | ||
|
@@ -30,24 +42,26 @@ child.stderr.on('data', function(data) { | |
pids = msg.pids; | ||
console.error('got pids %j', pids); | ||
|
||
waitingForDebuggers = true; | ||
process._debugProcess(child.pid); | ||
debuggerAgentsStarted = true; | ||
}); | ||
|
||
child.send({ | ||
type: 'getpids' | ||
}); | ||
} else if (waitingForDebuggers) { | ||
outputLines.push(line); | ||
} | ||
|
||
}); | ||
if (outputLines.length === expectedLines.length) | ||
onNoMoreLines(); | ||
|
||
if (debuggerAgentsStarted) { | ||
debuggerAgentsOutput += childStderrOutputString; | ||
if (debuggerAgentsOutput.length === expectedContent.length) { | ||
onNoMoreDebuggerAgentsOutput(); | ||
} | ||
} | ||
}); | ||
|
||
function onNoMoreLines() { | ||
assertOutputLines(); | ||
function onNoMoreDebuggerAgentsOutput() { | ||
assertDebuggerAgentsOutput(); | ||
process.exit(); | ||
} | ||
|
||
|
@@ -63,21 +77,19 @@ process.on('exit', function onExit() { | |
}); | ||
}); | ||
|
||
const expectedLines = [ | ||
'Starting debugger agent.', | ||
'Debugger listening on 127.0.0.1:' + (port + 0), | ||
'Starting debugger agent.', | ||
'Debugger listening on 127.0.0.1:' + (port + 1), | ||
'Starting debugger agent.', | ||
'Debugger listening on 127.0.0.1:' + (port + 2), | ||
]; | ||
|
||
function assertOutputLines() { | ||
// Do not assume any particular order of output messages, | ||
// since workers can take different amout of time to | ||
// start up | ||
outputLines.sort(); | ||
expectedLines.sort(); | ||
function assertDebuggerAgentsOutput() { | ||
// Workers can take different amout of time to start up, and child processes' | ||
// output may be interleaved arbitrarily. Moreover, child processes' output | ||
// may be written using an arbitrary number of system calls, and no assumption | ||
// on buffering or atomicity of output should be made. Thus, we process the | ||
// output of all chid processes' debugger agents character by character, and | ||
// remove each character from the set of expected characters. Once all the | ||
// output from all debugger agents has been processed, we consider that we got | ||
// the content we expected if there's no character left in the initial | ||
// expected content. | ||
debuggerAgentsOutput.split('').forEach(function gotChar(char) { | ||
expectedContent = expectedContent.replace(char, ''); | ||
}); | ||
|
||
assert.deepStrictEqual(outputLines, expectedLines); | ||
assert.equal(expectedContent, ''); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch, thanks! |
||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: spotted a comment typo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, thanks!