199 Commits

Author SHA1 Message Date
Joël Stemmer
bab26d76b5 gtr: Write test output to JUnit SystemOut
Fixes #108
2022-03-20 22:35:50 +00:00
Joël Stemmer
76f68922a2 junit: Output SystemOut and SystemErr contents as CDATA 2022-03-20 22:35:50 +00:00
Joël Stemmer
7d75448298 gtr: Remove debug print 2022-03-20 22:35:50 +00:00
Joël Stemmer
817a23b10d gtr: Handle end_test events without corresponding run_test event
When running `go test` without the `-v` flag, the output may not contain
everything that we expect. For example, no output is generated for
passing tests. Even for a failing test the output does not contain a
`=== RUN` line.

Currently, this resulted in us ignoring the test result since we
couldn't find an existing test to assign this result to. We should
however handle this situation gracefully, and just assume a test exists
when only encountering a test result line.

References #109
2022-03-20 22:35:50 +00:00
Joël Stemmer
014828bef4 junit: Correctly count skipped tests in junit Testsuite
Fixes #116
2022-03-20 22:35:50 +00:00
Joël Stemmer
dde9ef5310 junit: Change JUnit Result Data field to cdata
The Result Data field contains the test output that was read from stdin.
This used to be a chardata field, which escapes many characters in the
resulting XML. Writing this output with <![CDATA[]]> tags makes the raw
XML output much easier to read in e.g. a text editor.
2022-03-20 22:35:50 +00:00
Joël Stemmer
fc0a210dc9 junit: Make failures and errors required fields
Fixes #101
2022-03-20 22:35:50 +00:00
Joël Stemmer
2ece8eae1a gtr: Set hostname and timestamp fields when creating JUnit Testsuite
Fixes #117
2022-03-20 22:35:50 +00:00
Joël Stemmer
c3acdf13c2 parser/gotest: Remove unnecessary string concatenation in regexSummary 2022-03-20 22:35:50 +00:00
Joël Stemmer
1069a04b9f parser/gotest: Fix failing build error test 2022-03-20 22:35:50 +00:00
Joël Stemmer
cb7f773314 gtr: Add build error test case 2022-03-20 22:35:50 +00:00
Joël Stemmer
80a9b62b38 gtr: Fix prefix trimming of test output 2022-03-20 22:35:50 +00:00
Joël Stemmer
506a968ade gtr: Handle failed summary when no tests failed 2022-03-20 22:35:50 +00:00
Joël Stemmer
4fdb6ca564 gtr: Move tests from build and runtime errors to end of junit report 2022-03-20 22:35:50 +00:00
Joël Stemmer
8b3ee42692 Remove v1 parser and formatter tests from go-junit-report_test 2022-03-20 22:35:50 +00:00
Joël Stemmer
d0cb4ab4a1 Remove unused toXML function from go-junit-report_test 2022-03-20 22:35:50 +00:00
Joël Stemmer
0ff7cae1df Drop new properties when comparing against existing testdata 2022-03-20 22:35:50 +00:00
Joël Stemmer
5007397e33 gtr: Reset active test when encountering a status line
This is to ensure that we don't append output lines that follow after a
status line to the last active test.
2022-03-20 22:35:50 +00:00
Joël Stemmer
f7ae0905a2 gtr: Add support for pause/continue tests 2022-03-20 22:35:50 +00:00
Joël Stemmer
c845dfac27 gtr: Correctly handle packages without tests 2022-03-20 22:35:50 +00:00
Joël Stemmer
9167a5d41d gtr: Add support for runtime/init errors 2022-03-20 22:35:50 +00:00
Joël Stemmer
ffc33941fa gtr, parser/gotest: Add support for build errors 2022-03-20 22:35:50 +00:00
Joël Stemmer
b1b88456c1 gtr: Refactor ReportBuilder flush 2022-03-20 22:35:50 +00:00
Joël Stemmer
52a5393fd3 gtr: Refactor ReportBuilder 2022-03-20 22:35:50 +00:00
Joël Stemmer
3f9d5b62db gtr, parser/gotest: Move output formatting out of parser 2022-03-20 22:35:50 +00:00
Joël Stemmer
08a21eb096 parser/gotest: Fix output trimming 2022-03-20 22:35:50 +00:00
Joël Stemmer
1563e51b7c gtr: Fix testsuite duration 2022-03-20 22:35:50 +00:00
Joël Stemmer
d2d65ebe03 gtr: Fix skipped test output 2022-03-20 22:35:50 +00:00
Joël Stemmer
824b607642 gtr: Handle coverage events 2022-03-20 22:35:50 +00:00
Joël Stemmer
ff9ad32c55 Modify expected report for backwards compatibility in new tests 2022-03-20 22:35:50 +00:00
Joël Stemmer
cb92a4a6c8 Print events for debugging in tests 2022-03-20 22:35:50 +00:00
Joël Stemmer
02fb5c657b Update new output tests 2022-03-20 22:35:50 +00:00
Joël Stemmer
51ca01beb2 Fix test 08 2022-03-20 22:35:50 +00:00
Joël Stemmer
77ad1709cf gtr: Add default package name to report 2022-03-20 22:35:50 +00:00
Joël Stemmer
79753fd332 parser/gotest: Trim tab prefix from output 2022-03-20 22:35:50 +00:00
Joël Stemmer
5f2324f6d4 gtr: Fix junit testsuites test count 2022-03-20 22:35:50 +00:00
Joël Stemmer
24143bf655 junit: Add junit_test 2022-03-20 22:35:50 +00:00
Joël Stemmer
21222485a4 Test new parser and report generator with existing testdata 2022-03-20 22:35:50 +00:00
Joël Stemmer
a100cfaa5f gtr: Add benchmarks to Report 2022-03-20 22:35:50 +00:00
Joël Stemmer
050e22e86b junit: Omit Testcase attributes if they're empty 2022-03-20 22:35:50 +00:00
Joël Stemmer
88177b5692 parser/gotest: Add test 131 2022-03-20 22:35:50 +00:00
Joël Stemmer
4f6df9492b gtr, parser/gotest: Add test 130 2022-03-20 22:35:50 +00:00
Joël Stemmer
1c800998dd parser/gotest: Add test 30 2022-03-20 22:35:50 +00:00
Joël Stemmer
0219808022 parser/gotest: Add test 32 2022-03-20 22:35:50 +00:00
Joël Stemmer
29fc9e3974 parser/gotest: Add test 31 2022-03-20 22:35:50 +00:00
Joël Stemmer
84801b696c parser/gotest: Add tests 28 and 29 2022-03-20 22:35:50 +00:00
Joël Stemmer
1a0c32347c gtr,parser/gotest: Add test 27 2022-03-20 22:35:50 +00:00
Joël Stemmer
be29a47155 parser/gotest: Add test 26 2022-03-20 22:35:50 +00:00
Joël Stemmer
8ef9ea2965 parser/gotest: Add test 25 2022-03-20 22:35:50 +00:00
Joël Stemmer
3676ed3cca parser/gotest: Add test 24 2022-03-20 22:35:50 +00:00