mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3d2aef3979
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
74 lines
1.5 KiB
JavaScript
74 lines
1.5 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
const http = require('http');
|
|
|
|
const Stream = require('stream');
|
|
|
|
function getSrc() {
|
|
// An old-style readable stream.
|
|
// The Readable class prevents this behavior.
|
|
const src = new Stream();
|
|
|
|
// start out paused, just so we don't miss anything yet.
|
|
let paused = false;
|
|
src.pause = function() {
|
|
paused = true;
|
|
};
|
|
src.resume = function() {
|
|
paused = false;
|
|
};
|
|
|
|
const chunks = [ '', 'asdf', '', 'foo', '', 'bar', '' ];
|
|
const interval = setInterval(function() {
|
|
if (paused)
|
|
return;
|
|
|
|
const chunk = chunks.shift();
|
|
if (chunk !== undefined) {
|
|
src.emit('data', chunk);
|
|
} else {
|
|
src.emit('end');
|
|
clearInterval(interval);
|
|
}
|
|
}, 1);
|
|
|
|
return src;
|
|
}
|
|
|
|
|
|
const expect = 'asdffoobar';
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
let actual = '';
|
|
req.setEncoding('utf8');
|
|
req.on('data', function(c) {
|
|
actual += c;
|
|
});
|
|
req.on('end', function() {
|
|
assert.strictEqual(actual, expect);
|
|
getSrc().pipe(res);
|
|
});
|
|
server.close();
|
|
});
|
|
|
|
server.listen(0, function() {
|
|
const req = http.request({ port: this.address().port, method: 'POST' });
|
|
let actual = '';
|
|
req.on('response', function(res) {
|
|
res.setEncoding('utf8');
|
|
res.on('data', function(c) {
|
|
actual += c;
|
|
});
|
|
res.on('end', function() {
|
|
assert.strictEqual(actual, expect);
|
|
});
|
|
});
|
|
getSrc().pipe(req);
|
|
});
|
|
|
|
process.on('exit', function(c) {
|
|
if (!c) console.log('ok');
|
|
});
|