mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 22:16:31 +00:00

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 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com>
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
const net = require('net');
|
|
|
|
let serverClosed = false;
|
|
|
|
if (cluster.isWorker) {
|
|
const server = net.createServer(function(socket) {
|
|
// Wait for any data, then close connection
|
|
socket.write('.');
|
|
socket.on('data', () => {});
|
|
}).listen(0, common.localhostIPv4);
|
|
|
|
server.once('close', function() {
|
|
serverClosed = true;
|
|
});
|
|
|
|
// Although not typical, the worker process can exit before the disconnect
|
|
// event fires. Use this to keep the process open until the event has fired.
|
|
const keepOpen = setInterval(() => {}, 9999);
|
|
|
|
// Check worker events and properties
|
|
process.once('disconnect', function() {
|
|
// disconnect should occur after socket close
|
|
assert(serverClosed);
|
|
clearInterval(keepOpen);
|
|
});
|
|
} else if (cluster.isMaster) {
|
|
// start worker
|
|
const worker = cluster.fork();
|
|
|
|
// Disconnect worker when it is ready
|
|
worker.once('listening', function(address) {
|
|
const socket = net.createConnection(address.port, common.localhostIPv4);
|
|
|
|
socket.on('connect', function() {
|
|
socket.on('data', function() {
|
|
console.log('got data from client');
|
|
// socket definitely connected to worker if we got data
|
|
worker.disconnect();
|
|
socket.end();
|
|
});
|
|
});
|
|
});
|
|
}
|