forked from TypeScriptToLua/TypeScriptToLua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresolution.spec.ts
More file actions
143 lines (137 loc) · 3.94 KB
/
resolution.spec.ts
File metadata and controls
143 lines (137 loc) · 3.94 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
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
142
143
import * as ts from "typescript";
import { couldNotResolveRequire } from "../../../src/transpilation/diagnostics";
import * as util from "../../util";
const requireRegex = /require\("(.*?)"\)/;
const expectToRequire = (expected: string): util.TapCallback => builder => {
const [, requiredPath] = builder.getMainLuaCodeChunk().match(requireRegex) ?? [];
expect(requiredPath).toBe(expected);
};
test.each([
{
filePath: "main.ts",
usedPath: "./folder/Module",
expected: "folder.Module",
options: { rootDir: "." },
},
{
filePath: "main.ts",
usedPath: "./folder/Module",
expected: "folder.Module",
options: { rootDir: "./" },
},
{
filePath: "src/main.ts",
usedPath: "./folder/Module",
expected: "src.folder.Module",
options: { rootDir: "." },
},
{
filePath: "main.ts",
usedPath: "folder/Module",
expected: "folder.Module",
options: { rootDir: ".", baseUrl: "." },
},
{
filePath: "main.ts",
usedPath: "folder/Module",
expected: "folder.Module",
options: { rootDir: "./", baseUrl: "." },
},
{
filePath: "src/main.ts",
usedPath: "./folder/Module",
expected: "folder.Module",
options: { rootDir: "src" },
},
{
filePath: "src/main.ts",
usedPath: "./folder/Module",
expected: "folder.Module",
options: { rootDir: "./src" },
},
{
filePath: "src/dir/main.ts",
usedPath: "../Module",
expected: "Module",
options: { rootDir: "./src" },
},
{
filePath: "src/dir/dir/main.ts",
usedPath: "../../dir/Module",
expected: "dir.Module",
options: { rootDir: "./src" },
},
])("resolve paths with baseUrl or rootDir (%p)", ({ filePath, usedPath, expected, options }) => {
util.testModule`
import * as module from "${usedPath}";
module;
`
.setMainFileName(filePath)
.addExtraFile(`${usedPath}.ts`, "")
.setOptions(options)
.tap(expectToRequire(expected));
});
test("doesn't resolve paths out of root dir", () => {
util.testModule`
import * as module from "../module";
module;
`
.setMainFileName("src/main.ts")
.setOptions({ rootDir: "./src" })
.disableSemanticCheck()
.expectDiagnosticsToMatchSnapshot([couldNotResolveRequire.code]);
});
test.each([
{
declarationStatement: `
/** @noResolution */
declare module "fake" {}
`,
mainCode: 'import "fake";',
expectedPath: "fake",
},
{
declarationStatement: `
/** @noResolution */
declare module "fake" {}
`,
mainCode: 'import * as fake from "fake"; fake;',
expectedPath: "fake",
},
{
declarationStatement: `
/** @noResolution */
declare module "fake" {
export const x: number;
}
`,
mainCode: 'import { x } from "fake"; x;',
expectedPath: "fake",
},
{
declarationStatement: `
/** @noResolution */
declare module "fake" {
export const x: number;
}
declare module "fake" {
export const y: number;
}
`,
mainCode: 'import { y } from "fake"; y;',
expectedPath: "fake",
},
])("noResolution prevents any module path resolution behavior", ({ declarationStatement, mainCode, expectedPath }) => {
util.testModule(mainCode)
.setMainFileName("src/main.ts")
.addExtraFile("module.d.ts", declarationStatement)
.tap(expectToRequire(expectedPath));
});
test("import = require", () => {
util.testModule`
import foo = require("./foo/bar");
foo;
`
.setOptions({ module: ts.ModuleKind.CommonJS })
.tap(expectToRequire("foo.bar"));
});