-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fs: fix .write() not coercing non-string values
Fixes: #1098 PR-URL: #1102 Reviewed-By: Brendan Ashworth <[email protected]>
- Loading branch information
1 parent
4bd3620
commit cf565b5
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
var common = require('../common'); | ||
var assert = require('assert'); | ||
var path = require('path'); | ||
var Buffer = require('buffer').Buffer; | ||
var fs = require('fs'); | ||
var fn = path.join(common.tmpDir, 'write-string-coerce.txt'); | ||
var data = true; | ||
var expected = data + ''; | ||
var found; | ||
|
||
fs.open(fn, 'w', 0644, function(err, fd) { | ||
if (err) throw err; | ||
console.log('open done'); | ||
fs.write(fd, data, 0, 'utf8', function(err, written) { | ||
console.log('write done'); | ||
if (err) throw err; | ||
assert.equal(Buffer.byteLength(expected), written); | ||
fs.closeSync(fd); | ||
found = fs.readFileSync(fn, 'utf8'); | ||
console.log('expected: "%s"', expected); | ||
console.log('found: "%s"', found); | ||
fs.unlinkSync(fn); | ||
}); | ||
}); | ||
|
||
|
||
process.on('exit', function() { | ||
assert.equal(expected, found); | ||
}); |