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.
28 lines
851 B
28 lines
851 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const Buffer = require('buffer').Buffer;
|
|
const fs = require('fs');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
const fn = path.join(common.tmpDir, 'write-string-coerce.txt');
|
|
const data = true;
|
|
const expected = data + '';
|
|
|
|
fs.open(fn, 'w', 0o644, common.mustCall(function(err, fd) {
|
|
assert.ifError(err);
|
|
console.log('open done');
|
|
fs.write(fd, data, 0, 'utf8', common.mustCall(function(err, written) {
|
|
console.log('write done');
|
|
assert.ifError(err);
|
|
assert.strictEqual(Buffer.byteLength(expected), written);
|
|
fs.closeSync(fd);
|
|
const found = fs.readFileSync(fn, 'utf8');
|
|
console.log('expected: "%s"', expected);
|
|
console.log('found: "%s"', found);
|
|
fs.unlinkSync(fn);
|
|
assert.strictEqual(expected, found);
|
|
}));
|
|
}));
|
|
|