2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-11-23 11:45:18 -05:00
|
|
|
import { assertEquals, assertRejects, assertThrows } from "./test_util.ts";
|
2018-09-30 15:06:20 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
function ftruncateSyncSuccess() {
|
2020-06-20 09:46:10 -04:00
|
|
|
const filename = Deno.makeTempDirSync() + "/test_ftruncateSync.txt";
|
|
|
|
const file = Deno.openSync(filename, {
|
|
|
|
create: true,
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.ftruncateSync(file.rid, 20);
|
|
|
|
assertEquals(Deno.readFileSync(filename).byteLength, 20);
|
|
|
|
Deno.ftruncateSync(file.rid, 5);
|
|
|
|
assertEquals(Deno.readFileSync(filename).byteLength, 5);
|
|
|
|
Deno.ftruncateSync(file.rid, -5);
|
|
|
|
assertEquals(Deno.readFileSync(filename).byteLength, 0);
|
|
|
|
|
|
|
|
Deno.close(file.rid);
|
|
|
|
Deno.removeSync(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-20 09:46:10 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function ftruncateSuccess() {
|
2020-06-20 09:46:10 -04:00
|
|
|
const filename = Deno.makeTempDirSync() + "/test_ftruncate.txt";
|
|
|
|
const file = await Deno.open(filename, {
|
|
|
|
create: true,
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
await Deno.ftruncate(file.rid, 20);
|
|
|
|
assertEquals((await Deno.readFile(filename)).byteLength, 20);
|
|
|
|
await Deno.ftruncate(file.rid, 5);
|
|
|
|
assertEquals((await Deno.readFile(filename)).byteLength, 5);
|
|
|
|
await Deno.ftruncate(file.rid, -5);
|
|
|
|
assertEquals((await Deno.readFile(filename)).byteLength, 0);
|
|
|
|
|
|
|
|
Deno.close(file.rid);
|
|
|
|
await Deno.remove(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-20 09:46:10 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
function truncateSyncSuccess() {
|
2020-03-04 11:31:14 -05:00
|
|
|
const filename = Deno.makeTempDirSync() + "/test_truncateSync.txt";
|
2020-06-12 09:40:06 -04:00
|
|
|
Deno.writeFileSync(filename, new Uint8Array(5));
|
2020-03-04 11:31:14 -05:00
|
|
|
Deno.truncateSync(filename, 20);
|
2020-06-12 09:40:06 -04:00
|
|
|
assertEquals(Deno.readFileSync(filename).byteLength, 20);
|
2020-03-04 11:31:14 -05:00
|
|
|
Deno.truncateSync(filename, 5);
|
2020-06-12 09:40:06 -04:00
|
|
|
assertEquals(Deno.readFileSync(filename).byteLength, 5);
|
2020-03-04 11:31:14 -05:00
|
|
|
Deno.truncateSync(filename, -5);
|
2020-06-12 09:40:06 -04:00
|
|
|
assertEquals(Deno.readFileSync(filename).byteLength, 0);
|
2020-03-04 11:31:14 -05:00
|
|
|
Deno.removeSync(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2018-09-30 15:06:20 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function truncateSuccess() {
|
2020-03-04 11:31:14 -05:00
|
|
|
const filename = Deno.makeTempDirSync() + "/test_truncate.txt";
|
2020-06-12 09:40:06 -04:00
|
|
|
await Deno.writeFile(filename, new Uint8Array(5));
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.truncate(filename, 20);
|
2020-06-12 09:40:06 -04:00
|
|
|
assertEquals((await Deno.readFile(filename)).byteLength, 20);
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.truncate(filename, 5);
|
2020-06-12 09:40:06 -04:00
|
|
|
assertEquals((await Deno.readFile(filename)).byteLength, 5);
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.truncate(filename, -5);
|
2020-06-12 09:40:06 -04:00
|
|
|
assertEquals((await Deno.readFile(filename)).byteLength, 0);
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.remove(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2018-09-30 15:06:20 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { write: false } }, function truncateSyncPerm() {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-06-12 08:25:07 -04:00
|
|
|
Deno.truncateSync("/test_truncateSyncPermission.txt");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2018-09-30 15:06:20 -04:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { write: false } }, async function truncatePerm() {
|
2021-09-22 09:21:11 -04:00
|
|
|
await assertRejects(async () => {
|
2020-06-12 08:25:07 -04:00
|
|
|
await Deno.truncate("/test_truncatePermission.txt");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2018-09-30 15:06:20 -04:00
|
|
|
});
|
2021-10-11 09:21:18 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-10-11 09:21:18 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
|
|
|
function truncateSyncNotFound() {
|
|
|
|
const filename = "/badfile.txt";
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
Deno.truncateSync(filename);
|
|
|
|
},
|
|
|
|
Deno.errors.NotFound,
|
|
|
|
`truncate '${filename}'`,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-10-11 09:21:18 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
|
|
|
async function truncateSyncNotFound() {
|
|
|
|
const filename = "/badfile.txt";
|
|
|
|
await assertRejects(
|
|
|
|
async () => {
|
|
|
|
await Deno.truncate(filename);
|
|
|
|
},
|
|
|
|
Deno.errors.NotFound,
|
|
|
|
`truncate '${filename}'`,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|