mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

PR-URL: https://github.com/nodejs/node/pull/15990 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
28 lines
771 B
JavaScript
28 lines
771 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const tmp = common.tmpDir;
|
|
common.refreshTmpDir();
|
|
const filename = path.resolve(tmp, 'truncate-file.txt');
|
|
|
|
fs.writeFileSync(filename, 'hello world', 'utf8');
|
|
const fd = fs.openSync(filename, 'r+');
|
|
|
|
const msg = 'Using fs.truncate with a file descriptor is deprecated.' +
|
|
' Please use fs.ftruncate with a file descriptor instead.';
|
|
|
|
|
|
common.expectWarning('DeprecationWarning', msg);
|
|
fs.truncate(fd, 5, common.mustCall(function(err) {
|
|
assert.ok(!err);
|
|
assert.strictEqual(fs.readFileSync(filename, 'utf8'), 'hello');
|
|
}));
|
|
|
|
process.on('exit', function() {
|
|
fs.closeSync(fd);
|
|
fs.unlinkSync(filename);
|
|
console.log('ok');
|
|
});
|