mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
759cf17228
Node todo process example with the follow test-net-binary.js changes: var --> const where applicable ==, assert.equal--> ===, assert.strictEqual for all cases PR-URL: https://github.com/nodejs/node/pull/8476 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
68 lines
1.4 KiB
JavaScript
68 lines
1.4 KiB
JavaScript
/* eslint-disable strict */
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
var binaryString = '';
|
|
for (var i = 255; i >= 0; i--) {
|
|
const s = `'\\${i.toString(8)}'`;
|
|
const S = eval(s);
|
|
assert.strictEqual(S.charCodeAt(0), i);
|
|
assert.strictEqual(S, String.fromCharCode(i));
|
|
binaryString += S;
|
|
}
|
|
|
|
// safe constructor
|
|
var echoServer = net.Server(function(connection) {
|
|
connection.setEncoding('latin1');
|
|
connection.on('data', function(chunk) {
|
|
connection.write(chunk, 'latin1');
|
|
});
|
|
connection.on('end', function() {
|
|
connection.end();
|
|
});
|
|
});
|
|
echoServer.listen(0);
|
|
|
|
var recv = '';
|
|
|
|
echoServer.on('listening', function() {
|
|
var j = 0;
|
|
const c = net.createConnection({
|
|
port: this.address().port
|
|
});
|
|
|
|
c.setEncoding('latin1');
|
|
c.on('data', function(chunk) {
|
|
const n = j + chunk.length;
|
|
while (j < n && j < 256) {
|
|
c.write(String.fromCharCode(j), 'latin1');
|
|
j++;
|
|
}
|
|
if (j === 256) {
|
|
c.end();
|
|
}
|
|
recv += chunk;
|
|
});
|
|
|
|
c.on('connect', function() {
|
|
c.write(binaryString, 'binary');
|
|
});
|
|
|
|
c.on('close', function() {
|
|
echoServer.close();
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(2 * 256, recv.length);
|
|
|
|
const a = recv.split('');
|
|
|
|
const first = a.slice(0, 256).reverse().join('');
|
|
|
|
const second = a.slice(256, 2 * 256).join('');
|
|
|
|
assert.strictEqual(first, second);
|
|
});
|