deno.land / std@0.177.1 / fs / exists_test.ts

exists_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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.import { assertEquals, assertStringIncludes } from "../testing/asserts.ts";import * as path from "../path/mod.ts";import { exists, existsSync } from "./exists.ts";
const moduleDir = path.dirname(path.fromFileUrl(import.meta.url));const testdataDir = path.resolve(moduleDir, "testdata");
Deno.test("[fs] existsFile", async function () { assertEquals( await exists(path.join(testdataDir, "not_exist_file.ts")), false, ); assertEquals(await existsSync(path.join(testdataDir, "0.ts")), true);});
Deno.test("[fs] existsFileSync", function () { assertEquals(existsSync(path.join(testdataDir, "not_exist_file.ts")), false); assertEquals(existsSync(path.join(testdataDir, "0.ts")), true);});
Deno.test("[fs] existsDirectory", async function () { assertEquals( await exists(path.join(testdataDir, "not_exist_directory")), false, ); assertEquals(existsSync(testdataDir), true);});
Deno.test("[fs] existsDirectorySync", function () { assertEquals( existsSync(path.join(testdataDir, "not_exist_directory")), false, ); assertEquals(existsSync(testdataDir), true);});
Deno.test("[fs] existsLinkSync", function () { // TODO(axetroy): generate link file use Deno api instead of set a link file // in repository assertEquals(existsSync(path.join(testdataDir, "0-link")), true);});
Deno.test("[fs] existsLink", async function () { // TODO(axetroy): generate link file use Deno api instead of set a link file // in repository assertEquals(await exists(path.join(testdataDir, "0-link")), true);});
interface Scenes { read: boolean; // --allow-read async: boolean; output: string; file: string; // target file to run}
const scenes: Scenes[] = [ // 1 { read: false, async: true, output: "run again with the --allow-read flag", file: "0.ts", }, { read: false, async: false, output: "run again with the --allow-read flag", file: "0.ts", }, // 2 { read: true, async: true, output: "exist", file: "0.ts", }, { read: true, async: false, output: "exist", file: "0.ts", }, // 3 { read: false, async: true, output: "run again with the --allow-read flag", file: "no_exist_file_for_test.ts", }, { read: false, async: false, output: "run again with the --allow-read flag", file: "no_exist_file_for_test.ts", }, // 4 { read: true, async: true, output: "not exist", file: "no_exist_file_for_test.ts", }, { read: true, async: false, output: "not exist", file: "no_exist_file_for_test.ts", },];
for (const s of scenes) { let title = `test ${s.async ? "exists" : "existsSync"}("testdata/${s.file}")`; title += ` ${s.read ? "with" : "without"} --allow-read`; Deno.test(`[fs] existsPermission ${title}`, async function () { const args = ["run", "--quiet", "--no-prompt"];
if (s.read) { args.push("--allow-read"); }
args.push(path.join(testdataDir, s.async ? "exists.ts" : "exists_sync.ts")); args.push(s.file);
const command = new Deno.Command(Deno.execPath(), { cwd: testdataDir, args, }); const { stdout } = await command.output();
assertStringIncludes(new TextDecoder().decode(stdout), s.output); }); // done}
std

Version Info

Tagged at
11 months ago