-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
350a6a8
commit 3bfee39
Showing
2 changed files
with
48 additions
and
1 deletion.
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,44 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
const net = require('net'); | ||
|
||
// This test sends an invalid character to a HTTP server and purposely | ||
// does not handle clientError (even if it sets an event handler). | ||
// | ||
// The idea is to let the server emit multiple errors on the socket, | ||
// mostly due to parsing error, and make sure they don't result | ||
// in leaking event listeners. | ||
|
||
let i = 0; | ||
let socket; | ||
|
||
process.on('warning', common.mustNotCall()); | ||
|
||
const server = http.createServer(common.mustNotCall()); | ||
|
||
server.on('clientError', common.mustCallAtLeast((err) => { | ||
assert.strictEqual(err.code, 'HPE_INVALID_METHOD'); | ||
assert.strictEqual(err.rawPacket.toString(), '*'); | ||
|
||
if (i === 20) { | ||
socket.end(); | ||
} else { | ||
socket.write('*'); | ||
i++; | ||
} | ||
}, 1)); | ||
|
||
server.listen(0, () => { | ||
socket = net.createConnection({ port: server.address().port }); | ||
|
||
socket.on('connect', () => { | ||
socket.write('*'); | ||
}); | ||
|
||
socket.on('close', () => { | ||
server.close(); | ||
}); | ||
}); |