mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
4f2e372716
Export a new common.noop no-operation function for general use. Allow using common.mustCall() without a fn argument to simplify test cases. Replace various non-op functions throughout tests with common.noop PR-URL: https://github.com/nodejs/node/pull/12027 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
'use strict';
|
|
// https://github.com/joyent/node/issues/4948
|
|
|
|
const common = 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', common.noop);
|
|
|
|
});
|
|
r.on('error', common.noop);
|
|
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();
|
|
});
|
|
});
|