mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
263222da49
A handful of tests in `test/pummel` were failing due to undefined variables. The tests in pummel are not run in CI or otherwise exercised regularly so these failures can go unnoticed for a long time. PR-URL: https://github.com/nodejs/node/pull/6012 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const N = 1024 * 1024;
|
|
const part_N = N / 3;
|
|
var chars_recved = 0;
|
|
var npauses = 0;
|
|
|
|
console.log('build big string');
|
|
const body = 'C'.repeat(N);
|
|
|
|
console.log('start server on port ' + common.PORT);
|
|
|
|
var server = net.createServer(function(connection) {
|
|
connection.write(body.slice(0, part_N));
|
|
connection.write(body.slice(part_N, 2 * part_N));
|
|
assert.equal(false, connection.write(body.slice(2 * part_N, N)));
|
|
console.log('bufferSize: ' + connection.bufferSize, 'expecting', N);
|
|
assert.ok(0 <= connection.bufferSize &&
|
|
connection._writableState.length <= N);
|
|
connection.end();
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var paused = false;
|
|
var client = net.createConnection(common.PORT);
|
|
client.setEncoding('ascii');
|
|
client.on('data', function(d) {
|
|
chars_recved += d.length;
|
|
console.log('got ' + chars_recved);
|
|
if (!paused) {
|
|
client.pause();
|
|
npauses += 1;
|
|
paused = true;
|
|
console.log('pause');
|
|
var x = chars_recved;
|
|
setTimeout(function() {
|
|
assert.equal(chars_recved, x);
|
|
client.resume();
|
|
console.log('resume');
|
|
paused = false;
|
|
}, 100);
|
|
}
|
|
});
|
|
|
|
client.on('end', function() {
|
|
server.close();
|
|
client.end();
|
|
});
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(N, chars_recved);
|
|
assert.equal(true, npauses > 2);
|
|
});
|