Skip to content

Commit 6a97e3e

Browse files
committed
Add some tests
1 parent e67e867 commit 6a97e3e

6 files changed

+83
-3
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export {
33
createMatchPath,
44
matchFromAbsolutePaths,
55
MatchPath
6-
} from "./match-path";
6+
} from "./match-path-sync";
77
export {
88
createMatchPathAsync,
99
matchFromAbsolutePathsAsync,
File renamed without changes.

src/register.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createMatchPath } from "./match-path";
1+
import { createMatchPath } from "./match-path-sync";
22
import { configLoader, ExplicitParams } from "./config-loader";
33

44
/**

test/mapping-entry-test.ts

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { assert } from "chai";
2+
import { getAbsoluteMappingEntries } from "../src/mapping-entry";
3+
4+
describe("mapping-entry", () => {
5+
it("should change to absolute paths and sort in longest prefix order", () => {
6+
const result = getAbsoluteMappingEntries("/absolute/base/url", {
7+
"*": ["/foo1", "/foo2"],
8+
"longest/pre/fix/*": ["/foo2/bar"],
9+
"pre/fix/*": ["/foo3"]
10+
});
11+
assert.deepEqual(result, [
12+
{ pattern: "longest/pre/fix/*", paths: ["/absolute/base/url/foo2/bar"] },
13+
{ pattern: "pre/fix/*", paths: ["/absolute/base/url/foo3"] },
14+
{
15+
pattern: "*",
16+
paths: ["/absolute/base/url/foo1", "/absolute/base/url/foo2"]
17+
}
18+
]);
19+
});
20+
});

test/match-path-tests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assert } from "chai";
2-
import { createMatchPath } from "../src/match-path";
2+
import { createMatchPath } from "../src/match-path-sync";
33
import { join } from "path";
44

55
describe("match-path", () => {

test/try-path-tests.ts

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import { assert } from "chai";
2+
import { getPathsToTry } from "../src/try-path";
3+
4+
describe("mapping-entry", () => {
5+
const abosolutePathMappings = [
6+
{
7+
pattern: "longest/pre/fix/*",
8+
paths: ["/absolute/base/url/foo2/bar"]
9+
},
10+
{ pattern: "pre/fix/*", paths: ["/absolute/base/url/foo3"] },
11+
{ pattern: "*", paths: ["/absolute/base/url/foo1"] }
12+
];
13+
it("should return no paths for relative requested module", () => {
14+
const result = getPathsToTry(
15+
[".ts", "tsx"],
16+
abosolutePathMappings,
17+
"./requested-module"
18+
);
19+
assert.deepEqual(result, undefined);
20+
});
21+
22+
it("should return no paths if no pattern match the requested module", () => {
23+
const result = getPathsToTry(
24+
[".ts", "tsx"],
25+
[
26+
{
27+
pattern: "longest/pre/fix/*",
28+
paths: ["/absolute/base/url/foo2/bar"]
29+
},
30+
{ pattern: "pre/fix/*", paths: ["/absolute/base/url/foo3"] }
31+
],
32+
"requested-module"
33+
);
34+
assert.deepEqual(result, undefined);
35+
});
36+
37+
it("should get all paths that matches requested module", () => {
38+
const result = getPathsToTry(
39+
[".ts", ".tsx"],
40+
abosolutePathMappings,
41+
"longest/pre/fix/requested-module"
42+
);
43+
assert.deepEqual(result, [
44+
// "longest/pre/fix/*"
45+
{ type: "file", path: "/absolute/base/url/foo2/bar" },
46+
{ type: "file", path: "/absolute/base/url/foo2/bar.ts" },
47+
{ type: "file", path: "/absolute/base/url/foo2/bar.tsx" },
48+
{ type: "package", path: "/absolute/base/url/foo2/bar/package.json" },
49+
{ type: "file", path: "/absolute/base/url/foo2/bar/index.ts" },
50+
{ type: "file", path: "/absolute/base/url/foo2/bar/index.tsx" },
51+
// "*"
52+
{ type: "file", path: "/absolute/base/url/foo1" },
53+
{ type: "file", path: "/absolute/base/url/foo1.ts" },
54+
{ type: "file", path: "/absolute/base/url/foo1.tsx" },
55+
{ type: "package", path: "/absolute/base/url/foo1/package.json" },
56+
{ type: "file", path: "/absolute/base/url/foo1/index.ts" },
57+
{ type: "file", path: "/absolute/base/url/foo1/index.tsx" }
58+
]);
59+
});
60+
});

0 commit comments

Comments
 (0)