-
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.
http: add test for incomingmessage destroy
Test uncaught exceptions when destroying IncomingMessage. PR-URL: #33035 Refs: #30625 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
1 parent
a6bf74e
commit 8154e47
Showing
3 changed files
with
55 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const { createServer, get } = require('http'); | ||
const assert = require('assert'); | ||
|
||
const server = createServer(common.mustCall((req, res) => { | ||
res.writeHead(200); | ||
res.write('Part of res.'); | ||
})); | ||
|
||
function onUncaught(error) { | ||
assert.strictEqual(error.message, 'Destroy test'); | ||
server.close(); | ||
} | ||
|
||
process.on('uncaughtException', common.mustCall(onUncaught)); | ||
|
||
server.listen(0, () => { | ||
get({ | ||
port: server.address().port | ||
}, common.mustCall((res) => { | ||
res.destroy(new Error('Destroy test')); | ||
})); | ||
}); |
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,25 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const { createServer, get } = require('http'); | ||
const assert = require('assert'); | ||
|
||
const server = createServer(common.mustCall((req, res) => { | ||
req.destroy(new Error('Destroy test')); | ||
})); | ||
|
||
function onUncaught(error) {} | ||
|
||
process.on('uncaughtException', common.mustNotCall(onUncaught)); | ||
|
||
server.listen(0, common.mustCall(() => { | ||
get({ | ||
port: server.address().port | ||
}, (res) => { | ||
res.resume(); | ||
}).on('error', (error) => { | ||
assert.strictEqual(error.message, 'socket hang up'); | ||
assert.strictEqual(error.code, 'ECONNRESET'); | ||
server.close(); | ||
}); | ||
})); |