deno.land / std@0.157.0 / fs / expand_glob_test.ts

expand_glob_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
136
137
138
139
140
141
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { assert, assertEquals, assertStringIncludes,} from "../testing/asserts.ts";import { fromFileUrl, join, joinGlobs, normalize, relative,} from "../path/mod.ts";import { expandGlob, ExpandGlobOptions, expandGlobSync,} from "./expand_glob.ts";
async function expandGlobArray( globString: string, options: ExpandGlobOptions,): Promise<string[]> { const paths: string[] = []; for await (const { path } of expandGlob(globString, options)) { paths.push(path); } paths.sort(); const pathsSync = [...expandGlobSync(globString, options)].map( ({ path }): string => path, ); pathsSync.sort(); assertEquals(paths, pathsSync); const root = normalize(options.root || Deno.cwd()); for (const path of paths) { assert(path.startsWith(root)); } const relativePaths = paths.map( (path: string): string => relative(root, path) || ".", ); relativePaths.sort(); return relativePaths;}
const EG_OPTIONS: ExpandGlobOptions = { root: fromFileUrl(new URL(join("testdata", "glob"), import.meta.url)), includeDirs: true, extended: false, globstar: false,};
Deno.test("expandGlobWildcard", async function () { const options = EG_OPTIONS; assertEquals(await expandGlobArray("*", options), [ "a[b]c", "abc", "abcdef", "abcdefghi", "subdir", ]);});
Deno.test("expandGlobTrailingSeparator", async function () { const options = EG_OPTIONS; assertEquals(await expandGlobArray("*/", options), ["a[b]c", "subdir"]);});
Deno.test("expandGlobParent", async function () { const options = EG_OPTIONS; assertEquals(await expandGlobArray("subdir/../*", options), [ "a[b]c", "abc", "abcdef", "abcdefghi", "subdir", ]);});
Deno.test("expandGlobExt", async function () { const options = { ...EG_OPTIONS, extended: true }; assertEquals(await expandGlobArray("abc?(def|ghi)", options), [ "abc", "abcdef", ]); assertEquals(await expandGlobArray("abc*(def|ghi)", options), [ "abc", "abcdef", "abcdefghi", ]); assertEquals(await expandGlobArray("abc+(def|ghi)", options), [ "abcdef", "abcdefghi", ]); assertEquals(await expandGlobArray("abc@(def|ghi)", options), ["abcdef"]); assertEquals(await expandGlobArray("abc{def,ghi}", options), ["abcdef"]); assertEquals(await expandGlobArray("abc!(def|ghi)", options), ["abc"]);});
Deno.test("expandGlobGlobstar", async function () { const options = { ...EG_OPTIONS, globstar: true }; assertEquals( await expandGlobArray(joinGlobs(["**", "abc"], options), options), ["abc", join("subdir", "abc")], );});
Deno.test("expandGlobGlobstarParent", async function () { const options = { ...EG_OPTIONS, globstar: true }; assertEquals( await expandGlobArray(joinGlobs(["subdir", "**", ".."], options), options), ["."], );});
Deno.test("expandGlobIncludeDirs", async function () { const options = { ...EG_OPTIONS, includeDirs: false }; assertEquals(await expandGlobArray("subdir", options), []);});
Deno.test("expandGlobPermError", async function () { const exampleUrl = new URL("testdata/expand_wildcard.js", import.meta.url); const { code, success, stdout, stderr } = await Deno.spawn(Deno.execPath(), { args: [ "run", "--quiet", "--unstable", exampleUrl.toString(), ], }); const decoder = new TextDecoder(); assert(!success); assertEquals(code, 1); assertEquals(decoder.decode(stdout), ""); assertStringIncludes(decoder.decode(stderr), "Uncaught PermissionDenied");});
Deno.test("expandGlobRootIsNotGlob", async function () { const options = { ...EG_OPTIONS, root: join(EG_OPTIONS.root!, "a[b]c") }; assertEquals(await expandGlobArray("*", options), ["foo"]);});
std

Version Info

Tagged at
a year ago