mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

common.js needs to be loaded in all tests so that there is checking for variable leaks and possibly other things. However, it does not need to be assigned to a variable if nothing in common.js is referred to elsewhere in the test. PR-URL: https://github.com/nodejs/node/pull/4408 Reviewed-By: James M Snell <jasnell@gmail.com>
26 lines
846 B
JavaScript
26 lines
846 B
JavaScript
'use strict';
|
||
require('../common');
|
||
var assert = require('assert');
|
||
|
||
// ASCII conversion in node.js simply masks off the high bits,
|
||
// it doesn't do transliteration.
|
||
assert.equal(Buffer('hérité').toString('ascii'), 'hC)ritC)');
|
||
|
||
// 71 characters, 78 bytes. The ’ character is a triple-byte sequence.
|
||
var input = 'C’est, graphiquement, la réunion d’un accent aigu ' +
|
||
'et d’un accent grave.';
|
||
|
||
var expected = 'Cb\u0000\u0019est, graphiquement, la rC)union ' +
|
||
'db\u0000\u0019un accent aigu et db\u0000\u0019un ' +
|
||
'accent grave.';
|
||
|
||
var buf = Buffer(input);
|
||
|
||
for (var i = 0; i < expected.length; ++i) {
|
||
assert.equal(buf.slice(i).toString('ascii'), expected.slice(i));
|
||
|
||
// Skip remainder of multi-byte sequence.
|
||
if (input.charCodeAt(i) > 65535) ++i;
|
||
if (input.charCodeAt(i) > 127) ++i;
|
||
}
|