mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 20:06:58 +00:00

Move tmpdir functionality to its own module (common/tmpdir). PR-URL: https://github.com/nodejs/node/pull/17856 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
29 lines
847 B
JavaScript
29 lines
847 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
const fn = path.join(tmpdir.path, 'write-string-coerce.txt');
|
|
const data = true;
|
|
const expected = String(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: "${expected}"`);
|
|
console.log(`found: "${found}"`);
|
|
fs.unlinkSync(fn);
|
|
assert.strictEqual(expected, found);
|
|
}));
|
|
}));
|