-
Notifications
You must be signed in to change notification settings - Fork 124
/
jestRunner.ts
313 lines (243 loc) · 8.83 KB
/
jestRunner.ts
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
import * as vscode from 'vscode';
import * as fs from 'fs';
import { JestRunnerConfig } from './jestRunnerConfig';
import { parse } from './parser';
import {
escapeRegExp,
escapeRegExpForPath,
escapeSingleQuotes,
findFullTestName,
getFileName,
getDirName,
normalizePath,
pushMany,
quote,
unquote,
updateTestNameIfUsingProperties,
} from './util';
interface DebugCommand {
documentUri: vscode.Uri;
config: vscode.DebugConfiguration;
}
export class JestRunner {
private previousCommand: string | DebugCommand;
private terminal: vscode.Terminal;
// support for running in a native external terminal
// force runTerminalCommand to push to a queue and run in a native external
// terminal after all commands been pushed
private openNativeTerminal: boolean;
private commands: string[] = [];
constructor(private readonly config: JestRunnerConfig) {
this.setup();
this.openNativeTerminal = config.isRunInExternalNativeTerminal;
}
//
// public methods
//
public async runTestsOnPath(path: string): Promise<void> {
const command = this.buildJestCommand(path);
this.previousCommand = command;
await this.goToCwd();
await this.runTerminalCommand(command);
await this.runExternalNativeTerminalCommand(this.commands);
}
public async runCurrentTest(
argument?: Record<string, unknown> | string,
options?: string[],
collectCoverageFromCurrentFile?: boolean,
): Promise<void> {
const currentTestName = typeof argument === 'string' ? argument : undefined;
const editor = vscode.window.activeTextEditor;
if (!editor) {
return;
}
await editor.document.save();
const filePath = editor.document.fileName;
const finalOptions = options;
if (collectCoverageFromCurrentFile) {
const targetFileDir = getDirName(filePath);
const targetFileName = getFileName(filePath).replace(/\.(test|spec)\./, '.');
// if a file does not exist with the same name as the test file but without the test/spec part
// use test file's directory for coverage target
const coverageTarget = fs.existsSync(`${targetFileDir}/${targetFileName}`)
? `**/${targetFileName}`
: `**/${getFileName(targetFileDir)}/**`;
finalOptions.push('--collectCoverageFrom');
finalOptions.push(quote(coverageTarget));
}
const testName = currentTestName || this.findCurrentTestName(editor);
const resolvedTestName = updateTestNameIfUsingProperties(testName);
const command = this.buildJestCommand(filePath, resolvedTestName, finalOptions);
this.previousCommand = command;
await this.goToCwd();
await this.runTerminalCommand(command);
await this.runExternalNativeTerminalCommand(this.commands);
}
public async runCurrentFile(options?: string[]): Promise<void> {
const editor = vscode.window.activeTextEditor;
if (!editor) {
return;
}
await editor.document.save();
const filePath = editor.document.fileName;
const command = this.buildJestCommand(filePath, undefined, options);
this.previousCommand = command;
await this.goToCwd();
await this.runTerminalCommand(command);
await this.runExternalNativeTerminalCommand(this.commands);
}
public async runPreviousTest(): Promise<void> {
const editor = vscode.window.activeTextEditor;
if (!editor) {
return;
}
await editor.document.save();
if (typeof this.previousCommand === 'string') {
await this.goToCwd();
await this.runTerminalCommand(this.previousCommand);
} else {
await this.executeDebugCommand(this.previousCommand);
}
await this.runExternalNativeTerminalCommand(this.commands);
}
public async debugTestsOnPath(path: string): Promise<void> {
const debugConfig = this.getDebugConfig(path);
await this.goToCwd();
await this.executeDebugCommand({
config: debugConfig,
documentUri: vscode.Uri.file(path),
});
await this.runExternalNativeTerminalCommand(this.commands);
}
public async debugCurrentTest(currentTestName?: string): Promise<void> {
const editor = vscode.window.activeTextEditor;
if (!editor) {
return;
}
await editor.document.save();
const filePath = editor.document.fileName;
const testName = currentTestName || this.findCurrentTestName(editor);
const resolvedTestName = updateTestNameIfUsingProperties(testName);
const debugConfig = this.getDebugConfig(filePath, resolvedTestName);
await this.goToCwd();
await this.executeDebugCommand({
config: debugConfig,
documentUri: editor.document.uri,
});
await this.runExternalNativeTerminalCommand(this.commands);
}
//
// private methods
//
private async executeDebugCommand(debugCommand: DebugCommand) {
// prevent open of external terminal when debug command is executed
this.openNativeTerminal = false;
for (const command of this.commands) {
await this.runTerminalCommand(command);
}
this.commands = [];
vscode.debug.startDebugging(undefined, debugCommand.config);
this.previousCommand = debugCommand;
}
private getDebugConfig(filePath: string, currentTestName?: string): vscode.DebugConfiguration {
const config: vscode.DebugConfiguration = {
console: 'integratedTerminal',
internalConsoleOptions: 'neverOpen',
name: 'Debug Jest Tests',
program: this.config.jestBinPath,
request: 'launch',
type: 'node',
cwd: this.config.cwd,
...this.config.debugOptions,
};
config.args = config.args ? config.args.slice() : [];
if (this.config.isYarnPnpSupportEnabled) {
config.args = ['jest'];
config.program = `.yarn/releases/${this.config.getYarnPnpCommand}`;
}
const standardArgs = this.buildJestArgs(filePath, currentTestName, false);
pushMany(config.args, standardArgs);
config.args.push('--runInBand');
return config;
}
private findCurrentTestName(editor: vscode.TextEditor): string | undefined {
// from selection
const { selection, document } = editor;
if (!selection.isEmpty) {
return unquote(document.getText(selection));
}
const selectedLine = selection.active.line + 1;
const filePath = editor.document.fileName;
const testFile = parse(filePath);
const fullTestName = findFullTestName(selectedLine, testFile.root.children);
return fullTestName ? escapeRegExp(fullTestName) : undefined;
}
private buildJestCommand(filePath: string, testName?: string, options?: string[]): string {
const args = this.buildJestArgs(filePath, testName, true, options);
return `${this.config.jestCommand} ${args.join(' ')}`;
}
private buildJestArgs(filePath: string, testName: string, withQuotes: boolean, options: string[] = []): string[] {
const args: string[] = [];
const quoter = withQuotes ? quote : (str) => str;
args.push(quoter(escapeRegExpForPath(normalizePath(filePath))));
const jestConfigPath = this.config.getJestConfigPath(filePath);
if (jestConfigPath) {
args.push('-c');
args.push(quoter(normalizePath(jestConfigPath)));
}
if (testName) {
args.push('-t');
args.push(quoter(escapeSingleQuotes(testName)));
}
const setOptions = new Set(options);
if (this.config.runOptions) {
this.config.runOptions.forEach((option) => setOptions.add(option));
}
args.push(...setOptions);
return args;
}
private async goToCwd() {
const command = `cd ${quote(this.config.cwd)}`;
if (this.config.changeDirectoryToWorkspaceRoot) {
await this.runTerminalCommand(command);
}
}
private buildNativeTerminalCommand(toRun: string): string {
const command = `ttab -t 'jest-runner' "${toRun}"`;
return command;
}
private async runExternalNativeTerminalCommand(commands: string[]): Promise<void> {
if (!this.openNativeTerminal) {
this.commands = [];
return;
}
const command: string = commands.join('; ');
const externalCommand: string = this.buildNativeTerminalCommand(command);
this.commands = [];
if (!this.terminal) {
this.terminal = vscode.window.createTerminal('jest');
}
this.terminal.show(this.config.preserveEditorFocus);
await vscode.commands.executeCommand('workbench.action.terminal.clear');
this.terminal.sendText(externalCommand);
}
private async runTerminalCommand(command: string) {
if (this.openNativeTerminal) {
this.commands.push(command);
return;
}
if (!this.terminal) {
this.terminal = vscode.window.createTerminal('jest');
}
this.terminal.show(this.config.preserveEditorFocus);
await vscode.commands.executeCommand('workbench.action.terminal.clear');
this.terminal.sendText(command);
}
private setup() {
vscode.window.onDidCloseTerminal((closedTerminal: vscode.Terminal) => {
if (this.terminal === closedTerminal) {
this.terminal = null;
}
});
}
}