mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 06:38:13 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
'use strict';
|
|
var assert = require('assert');
|
|
var cluster = require('cluster');
|
|
var net = require('net');
|
|
var common = require('../common');
|
|
|
|
var destroyed;
|
|
var success;
|
|
var worker;
|
|
var server;
|
|
|
|
// workers do not exit on disconnect, they exit under normal node rules: when
|
|
// they have nothing keeping their loop alive, like an active connection
|
|
//
|
|
// test this by:
|
|
//
|
|
// 1 creating a server, so worker can make a connection to something
|
|
// 2 disconnecting worker
|
|
// 3 wait to confirm it did not exit
|
|
// 4 destroy connection
|
|
// 5 confirm it does exit
|
|
if (cluster.isMaster) {
|
|
server = net.createServer(function(conn) {
|
|
server.close();
|
|
worker.disconnect();
|
|
worker.once('disconnect', function() {
|
|
setTimeout(function() {
|
|
conn.destroy();
|
|
destroyed = true;
|
|
}, 1000);
|
|
}).once('exit', function() {
|
|
// worker should not exit while it has a connection
|
|
assert(destroyed, 'worker exited before connection destroyed');
|
|
success = true;
|
|
});
|
|
|
|
}).listen(common.PORT, function() {
|
|
var port = this.address().port;
|
|
|
|
worker = cluster.fork()
|
|
.on('online', function() {
|
|
this.send({port: port});
|
|
});
|
|
});
|
|
process.on('exit', function() {
|
|
assert(success);
|
|
});
|
|
} else {
|
|
process.on('message', function(msg) {
|
|
// we shouldn't exit, not while a network connection exists
|
|
net.connect(msg.port);
|
|
});
|
|
}
|