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.
45 lines
1.1 KiB
45 lines
1.1 KiB
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
if (!common.isWindows)
|
|
common.skip('This test is for Windows only.');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
const DATA_VALUE = 'hello';
|
|
|
|
// Refs: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx
|
|
// Ignore '/', '\\' and ':'
|
|
const RESERVED_CHARACTERS = '<>"|?*';
|
|
|
|
[...RESERVED_CHARACTERS].forEach((ch) => {
|
|
const pathname = path.join(common.tmpDir, `somefile_${ch}`);
|
|
assert.throws(
|
|
() => {
|
|
fs.writeFileSync(pathname, DATA_VALUE);
|
|
},
|
|
/^Error: ENOENT: no such file or directory, open '.*'$/,
|
|
`failed with '${ch}'`);
|
|
});
|
|
|
|
// Test for ':' (NTFS data streams).
|
|
// Refs: https://msdn.microsoft.com/en-us/library/windows/desktop/bb540537.aspx
|
|
const pathname = path.join(common.tmpDir, 'foo:bar');
|
|
fs.writeFileSync(pathname, DATA_VALUE);
|
|
|
|
let content = '';
|
|
const fileDataStream = fs.createReadStream(pathname, {
|
|
encoding: 'utf8'
|
|
});
|
|
|
|
fileDataStream.on('data', (data) => {
|
|
content += data;
|
|
});
|
|
|
|
fileDataStream.on('end', common.mustCall(() => {
|
|
assert.strictEqual(content, DATA_VALUE);
|
|
}));
|
|
|