mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 22:40:57 +00:00

PR-URL: https://github.com/nodejs/node/pull/17334 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
249 lines
6.9 KiB
JavaScript
249 lines
6.9 KiB
JavaScript
// Copyright Joyent, Inc. and other Node contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
// copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
// following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included
|
|
// in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const tmp = common.tmpDir;
|
|
const filename = path.resolve(tmp, 'truncate-file.txt');
|
|
const data = Buffer.alloc(1024 * 16, 'x');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
let stat;
|
|
|
|
const msg = 'Using fs.truncate with a file descriptor is deprecated.' +
|
|
' Please use fs.ftruncate with a file descriptor instead.';
|
|
|
|
// truncateSync
|
|
fs.writeFileSync(filename, data);
|
|
stat = fs.statSync(filename);
|
|
assert.strictEqual(stat.size, 1024 * 16);
|
|
|
|
fs.truncateSync(filename, 1024);
|
|
stat = fs.statSync(filename);
|
|
assert.strictEqual(stat.size, 1024);
|
|
|
|
fs.truncateSync(filename);
|
|
stat = fs.statSync(filename);
|
|
assert.strictEqual(stat.size, 0);
|
|
|
|
// ftruncateSync
|
|
fs.writeFileSync(filename, data);
|
|
const fd = fs.openSync(filename, 'r+');
|
|
|
|
stat = fs.statSync(filename);
|
|
assert.strictEqual(stat.size, 1024 * 16);
|
|
|
|
fs.ftruncateSync(fd, 1024);
|
|
stat = fs.statSync(filename);
|
|
assert.strictEqual(stat.size, 1024);
|
|
|
|
fs.ftruncateSync(fd);
|
|
stat = fs.statSync(filename);
|
|
assert.strictEqual(stat.size, 0);
|
|
|
|
// truncateSync
|
|
common.expectWarning('DeprecationWarning', msg);
|
|
fs.truncateSync(fd);
|
|
|
|
fs.closeSync(fd);
|
|
|
|
// async tests
|
|
testTruncate(common.mustCall(function(er) {
|
|
assert.ifError(er);
|
|
testFtruncate(common.mustCall(function(er) {
|
|
assert.ifError(er);
|
|
}));
|
|
}));
|
|
|
|
function testTruncate(cb) {
|
|
fs.writeFile(filename, data, function(er) {
|
|
if (er) return cb(er);
|
|
fs.stat(filename, function(er, stat) {
|
|
if (er) return cb(er);
|
|
assert.strictEqual(stat.size, 1024 * 16);
|
|
|
|
fs.truncate(filename, 1024, function(er) {
|
|
if (er) return cb(er);
|
|
fs.stat(filename, function(er, stat) {
|
|
if (er) return cb(er);
|
|
assert.strictEqual(stat.size, 1024);
|
|
|
|
fs.truncate(filename, function(er) {
|
|
if (er) return cb(er);
|
|
fs.stat(filename, function(er, stat) {
|
|
if (er) return cb(er);
|
|
assert.strictEqual(stat.size, 0);
|
|
cb();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
|
|
function testFtruncate(cb) {
|
|
fs.writeFile(filename, data, function(er) {
|
|
if (er) return cb(er);
|
|
fs.stat(filename, function(er, stat) {
|
|
if (er) return cb(er);
|
|
assert.strictEqual(stat.size, 1024 * 16);
|
|
|
|
fs.open(filename, 'w', function(er, fd) {
|
|
if (er) return cb(er);
|
|
fs.ftruncate(fd, 1024, function(er) {
|
|
if (er) return cb(er);
|
|
fs.stat(filename, function(er, stat) {
|
|
if (er) return cb(er);
|
|
assert.strictEqual(stat.size, 1024);
|
|
|
|
fs.ftruncate(fd, function(er) {
|
|
if (er) return cb(er);
|
|
fs.stat(filename, function(er, stat) {
|
|
if (er) return cb(er);
|
|
assert.strictEqual(stat.size, 0);
|
|
fs.close(fd, cb);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
|
|
// Make sure if the size of the file is smaller than the length then it is
|
|
// filled with zeroes.
|
|
|
|
{
|
|
const file1 = path.resolve(tmp, 'truncate-file-1.txt');
|
|
fs.writeFileSync(file1, 'Hi');
|
|
fs.truncateSync(file1, 4);
|
|
assert(fs.readFileSync(file1).equals(Buffer.from('Hi\u0000\u0000')));
|
|
}
|
|
|
|
{
|
|
const file2 = path.resolve(tmp, 'truncate-file-2.txt');
|
|
fs.writeFileSync(file2, 'Hi');
|
|
const fd = fs.openSync(file2, 'r+');
|
|
process.on('exit', () => fs.closeSync(fd));
|
|
fs.ftruncateSync(fd, 4);
|
|
assert(fs.readFileSync(file2).equals(Buffer.from('Hi\u0000\u0000')));
|
|
}
|
|
|
|
{
|
|
const file3 = path.resolve(tmp, 'truncate-file-3.txt');
|
|
fs.writeFileSync(file3, 'Hi');
|
|
fs.truncate(file3, 4, common.mustCall(function(err) {
|
|
assert.ifError(err);
|
|
assert(fs.readFileSync(file3).equals(Buffer.from('Hi\u0000\u0000')));
|
|
}));
|
|
}
|
|
|
|
{
|
|
const file4 = path.resolve(tmp, 'truncate-file-4.txt');
|
|
fs.writeFileSync(file4, 'Hi');
|
|
const fd = fs.openSync(file4, 'r+');
|
|
process.on('exit', () => fs.closeSync(fd));
|
|
fs.ftruncate(fd, 4, common.mustCall(function(err) {
|
|
assert.ifError(err);
|
|
assert(fs.readFileSync(file4).equals(Buffer.from('Hi\u0000\u0000')));
|
|
}));
|
|
}
|
|
|
|
{
|
|
const file5 = path.resolve(tmp, 'truncate-file-5.txt');
|
|
fs.writeFileSync(file5, 'Hi');
|
|
const fd = fs.openSync(file5, 'r+');
|
|
process.on('exit', () => fs.closeSync(fd));
|
|
|
|
['', false, null, {}, []].forEach((i) => {
|
|
common.expectsError(
|
|
() => fs.ftruncate(fd, i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "len" argument must be of type number'
|
|
}
|
|
);
|
|
});
|
|
|
|
fs.ftruncate(fd, undefined, common.mustCall(function(err) {
|
|
assert.ifError(err);
|
|
assert(fs.readFileSync(file5).equals(Buffer.from('')));
|
|
}));
|
|
}
|
|
|
|
{
|
|
const file6 = path.resolve(tmp, 'truncate-file-6.txt');
|
|
fs.writeFileSync(file6, 'Hi');
|
|
const fd = fs.openSync(file6, 'r+');
|
|
process.on('exit', () => fs.closeSync(fd));
|
|
fs.ftruncate(fd, -1, common.mustCall(function(err) {
|
|
assert.ifError(err);
|
|
assert(fs.readFileSync(file6).equals(Buffer.from('')));
|
|
}));
|
|
}
|
|
|
|
['', false, null, undefined, {}, []].forEach((i) => {
|
|
common.expectsError(
|
|
() => fs.ftruncate(i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "fd" argument must be of type number'
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.ftruncateSync(i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "fd" argument must be of type number'
|
|
}
|
|
);
|
|
});
|
|
|
|
[-1, 0xFFFFFFFF + 1].forEach((i) => {
|
|
common.expectsError(
|
|
() => fs.ftruncate(i),
|
|
{
|
|
code: 'ERR_OUT_OF_RANGE',
|
|
type: RangeError,
|
|
message: 'The "fd" argument is out of range'
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.ftruncateSync(i),
|
|
{
|
|
code: 'ERR_OUT_OF_RANGE',
|
|
type: RangeError,
|
|
message: 'The "fd" argument is out of range'
|
|
}
|
|
);
|
|
});
|