mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 06:08:50 +02:00

In the tests, we use "process.platform === 'win32'" in some places. This patch replaces them with the "common.isWindows" for consistency. PR-URL: https://github.com/nodejs/io.js/pull/2269 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
45 lines
1 KiB
JavaScript
45 lines
1 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
const http = require('http');
|
|
|
|
// It is not possible to send pipe handles over the IPC pipe on Windows.
|
|
if (common.isWindows) {
|
|
process.exit(0);
|
|
}
|
|
|
|
if (cluster.isMaster) {
|
|
common.refreshTmpDir();
|
|
var ok = false;
|
|
var worker = cluster.fork();
|
|
worker.on('message', function(msg) {
|
|
assert.equal(msg, 'DONE');
|
|
ok = true;
|
|
});
|
|
worker.on('exit', function() {
|
|
process.exit();
|
|
});
|
|
process.on('exit', function() {
|
|
assert(ok);
|
|
});
|
|
return;
|
|
}
|
|
|
|
http.createServer(function(req, res) {
|
|
assert.equal(req.connection.remoteAddress, undefined);
|
|
assert.equal(req.connection.localAddress, undefined); // TODO common.PIPE?
|
|
res.writeHead(200);
|
|
res.end('OK');
|
|
}).listen(common.PIPE, function() {
|
|
var self = this;
|
|
http.get({ socketPath: common.PIPE, path: '/' }, function(res) {
|
|
res.resume();
|
|
res.on('end', function(err) {
|
|
if (err) throw err;
|
|
process.send('DONE');
|
|
process.exit();
|
|
});
|
|
});
|
|
});
|