forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon_test.ts
More file actions
98 lines (90 loc) · 2.15 KB
/
Copy pathcommon_test.ts
File metadata and controls
98 lines (90 loc) · 2.15 KB
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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "@std/assert";
import { common } from "./mod.ts";
import * as posix from "./posix/mod.ts";
import * as windows from "./windows/mod.ts";
Deno.test({
name: "common() returns shared path",
fn() {
const actual = posix.common(
[
"file://deno/cli/js/deno.ts",
"file://deno/std/path/mod.ts",
"file://deno/cli/js/main.ts",
],
);
assertEquals(actual, "file://deno/");
},
});
Deno.test({
name: "common() returns empty string if no shared path is present",
fn() {
const actual = posix.common(
["file://deno/cli/js/deno.ts", "https://deno.land/std/path/mod.ts"],
);
assertEquals(actual, "");
},
});
Deno.test({
name: "common() checks windows separator",
fn() {
const actual = windows.common(
[
"c:\\deno\\cli\\js\\deno.ts",
"c:\\deno\\std\\path\\mod.ts",
"c:\\deno\\cli\\js\\main.ts",
],
);
assertEquals(actual, "c:\\deno\\");
},
});
Deno.test({
name: "common(['', '/'], '/') returns ''",
fn() {
const actual = posix.common(["", "/"]);
assertEquals(actual, "");
},
});
Deno.test({
name: "common(['/', ''], '/') returns ''",
fn() {
const actual = posix.common([
"/",
"",
]);
assertEquals(actual, "");
},
});
Deno.test({
name: "common() returns the first path unmodified when it's the only path",
fn() {
const actual = posix.common(["./deno/std/path/mod.ts"]);
assertEquals(actual, "./deno/std/path/mod.ts");
},
});
Deno.test({
name: "common() returns the first path unmodified if all paths are equal",
fn() {
const actual = common(
[
"./deno/std/path/mod.ts",
"./deno/std/path/mod.ts",
"./deno/std/path/mod.ts",
],
);
assertEquals(actual, "./deno/std/path/mod.ts");
},
});
Deno.test({
name: "posix.common() returns shared path",
fn() {
const actual = posix.common(
[
"file://deno/cli/js/deno.ts",
"file://deno/std/path/mod.ts",
"file://deno/cli/js/main.ts",
],
);
assertEquals(actual, "file://deno/");
},
});