mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
794 B
32 lines
794 B
9 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const path = require('path');
|
||
|
const fs = require('fs');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
if (process.platform !== 'linux') {
|
||
|
console.log('1..0 # Skipped: Test is linux specific.');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
common.refreshTmpDir();
|
||
|
const filename = '\uD83D\uDC04';
|
||
|
const root = Buffer.from(`${common.tmpDir}${path.sep}`);
|
||
|
const filebuff = Buffer.from(filename, 'ucs2');
|
||
|
const fullpath = Buffer.concat([root, filebuff]);
|
||
|
|
||
|
fs.closeSync(fs.openSync(fullpath, 'w+'));
|
||
|
|
||
|
fs.readdir(common.tmpDir, 'ucs2', (err, list) => {
|
||
|
if (err) throw err;
|
||
|
assert.equal(1, list.length);
|
||
|
const fn = list[0];
|
||
|
assert.deepStrictEqual(filebuff, Buffer.from(fn, 'ucs2'));
|
||
|
assert.strictEqual(fn, filename);
|
||
|
});
|
||
|
|
||
|
process.on('exit', () => {
|
||
|
fs.unlinkSync(fullpath);
|
||
|
});
|