mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.5 KiB
72 lines
1.5 KiB
var common = 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(common.PORT, function() {
|
|
var req = http.request({ port: common.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');
|
|
});
|
|
|