test: delete test/parallel/test-regress-GH-4948
PR-URL: https://github.com/nodejs/node/pull/19279 Refs: https://github.com/nodejs/node/pull/19275#discussion_r173647620 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
8ed0f3409a
commit
52e869bee8
@ -1,43 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
// https://github.com/joyent/node/issues/4948
|
|
||||||
|
|
||||||
require('../common');
|
|
||||||
const http = require('http');
|
|
||||||
|
|
||||||
let reqCount = 0;
|
|
||||||
const server = http.createServer(function(serverReq, serverRes) {
|
|
||||||
if (reqCount) {
|
|
||||||
serverRes.end();
|
|
||||||
server.close();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
reqCount = 1;
|
|
||||||
|
|
||||||
|
|
||||||
// normally the use case would be to call an external site
|
|
||||||
// does not require connecting locally or to itself to fail
|
|
||||||
const r = http.request({ hostname: 'localhost',
|
|
||||||
port: this.address().port }, function(res) {
|
|
||||||
// required, just needs to be in the client response somewhere
|
|
||||||
serverRes.end();
|
|
||||||
|
|
||||||
// required for test to fail
|
|
||||||
res.on('data', () => {});
|
|
||||||
|
|
||||||
});
|
|
||||||
r.on('error', () => {});
|
|
||||||
r.end();
|
|
||||||
|
|
||||||
serverRes.write('some data');
|
|
||||||
}).listen(0, function() {
|
|
||||||
// simulate a client request that closes early
|
|
||||||
const net = require('net');
|
|
||||||
|
|
||||||
const sock = new net.Socket();
|
|
||||||
sock.connect(this.address().port, 'localhost');
|
|
||||||
|
|
||||||
sock.on('connect', function() {
|
|
||||||
sock.write('GET / HTTP/1.1\r\n\r\n');
|
|
||||||
sock.end();
|
|
||||||
});
|
|
||||||
});
|
|
Loading…
x
Reference in New Issue
Block a user