mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
baa0ffdab3
* Move shared code into common * Favor use of strictEqual * Add some missing common.mustCalls * Other general cleanup PR-URL: https://github.com/nodejs/node/pull/8261 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
29 lines
700 B
JavaScript
29 lines
700 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
const net = require('net');
|
|
|
|
if (common.isWindows) {
|
|
common.skip('not reliable on Windows.');
|
|
return;
|
|
}
|
|
|
|
if (process.getuid() === 0) {
|
|
common.skip('Test is not supposed to be run as root.');
|
|
return;
|
|
}
|
|
|
|
if (cluster.isMaster) {
|
|
cluster.fork().on('exit', common.mustCall((exitCode) => {
|
|
assert.strictEqual(exitCode, 0);
|
|
}));
|
|
} else {
|
|
var s = net.createServer(common.fail);
|
|
s.listen(42, common.fail.bind(null, 'listen should have failed'));
|
|
s.on('error', common.mustCall((err) => {
|
|
assert.strictEqual(err.code, 'EACCES');
|
|
process.disconnect();
|
|
}));
|
|
}
|