-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: refactor http-end-throw-socket-handling
Remove timer to avoid the test timing out occasionally. PR-URL: #5676 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
- Loading branch information
1 parent
82c2996
commit 8d1d3bb
Showing
1 changed file
with
16 additions
and
24 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 |
---|---|---|
@@ -1,47 +1,39 @@ | ||
'use strict'; | ||
var common = require('../common'); | ||
var assert = require('assert'); | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
// Make sure that throwing in 'end' handler doesn't lock | ||
// up the socket forever. | ||
// | ||
// This is NOT a good way to handle errors in general, but all | ||
// the same, we should not be so brittle and easily broken. | ||
|
||
var http = require('http'); | ||
const http = require('http'); | ||
|
||
var n = 0; | ||
var server = http.createServer(function(req, res) { | ||
let n = 0; | ||
const server = http.createServer((req, res) => { | ||
if (++n === 10) server.close(); | ||
res.end('ok'); | ||
}); | ||
|
||
server.listen(common.PORT, function() { | ||
for (var i = 0; i < 10; i++) { | ||
var options = { port: common.PORT }; | ||
|
||
var req = http.request(options, function(res) { | ||
server.listen(common.PORT, common.mustCall(() => { | ||
for (let i = 0; i < 10; i++) { | ||
const options = { port: common.PORT }; | ||
const req = http.request(options, (res) => { | ||
res.resume(); | ||
res.on('end', function() { | ||
res.on('end', common.mustCall(() => { | ||
throw new Error('gleep glorp'); | ||
}); | ||
})); | ||
}); | ||
req.end(); | ||
} | ||
}); | ||
})); | ||
|
||
setTimeout(function() { | ||
process.removeListener('uncaughtException', catcher); | ||
throw new Error('Taking too long!'); | ||
}, common.platformTimeout(1000)).unref(); | ||
|
||
process.on('uncaughtException', catcher); | ||
var errors = 0; | ||
function catcher() { | ||
let errors = 0; | ||
process.on('uncaughtException', () => { | ||
errors++; | ||
} | ||
}); | ||
|
||
process.on('exit', function() { | ||
process.on('exit', () => { | ||
assert.equal(errors, 10); | ||
console.log('ok'); | ||
}); |