This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/v10.x' into v10.x
- Loading branch information
Showing
6 changed files
with
77 additions
and
11 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
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
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
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
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,37 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
common.skipIfInspectorDisabled(); | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
||
const assert = require('assert'); | ||
const https = require('https'); | ||
const { spawnSync } = require('child_process'); | ||
const child = spawnSync(process.execPath, ['--inspect', '-e', '""']); | ||
const stderr = child.stderr.toString(); | ||
const helpUrl = stderr.match(/For help, see: (.+)/)[1]; | ||
|
||
function check(url, cb) { | ||
https.get(url, common.mustCall((res) => { | ||
assert(res.statusCode >= 200 && res.statusCode < 400); | ||
|
||
if (res.statusCode >= 300) | ||
return check(res.headers.location, cb); | ||
|
||
let result = ''; | ||
|
||
res.setEncoding('utf8'); | ||
res.on('data', (data) => { | ||
result += data; | ||
}); | ||
|
||
res.on('end', common.mustCall(() => { | ||
assert(/>Debugging Guide</.test(result)); | ||
cb(); | ||
})); | ||
})).on('error', common.mustNotCall); | ||
} | ||
|
||
check(helpUrl, common.mustCall()); |
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