mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 00:31:51 +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>
22 lines
497 B
JavaScript
22 lines
497 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const tmp = tmpdir.path;
|
|
|
|
tmpdir.refresh();
|
|
|
|
const filename = path.resolve(tmp, 'truncate-sync-file.txt');
|
|
|
|
fs.writeFileSync(filename, 'hello world', 'utf8');
|
|
|
|
const fd = fs.openSync(filename, 'r+');
|
|
|
|
fs.truncateSync(fd, 5);
|
|
assert(fs.readFileSync(fd).equals(Buffer.from('hello')));
|
|
|
|
fs.closeSync(fd);
|
|
fs.unlinkSync(filename);
|