-
Notifications
You must be signed in to change notification settings - Fork 643
/
Copy pathcopy_test.ts
38 lines (33 loc) · 1.05 KB
/
copy_test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2018-2025 the Deno authors. MIT license.
import { copy } from "./copy.ts";
import { assertEquals, assertStrictEquals } from "@std/assert";
const SRC_PATH = "./io/testdata/copy-src.txt";
const DST_PATH = "./io/testdata/copy-dst.txt";
Deno.test("copy()", async (t) => {
try {
using srcFile = await Deno.open(SRC_PATH);
using dstFile = await Deno.open(DST_PATH, {
create: true,
write: true,
});
const actualByteCount = await copy(srcFile, dstFile);
await t.step(
"number of copied bytes equals source size",
async () => {
const fileInfo = await srcFile.stat();
const expectedByteCount = fileInfo.size;
assertStrictEquals(actualByteCount, expectedByteCount);
},
);
await t.step(
"source and destination bytes are equal",
async () => {
const srcOutput = await Deno.readFile(SRC_PATH);
const dstOutput = await Deno.readFile(DST_PATH);
assertEquals(srcOutput, dstOutput);
},
);
} finally {
await Deno.remove(DST_PATH);
}
});