node/test/parallel/test-http-zero-length-write.js
Roman Reiss f29762f4dd test: enable linting for tests
Enable linting for the test directory. A number of changes was made so
all tests conform the current rules used by lib and src directories. The
only exception for tests is that unreachable (dead) code is allowed.

test-fs-non-number-arguments-throw had to be excluded from the changes
because of a weird issue on Windows CI.

PR-URL: https://github.com/nodejs/io.js/pull/1721
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-05-19 21:21:27 +02:00

74 lines
1.5 KiB
JavaScript

'use strict';
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');
});