mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
193468667b
This rule enforces new lines around variable declarations. It is configured to spot only variables that are initialized. PR-URL: https://github.com/nodejs/node/pull/11462 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
71 lines
1.5 KiB
JavaScript
71 lines
1.5 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const N = 200;
|
|
let recv = '';
|
|
let chars_recved = 0;
|
|
|
|
const server = net.createServer(function(connection) {
|
|
function write(j) {
|
|
if (j >= N) {
|
|
connection.end();
|
|
return;
|
|
}
|
|
setTimeout(function() {
|
|
connection.write('C');
|
|
write(j + 1);
|
|
}, 10);
|
|
}
|
|
write(0);
|
|
});
|
|
|
|
server.on('listening', function() {
|
|
const client = net.createConnection(common.PORT);
|
|
client.setEncoding('ascii');
|
|
client.on('data', function(d) {
|
|
console.log(d);
|
|
recv += d;
|
|
});
|
|
|
|
setTimeout(function() {
|
|
chars_recved = recv.length;
|
|
console.log('pause at: ' + chars_recved);
|
|
assert.strictEqual(true, chars_recved > 1);
|
|
client.pause();
|
|
setTimeout(function() {
|
|
console.log('resume at: ' + chars_recved);
|
|
assert.strictEqual(chars_recved, recv.length);
|
|
client.resume();
|
|
|
|
setTimeout(function() {
|
|
chars_recved = recv.length;
|
|
console.log('pause at: ' + chars_recved);
|
|
client.pause();
|
|
|
|
setTimeout(function() {
|
|
console.log('resume at: ' + chars_recved);
|
|
assert.strictEqual(chars_recved, recv.length);
|
|
client.resume();
|
|
|
|
}, 500);
|
|
|
|
}, 500);
|
|
|
|
}, 500);
|
|
|
|
}, 500);
|
|
|
|
client.on('end', function() {
|
|
server.close();
|
|
client.end();
|
|
});
|
|
});
|
|
server.listen(common.PORT);
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(N, recv.length);
|
|
console.error('Exit');
|
|
});
|