|
| 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