-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathget_test_runner_code.test.ts
More file actions
197 lines (172 loc) · 4.78 KB
/
Copy pathget_test_runner_code.test.ts
File metadata and controls
197 lines (172 loc) · 4.78 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
// Copyright 2018-2024 the Deno authors. MIT license.
import { assertEquals } from "@std/assert";
import { getTestRunnerCode } from "./get_test_runner_code.ts";
import { runTestDefinitions } from "./test_runner.ts";
const runTestDefinitionsCode = runTestDefinitions.toString()
.replace("export async function", "async function");
Deno.test("gets code when no shim used", () => {
const code = getTestRunnerCode({
testEntryPoints: ["./test.ts"],
denoTestShimPackageName: undefined,
includeEsModule: true,
includeScriptModule: true,
});
assertEquals(
code,
`import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const __dirname = new URL(".", import.meta.url).pathname;
const pc = require("picocolors");
const process = require("process");
const filePaths = [
"./test.js",
];
async function main() {
for (const [i, filePath] of filePaths.entries()) {
if (i > 0) {
console.log("");
}
const scriptPath = "./script/" + filePath;
console.log("Running tests in " + pc.underline(scriptPath) + "...\\n");
process.chdir(__dirname + "/script");
try {
require(scriptPath);
} catch(err) {
console.error(err);
process.exit(1);
}
const esmPath = "./esm/" + filePath;
console.log("\\nRunning tests in " + pc.underline(esmPath) + "...\\n");
process.chdir(__dirname + "/esm");
await import(esmPath);
}
}
main();
`,
);
});
Deno.test("gets code when shim used", () => {
const code = getTestRunnerCode({
testEntryPoints: ["./1.test.ts", "./2.test.ts"],
denoTestShimPackageName: "test-shim-package/test-internals",
includeEsModule: true,
includeScriptModule: true,
});
assertEquals(
code,
`import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const __dirname = new URL(".", import.meta.url).pathname;
const pc = require("picocolors");
const process = require("process");
const { pathToFileURL } = require("url");
const { testDefinitions } = require("test-shim-package/test-internals");
const filePaths = [
"./1.test.js",
"./2.test.js",
];
async function main() {
const testContext = {
process,
pc,
};
for (const [i, filePath] of filePaths.entries()) {
if (i > 0) {
console.log("");
}
const scriptPath = "./script/" + filePath;
console.log("Running tests in " + pc.underline(scriptPath) + "...\\n");
process.chdir(__dirname + "/script");
const scriptTestContext = {
origin: pathToFileURL(filePath).toString(),
...testContext,
};
try {
require(scriptPath);
} catch(err) {
console.error(err);
process.exit(1);
}
await runTestDefinitions(testDefinitions.splice(0, testDefinitions.length), scriptTestContext);
const esmPath = "./esm/" + filePath;
console.log("\\nRunning tests in " + pc.underline(esmPath) + "...\\n");
process.chdir(__dirname + "/esm");
const esmTestContext = {
origin: pathToFileURL(filePath).toString(),
...testContext,
};
await import(esmPath);
await runTestDefinitions(testDefinitions.splice(0, testDefinitions.length), esmTestContext);
}
}
${runTestDefinitionsCode}
main();
`,
);
});
Deno.test("gets code when cjs is not used", () => {
const code = getTestRunnerCode({
testEntryPoints: ["./test.ts"],
denoTestShimPackageName: undefined,
includeEsModule: true,
includeScriptModule: false,
});
assertEquals(
code,
`import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const __dirname = new URL(".", import.meta.url).pathname;
const pc = require("picocolors");
const process = require("process");
const filePaths = [
"./test.js",
];
async function main() {
for (const [i, filePath] of filePaths.entries()) {
if (i > 0) {
console.log("");
}
const esmPath = "./esm/" + filePath;
console.log("\\nRunning tests in " + pc.underline(esmPath) + "...\\n");
process.chdir(__dirname + "/esm");
await import(esmPath);
}
}
main();
`,
);
});
Deno.test("gets code when esm is not used", () => {
const code = getTestRunnerCode({
testEntryPoints: ["./test.ts"],
denoTestShimPackageName: undefined,
includeEsModule: false,
includeScriptModule: true,
});
assertEquals(
code,
`const pc = require("picocolors");
const process = require("process");
const filePaths = [
"./test.js",
];
async function main() {
for (const [i, filePath] of filePaths.entries()) {
if (i > 0) {
console.log("");
}
const scriptPath = "./script/" + filePath;
console.log("Running tests in " + pc.underline(scriptPath) + "...\\n");
process.chdir(__dirname + "/script");
try {
require(scriptPath);
} catch(err) {
console.error(err);
process.exit(1);
}
}
}
main();
`,
);
});