mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
Added regression test for issue #44
This commit is contained in:
parent
f379b77735
commit
a3631a383b
16
test/mjsunit/test-http-eof-on-connect.js
Normal file
16
test/mjsunit/test-http-eof-on-connect.js
Normal file
@ -0,0 +1,16 @@
|
||||
tcp = require("tcp");
|
||||
http = require("http");
|
||||
|
||||
// This is a regression test for http://github.com/ry/node/issues/#issue/44
|
||||
// It is separate from test-http-malformed-request.js because it is only
|
||||
// reproduceable on the first packet on the first connection to a server.
|
||||
port = 9999;
|
||||
|
||||
server = http.createServer(function (req, res) {});
|
||||
server.listen(port);
|
||||
|
||||
tcp.createConnection(port).addListener("connect", function () {
|
||||
this.close();
|
||||
}).addListener("close", function () {
|
||||
server.close();
|
||||
});
|
Loading…
Reference in New Issue
Block a user