0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/test/parallel/test-http-server-stale-close.js

32 lines
726 B
JavaScript
Raw Normal View History

'use strict';
var common = require('../common');
var http = require('http');
var util = require('util');
var fork = require('child_process').fork;
if (process.env.NODE_TEST_FORK) {
var req = http.request({
headers: {'Content-Length': '42'},
method: 'POST',
host: '127.0.0.1',
port: common.PORT,
}, process.exit);
req.write('BAM');
req.end();
}
else {
var server = http.createServer(function(req, res) {
res.writeHead(200, {'Content-Length': '42'});
req.pipe(res);
req.on('close', function() {
server.close();
res.end();
});
});
server.listen(common.PORT, function() {
fork(__filename, {
env: util._extend(process.env, {NODE_TEST_FORK: '1'})
});
});
}