When node began using the OneByte API (f150d56) it also switched to officially supporting ISO-8859-1. Though at the time no new encoding string was introduced. Introduce the new encoding string 'latin1' to be more explicit. The previous 'binary' and documented as an alias to 'latin1'. While many tests have switched to use 'latin1', there are still plenty that do both 'binary' and 'latin1' checks side-by-side to ensure there is no regression. PR-URL: https://github.com/nodejs/node/pull/7111 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
68 lines
1.4 KiB
JavaScript
68 lines
1.4 KiB
JavaScript
/* eslint-disable strict */
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var binaryString = '';
|
|
for (var i = 255; i >= 0; i--) {
|
|
var s = '\'\\' + i.toString(8) + '\'';
|
|
var S = eval(s);
|
|
assert.ok(S.charCodeAt(0) == i);
|
|
assert.ok(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(common.PORT);
|
|
|
|
var recv = '';
|
|
|
|
echoServer.on('listening', function() {
|
|
var j = 0;
|
|
var c = net.createConnection({
|
|
port: common.PORT
|
|
});
|
|
|
|
c.setEncoding('latin1');
|
|
c.on('data', function(chunk) {
|
|
var 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);
|
|
|
|
var a = recv.split('');
|
|
|
|
var first = a.slice(0, 256).reverse().join('');
|
|
|
|
var second = a.slice(256, 2 * 256).join('');
|
|
|
|
assert.equal(first, second);
|
|
});
|