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