summaryrefslogtreecommitdiff
path: root/std/fs/expand_glob_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs/expand_glob_test.ts')
-rw-r--r--std/fs/expand_glob_test.ts140
1 files changed, 0 insertions, 140 deletions
diff --git a/std/fs/expand_glob_test.ts b/std/fs/expand_glob_test.ts
deleted file mode 100644
index da9e89e6b..000000000
--- a/std/fs/expand_glob_test.ts
+++ /dev/null
@@ -1,140 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-import { decode } from "../encoding/utf8.ts";
-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 (): Promise<void> {
- const options = EG_OPTIONS;
- assertEquals(await expandGlobArray("*", options), [
- "abc",
- "abcdef",
- "abcdefghi",
- "subdir",
- ]);
-});
-
-Deno.test("expandGlobTrailingSeparator", async function (): Promise<void> {
- const options = EG_OPTIONS;
- assertEquals(await expandGlobArray("*/", options), ["subdir"]);
-});
-
-Deno.test("expandGlobParent", async function (): Promise<void> {
- const options = EG_OPTIONS;
- assertEquals(await expandGlobArray("subdir/../*", options), [
- "abc",
- "abcdef",
- "abcdefghi",
- "subdir",
- ]);
-});
-
-Deno.test("expandGlobExt", async function (): Promise<void> {
- 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 (): Promise<void> {
- const options = { ...EG_OPTIONS, globstar: true };
- assertEquals(
- await expandGlobArray(joinGlobs(["**", "abc"], options), options),
- ["abc", join("subdir", "abc")],
- );
-});
-
-Deno.test("expandGlobGlobstarParent", async function (): Promise<void> {
- const options = { ...EG_OPTIONS, globstar: true };
- assertEquals(
- await expandGlobArray(joinGlobs(["subdir", "**", ".."], options), options),
- ["."],
- );
-});
-
-Deno.test("expandGlobIncludeDirs", async function (): Promise<void> {
- const options = { ...EG_OPTIONS, includeDirs: false };
- assertEquals(await expandGlobArray("subdir", options), []);
-});
-
-Deno.test("expandGlobPermError", async function (): Promise<void> {
- const exampleUrl = new URL("testdata/expand_wildcard.js", import.meta.url);
- const p = Deno.run({
- cmd: [
- Deno.execPath(),
- "run",
- "--quiet",
- "--unstable",
- exampleUrl.toString(),
- ],
- stdin: "null",
- stdout: "piped",
- stderr: "piped",
- });
- assertEquals(await p.status(), { code: 1, success: false });
- assertEquals(decode(await p.output()), "");
- assertStringIncludes(
- decode(await p.stderrOutput()),
- "Uncaught PermissionDenied",
- );
- p.close();
-});