node/test/parallel/test-http-zero-length-write.js
Brian White 2bc7841d0f
test: use random ports where possible
This helps to prevent issues where a failed test can keep a bound
socket open long enough to cause other tests to fail with EADDRINUSE
because the same port number is used.

PR-URL: https://github.com/nodejs/node/pull/7045
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2016-06-10 22:30:55 -04:00

74 lines
1.5 KiB
JavaScript

'use strict';
require('../common');
var assert = require('assert');
var http = require('http');
var Stream = require('stream');
function getSrc() {
// An old-style readable stream.
// The Readable class prevents this behavior.
var src = new Stream();
// start out paused, just so we don't miss anything yet.
var paused = false;
src.pause = function() {
paused = true;
};
src.resume = function() {
paused = false;
};
var chunks = [ '', 'asdf', '', 'foo', '', 'bar', '' ];
var interval = setInterval(function() {
if (paused)
return;
var chunk = chunks.shift();
if (chunk !== undefined) {
src.emit('data', chunk);
} else {
src.emit('end');
clearInterval(interval);
}
}, 1);
return src;
}
var expect = 'asdffoobar';
var server = http.createServer(function(req, res) {
var actual = '';
req.setEncoding('utf8');
req.on('data', function(c) {
actual += c;
});
req.on('end', function() {
assert.equal(actual, expect);
getSrc().pipe(res);
});
server.close();
});
server.listen(0, function() {
var req = http.request({ port: this.address().port, method: 'POST' });
var actual = '';
req.on('response', function(res) {
res.setEncoding('utf8');
res.on('data', function(c) {
actual += c;
});
res.on('end', function() {
assert.equal(actual, expect);
});
});
getSrc().pipe(req);
});
process.on('exit', function(c) {
if (!c) console.log('ok');
});