Skip to content

Commit 3d9f1f5

Browse files
committedJun 4, 2024
fix: Use tap-parser instead of regexp to parse tap files
Should be more stable and help detecting xfails
1 parent 9dec5d9 commit 3d9f1f5

File tree

4 files changed

+125
-21
lines changed

4 files changed

+125
-21
lines changed
 

‎out/qttest.js

+29-11
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ const child_process_1 = require("child_process");
4343
const path_1 = __importDefault(require("path"));
4444
const fs = __importStar(require("fs"));
4545
const cmake_1 = require("./cmake");
46+
const tap_parser_1 = require("tap-parser");
4647
var gLogFunction;
4748
function logMessage(message) {
4849
if (gLogFunction) {
@@ -211,8 +212,8 @@ class QtTest {
211212
return undefined;
212213
}
213214
/// Runs this test
214-
runTest(slot, cwd = "") {
215-
return __awaiter(this, void 0, void 0, function* () {
215+
runTest(slot_1) {
216+
return __awaiter(this, arguments, void 0, function* (slot, cwd = "") {
216217
let args = [];
217218
if (slot) {
218219
// Runs a single Qt test instead
@@ -302,15 +303,32 @@ class QtTest {
302303
reject(error);
303304
}
304305
else {
305-
// A fail line is something like:
306-
// at: MyTest::testF() (/some/path/qttest-utils/test/qt_test/test2.cpp:13)
307-
const pattern = /at:\s+(.+?)::(.+?)\(\)\s+\((.+?):(\d+)\)/gm;
308-
const matches = Array.from(data.matchAll(pattern));
309-
const failedResults = matches.map((match) => ({
310-
name: match[2],
311-
filePath: match[3],
312-
lineNumber: parseInt(match[4]),
313-
}));
306+
let failedResults = [];
307+
try {
308+
const tap_events = tap_parser_1.Parser.parse(data);
309+
for (let event of tap_events) {
310+
try {
311+
if (event.length < 2)
312+
continue;
313+
if (event.at(0) != "assert")
314+
continue;
315+
var obj = event.at(1);
316+
if (obj["ok"] === false) {
317+
// We found a failure
318+
var filename = obj["diag"]["file"];
319+
var lineNumber = obj["diag"]["line"];
320+
var name = obj["name"].replace(/\(.*\)/, "");
321+
failedResults.push({
322+
name: name,
323+
filePath: filename,
324+
lineNumber: lineNumber,
325+
});
326+
}
327+
}
328+
catch (e) { }
329+
}
330+
}
331+
catch (e) { }
314332
resolve(failedResults);
315333
}
316334
});

‎package-lock.json

+66
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+3
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@
1818
"@types/node": "^18.15.0",
1919
"ts-node": "^10.9.1",
2020
"typescript": "^5.4.4"
21+
},
22+
"dependencies": {
23+
"tap-parser": "^16.0.1"
2124
}
2225
}

‎src/qttest.ts

+27-10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { spawn } from "child_process";
66
import path from "path";
77
import * as fs from "fs";
88
import { CMakeTests } from "./cmake";
9+
import { Parser } from "tap-parser";
910

1011
type LoggerFunction = (arg: string) => void;
1112
var gLogFunction: LoggerFunction | undefined;
@@ -304,16 +305,32 @@ export class QtTest {
304305
logMessage("ERROR: Failed to read log file");
305306
reject(error);
306307
} else {
307-
// A fail line is something like:
308-
// at: MyTest::testF() (/some/path/qttest-utils/test/qt_test/test2.cpp:13)
309-
310-
const pattern = /at:\s+(.+?)::(.+?)\(\)\s+\((.+?):(\d+)\)/gm;
311-
const matches = Array.from(data.matchAll(pattern));
312-
const failedResults = matches.map((match) => ({
313-
name: match[2],
314-
filePath: match[3],
315-
lineNumber: parseInt(match[4]),
316-
}));
308+
let failedResults: TestFailure[] = [];
309+
310+
try {
311+
const tap_events = Parser.parse(data);
312+
for (let event of tap_events) {
313+
try {
314+
if (event.length < 2) continue;
315+
if (event.at(0) != "assert") continue;
316+
317+
var obj = event.at(1);
318+
319+
if (obj["ok"] === false) {
320+
// We found a failure
321+
var filename = obj["diag"]["file"];
322+
var lineNumber = obj["diag"]["line"];
323+
var name = obj["name"].replace(/\(.*\)/, "");
324+
325+
failedResults.push({
326+
name: name,
327+
filePath: filename,
328+
lineNumber: lineNumber,
329+
});
330+
}
331+
} catch (e) {}
332+
}
333+
} catch (e) {}
317334

318335
resolve(failedResults);
319336
}

0 commit comments

Comments
 (0)
Please sign in to comment.