2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-06-24 18:57:08 -04:00
|
|
|
import {
|
|
|
|
assertEquals,
|
|
|
|
assertThrows,
|
|
|
|
assertThrowsAsync,
|
2020-09-27 06:22:32 -04:00
|
|
|
unitTest,
|
2020-06-24 18:57:08 -04:00
|
|
|
} from "./test_util.ts";
|
2018-09-30 18:06:41 -04:00
|
|
|
|
2020-06-11 12:36:20 -04:00
|
|
|
function readFileString(filename: string | URL): string {
|
2019-02-12 10:08:56 -05:00
|
|
|
const dataRead = Deno.readFileSync(filename);
|
2018-09-30 18:06:41 -04:00
|
|
|
const dec = new TextDecoder("utf-8");
|
|
|
|
return dec.decode(dataRead);
|
|
|
|
}
|
|
|
|
|
2020-06-11 12:36:20 -04:00
|
|
|
function writeFileString(filename: string | URL, s: string): void {
|
2018-09-30 18:06:41 -04:00
|
|
|
const enc = new TextEncoder();
|
|
|
|
const data = enc.encode(s);
|
2020-03-07 22:29:12 -05:00
|
|
|
Deno.writeFileSync(filename, data, { mode: 0o666 });
|
2018-09-30 18:06:41 -04:00
|
|
|
}
|
|
|
|
|
2020-06-11 12:36:20 -04:00
|
|
|
function assertSameContent(
|
|
|
|
filename1: string | URL,
|
2020-07-14 15:24:17 -04:00
|
|
|
filename2: string | URL,
|
2020-06-11 12:36:20 -04:00
|
|
|
): void {
|
2019-02-12 10:08:56 -05:00
|
|
|
const data1 = Deno.readFileSync(filename1);
|
|
|
|
const data2 = Deno.readFileSync(filename2);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(data1, data2);
|
2018-09-30 18:06:41 -04:00
|
|
|
}
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
function copyFileSyncSuccess(): void {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromFilename = tempDir + "/from.txt";
|
|
|
|
const toFilename = tempDir + "/to.txt";
|
|
|
|
writeFileString(fromFilename, "Hello world!");
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.copyFileSync(fromFilename, toFilename);
|
2020-03-04 11:31:14 -05:00
|
|
|
// No change to original file
|
|
|
|
assertEquals(readFileString(fromFilename), "Hello world!");
|
|
|
|
// Original == Dest
|
|
|
|
assertSameContent(fromFilename, toFilename);
|
2020-06-11 12:36:20 -04:00
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
function copyFileSyncByUrl(): void {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromUrl = new URL(
|
2020-07-14 15:24:17 -04:00
|
|
|
`file://${Deno.build.os === "windows" ? "/" : ""}${tempDir}/from.txt`,
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
const toUrl = new URL(
|
2020-07-14 15:24:17 -04:00
|
|
|
`file://${Deno.build.os === "windows" ? "/" : ""}${tempDir}/to.txt`,
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
writeFileString(fromUrl, "Hello world!");
|
|
|
|
Deno.copyFileSync(fromUrl, toUrl);
|
|
|
|
// No change to original file
|
|
|
|
assertEquals(readFileString(fromUrl), "Hello world!");
|
|
|
|
// Original == Dest
|
|
|
|
assertSameContent(fromUrl, toUrl);
|
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2018-09-30 18:06:41 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { write: true, read: true } },
|
|
|
|
function copyFileSyncFailure(): void {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromFilename = tempDir + "/from.txt";
|
|
|
|
const toFilename = tempDir + "/to.txt";
|
|
|
|
// We skip initial writing here, from.txt does not exist
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-03-04 11:31:14 -05:00
|
|
|
Deno.copyFileSync(fromFilename, toFilename);
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2020-06-11 12:36:20 -04:00
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2019-02-08 15:59:38 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { write: true, read: false } },
|
|
|
|
function copyFileSyncPerm1(): void {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-03-04 11:31:14 -05:00
|
|
|
Deno.copyFileSync("/from.txt", "/to.txt");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2019-02-08 15:59:38 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { write: false, read: true } },
|
|
|
|
function copyFileSyncPerm2(): void {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-03-04 11:31:14 -05:00
|
|
|
Deno.copyFileSync("/from.txt", "/to.txt");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2018-09-30 18:06:41 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
function copyFileSyncOverwrite(): void {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromFilename = tempDir + "/from.txt";
|
|
|
|
const toFilename = tempDir + "/to.txt";
|
|
|
|
writeFileString(fromFilename, "Hello world!");
|
|
|
|
// Make Dest exist and have different content
|
|
|
|
writeFileString(toFilename, "Goodbye!");
|
|
|
|
Deno.copyFileSync(fromFilename, toFilename);
|
|
|
|
// No change to original file
|
|
|
|
assertEquals(readFileString(fromFilename), "Hello world!");
|
|
|
|
// Original == Dest
|
|
|
|
assertSameContent(fromFilename, toFilename);
|
2020-06-11 12:36:20 -04:00
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2018-09-30 18:06:41 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
async function copyFileSuccess(): Promise<void> {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromFilename = tempDir + "/from.txt";
|
|
|
|
const toFilename = tempDir + "/to.txt";
|
|
|
|
writeFileString(fromFilename, "Hello world!");
|
2019-02-12 10:08:56 -05:00
|
|
|
await Deno.copyFile(fromFilename, toFilename);
|
2020-03-04 11:31:14 -05:00
|
|
|
// No change to original file
|
|
|
|
assertEquals(readFileString(fromFilename), "Hello world!");
|
|
|
|
// Original == Dest
|
|
|
|
assertSameContent(fromFilename, toFilename);
|
2020-06-11 12:36:20 -04:00
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
async function copyFileByUrl(): Promise<void> {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromUrl = new URL(
|
2020-07-14 15:24:17 -04:00
|
|
|
`file://${Deno.build.os === "windows" ? "/" : ""}${tempDir}/from.txt`,
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
const toUrl = new URL(
|
2020-07-14 15:24:17 -04:00
|
|
|
`file://${Deno.build.os === "windows" ? "/" : ""}${tempDir}/to.txt`,
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
writeFileString(fromUrl, "Hello world!");
|
|
|
|
await Deno.copyFile(fromUrl, toUrl);
|
|
|
|
// No change to original file
|
|
|
|
assertEquals(readFileString(fromUrl), "Hello world!");
|
|
|
|
// Original == Dest
|
|
|
|
assertSameContent(fromUrl, toUrl);
|
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2018-09-30 18:06:41 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
async function copyFileFailure(): Promise<void> {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromFilename = tempDir + "/from.txt";
|
|
|
|
const toFilename = tempDir + "/to.txt";
|
|
|
|
// We skip initial writing here, from.txt does not exist
|
2020-06-24 18:57:08 -04:00
|
|
|
await assertThrowsAsync(async () => {
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.copyFile(fromFilename, toFilename);
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2020-06-11 12:36:20 -04:00
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
2019-04-21 16:40:10 -04:00
|
|
|
async function copyFileOverwrite(): Promise<void> {
|
|
|
|
const tempDir = Deno.makeTempDirSync();
|
|
|
|
const fromFilename = tempDir + "/from.txt";
|
|
|
|
const toFilename = tempDir + "/to.txt";
|
|
|
|
writeFileString(fromFilename, "Hello world!");
|
|
|
|
// Make Dest exist and have different content
|
|
|
|
writeFileString(toFilename, "Goodbye!");
|
|
|
|
await Deno.copyFile(fromFilename, toFilename);
|
|
|
|
// No change to original file
|
|
|
|
assertEquals(readFileString(fromFilename), "Hello world!");
|
|
|
|
// Original == Dest
|
|
|
|
assertSameContent(fromFilename, toFilename);
|
2020-06-11 12:36:20 -04:00
|
|
|
|
|
|
|
Deno.removeSync(tempDir, { recursive: true });
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2019-04-21 16:40:10 -04:00
|
|
|
);
|
2018-09-30 18:06:41 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: false, write: true } },
|
|
|
|
async function copyFilePerm1(): Promise<void> {
|
2020-06-24 18:57:08 -04:00
|
|
|
await assertThrowsAsync(async () => {
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.copyFile("/from.txt", "/to.txt");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2019-02-08 15:59:38 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: false } },
|
|
|
|
async function copyFilePerm2(): Promise<void> {
|
2020-06-24 18:57:08 -04:00
|
|
|
await assertThrowsAsync(async () => {
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.copyFile("/from.txt", "/to.txt");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|