forked from swiftlang/vscode-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftTestingOutputParser.test.ts
309 lines (284 loc) · 10.7 KB
/
SwiftTestingOutputParser.test.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the VS Code Swift open source project
//
// Copyright (c) 2021-2023 the VS Code Swift project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of VS Code Swift project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import * as assert from "assert";
import * as vscode from "vscode";
import { beforeEach } from "mocha";
import {
SwiftTestEvent,
EventRecord,
SwiftTestingOutputParser,
EventRecordPayload,
EventMessage,
SourceLocation,
TestSymbol,
MessageRenderer,
} from "../../../src/TestExplorer/TestParsers/SwiftTestingOutputParser";
import { TestRunState, TestStatus } from "./MockTestRunState";
import { Readable } from "stream";
class TestEventStream {
constructor(private items: SwiftTestEvent[]) {}
async start(readable: Readable) {
this.items.forEach(item => {
readable.push(`${JSON.stringify(item)}\n`);
});
readable.push(null);
}
}
suite("SwiftTestingOutputParser Suite", () => {
let outputParser: SwiftTestingOutputParser;
beforeEach(() => {
outputParser = new SwiftTestingOutputParser(
() => {},
() => {}
);
});
type ExtractPayload<T> = T extends { payload: infer E } ? E : never;
function testEvent(
name: ExtractPayload<EventRecord>["kind"],
testID?: string,
messages?: EventMessage[],
sourceLocation?: SourceLocation,
testCaseID?: string
): EventRecord {
return {
kind: "event",
version: 0,
payload: {
kind: name,
instant: { absolute: 0, since1970: 0 },
messages: messages ?? [],
...{ testID, sourceLocation },
...(messages ? { issue: { sourceLocation, isKnown: false } } : {}),
_testCase: {
id: testCaseID ?? testID,
displayName: testCaseID ?? testID,
},
} as EventRecordPayload,
};
}
test("Passed test", async () => {
const testRunState = new TestRunState(["MyTests.MyTests/testPass()"], true);
const events = new TestEventStream([
testEvent("runStarted"),
testEvent("testCaseStarted", "MyTests.MyTests/testPass()"),
testEvent("testCaseEnded", "MyTests.MyTests/testPass()"),
testEvent("runEnded"),
]);
await outputParser.watch("file:///mock/named/pipe", testRunState, events);
assert.deepEqual(testRunState.tests, [
{
name: "MyTests.MyTests/testPass()",
status: TestStatus.passed,
timing: { timestamp: 0 },
output: [],
},
]);
});
test("Skipped test", async () => {
const testRunState = new TestRunState(["MyTests.MyTests/testSkip()"], true);
const events = new TestEventStream([
testEvent("runStarted"),
testEvent("testSkipped", "MyTests.MyTests/testSkip()"),
testEvent("runEnded"),
]);
await outputParser.watch("file:///mock/named/pipe", testRunState, events);
assert.deepEqual(testRunState.tests, [
{
name: "MyTests.MyTests/testSkip()",
status: TestStatus.skipped,
output: [],
},
]);
});
async function performTestFailure(messages: EventMessage[]) {
const testRunState = new TestRunState(["MyTests.MyTests/testFail()"], true);
const issueLocation = {
_filePath: "file:///some/file.swift",
line: 1,
column: 2,
};
const events = new TestEventStream([
testEvent("runStarted"),
testEvent("testCaseStarted", "MyTests.MyTests/testFail()"),
testEvent("issueRecorded", "MyTests.MyTests/testFail()", messages, issueLocation),
testEvent("testCaseEnded", "MyTests.MyTests/testFail()"),
testEvent("runEnded"),
]);
await outputParser.watch("file:///mock/named/pipe", testRunState, events);
const renderedMessages = messages.map(message => MessageRenderer.render(message));
const fullFailureMessage = renderedMessages.join("\n");
assert.deepEqual(testRunState.tests, [
{
name: "MyTests.MyTests/testFail()",
status: TestStatus.failed,
issues: [
{
message: fullFailureMessage,
location: new vscode.Location(
vscode.Uri.file(issueLocation._filePath),
new vscode.Position(issueLocation.line - 1, issueLocation?.column ?? 0)
),
isKnown: false,
diff: undefined,
},
],
timing: {
timestamp: 0,
},
output: [],
},
]);
}
test("Failed with an issue that has a comment", async () => {
await performTestFailure([
{ text: "Expectation failed: bar == foo", symbol: TestSymbol.fail },
{ symbol: TestSymbol.details, text: "// One" },
{ symbol: TestSymbol.details, text: "// Two" },
{ symbol: TestSymbol.details, text: "// Three" },
]);
});
test("Failed test with one issue", async () => {
await performTestFailure([
{ text: "Expectation failed: bar == foo", symbol: TestSymbol.fail },
]);
});
test("Parameterized test", async () => {
const testRunState = new TestRunState(["MyTests.MyTests/testParameterized()"], true);
const events = new TestEventStream([
{
kind: "test",
payload: {
isParameterized: true,
_testCases: [
{
displayName: "1",
id: "argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [49])])",
},
{
displayName: "2",
id: "argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [50])])",
},
],
id: "MyTests.MyTests/testParameterized()",
kind: "function",
sourceLocation: {
_filePath: "file:///some/file.swift",
line: 1,
column: 2,
},
name: "testParameterized(_:)",
},
version: 0,
},
testEvent("runStarted"),
testEvent(
"testCaseStarted",
"MyTests.MyTests/testParameterized()",
undefined,
undefined,
"argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [49])])"
),
testEvent(
"testCaseEnded",
"MyTests.MyTests/testParameterized()",
undefined,
undefined,
"argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [49])])"
),
testEvent(
"testCaseStarted",
"MyTests.MyTests/testParameterized()",
undefined,
undefined,
"argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [50])])"
),
testEvent(
"testCaseEnded",
"MyTests.MyTests/testParameterized()",
undefined,
undefined,
"argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [50])])"
),
testEvent("testEnded", "MyTests.MyTests/testParameterized()"),
testEvent("runEnded"),
]);
const outputParser = new SwiftTestingOutputParser(
() => {},
testClass => {
testRunState.testItemFinder.tests.push({
name: testClass.id,
status: TestStatus.enqueued,
output: [],
});
}
);
await outputParser.watch("file:///mock/named/pipe", testRunState, events);
assert.deepEqual(testRunState.tests, [
{
name: "MyTests.MyTests/testParameterized()",
status: TestStatus.passed,
timing: { timestamp: 0 },
output: [],
},
{
name: "MyTests.MyTests/testParameterized()/argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [49])])",
status: TestStatus.passed,
timing: { timestamp: 0 },
output: [],
},
{
name: "MyTests.MyTests/testParameterized()/argumentIDs: Optional([Testing.Test.Case.Argument.ID(bytes: [50])])",
status: TestStatus.passed,
timing: { timestamp: 0 },
output: [],
},
]);
});
test("Output is captured", async () => {
const testRunState = new TestRunState(
["MyTests.MyTests/testOutput()", "MyTests.MyTests/testOutput2()"],
true
);
const symbol = TestSymbol.pass;
const makeEvent = (kind: ExtractPayload<EventRecord>["kind"], testId?: string) =>
testEvent(kind, testId, [{ text: kind, symbol }]);
const events = new TestEventStream([
makeEvent("runStarted"),
makeEvent("testCaseStarted", "MyTests.MyTests/testOutput()"),
makeEvent("testCaseEnded", "MyTests.MyTests/testOutput()"),
makeEvent("testCaseStarted", "MyTests.MyTests/testOutput2()"),
makeEvent("testCaseEnded", "MyTests.MyTests/testOutput2()"),
makeEvent("runEnded"),
]);
await outputParser.watch("file:///mock/named/pipe", testRunState, events);
assert.deepEqual(testRunState.tests, [
{
name: "MyTests.MyTests/testOutput()",
output: [],
status: TestStatus.passed,
timing: {
timestamp: 0,
},
},
{
name: "MyTests.MyTests/testOutput2()",
output: [],
status: TestStatus.passed,
timing: {
timestamp: 0,
},
},
]);
});
});