-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fs,doc,test: open reserved characters under win32 #13875
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
'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 REVERSED_CHARACTERS = '<>"|?*'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unless I am missing something here, I am pretty sure those characters are |
||
|
||
[...REVERSED_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}'`); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need for the last arg (default error will be good) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we use the default message, we won't know which character is if test failed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it will be in the error message.. but it you are sure, Ok. |
||
}); | ||
|
||
// 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); | ||
})); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe the skipping can be placed before
require('assert')
etc. to eliminate needless work.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think all
require
at the top is much tidier.