This change removes `common.noop` from the Node.js internal testing
common module.
Over the last few weeks, I've grown to dislike the `common.noop`
abstraction.
First, new (and experienced) contributors are unaware of it and so it
results in a large number of low-value nits on PRs. It also increases
the number of things newcomers and infrequent contributors have to be
aware of to be effective on the project.
Second, it is confusing. Is it a singleton/property or a getter? Which
should be expected? This can lead to subtle and hard-to-find bugs. (To
my knowledge, none have landed on master. But I also think it's only a
matter of time.)
Third, the abstraction is low-value in my opinion. What does it really
get us? A case could me made that it is without value at all.
Lastly, and this is minor, but the abstraction is wordier than not using
the abstraction. `common.noop` doesn't save anything over `() => {}`.
So, I propose removing it.
PR-URL: https://github.com/nodejs/node/pull/12822
Backport-PR-URL: https://github.com/nodejs/node/pull/14174
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Refael Ackermann <refack@gmail.com>
43 lines
1 KiB
JavaScript
43 lines
1 KiB
JavaScript
'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();
|
|
});
|
|
});
|