gtr: Write test output to JUnit SystemOut

Fixes #108
This commit is contained in:
Joël Stemmer 2022-02-27 23:27:22 +00:00
parent 76f68922a2
commit bab26d76b5
11 changed files with 21 additions and 0 deletions

View File

@ -115,6 +115,10 @@ func JUnit(report Report, hostname string, now time.Time) junit.Testsuites {
Hostname: hostname,
}
if len(pkg.Output) > 0 {
suite.SystemOut = &junit.Output{Data: formatOutput(pkg.Output, 0)}
}
if pkg.Coverage > 0 {
suite.AddProperty("coverage.statements.pct", fmt.Sprintf("%.2f", pkg.Coverage))
}

View File

@ -8,5 +8,6 @@
<failure message="Failed" type="">file_test.go:11: Error message&#xA;file_test.go:11: Longer&#xA;&#x9;error&#xA;&#x9;message.</failure>
</testcase>
<testcase classname="name" name="TestTwo" time="0.130"></testcase>
<system-out><![CDATA[exit status 1]]></system-out>
</testsuite>
</testsuites>

View File

@ -14,5 +14,6 @@
<failure message="Failed" type="">file_test.go:11: Error message&#xA;file_test.go:11: Longer&#xA;&#x9;error&#xA;&#x9;message.</failure>
</testcase>
<testcase classname="name2" name="TestTwo" time="0.130"></testcase>
<system-out><![CDATA[exit status 1]]></system-out>
</testsuite>
</testsuites>

View File

@ -7,5 +7,6 @@
<testcase classname="race_test" name="TestRace" time="0.000">
<failure message="Failed" type="">test output&#xA;2 0xc4200153d0&#xA;==================&#xA;WARNING: DATA RACE&#xA;Write at 0x00c4200153d0 by goroutine 7:&#xA; race_test.TestRace.func1()&#xA; race_test.go:13 +0x3b&#xA;&#xA;Previous write at 0x00c4200153d0 by goroutine 6:&#xA; race_test.TestRace()&#xA; race_test.go:15 +0x136&#xA; testing.tRunner()&#xA; /usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:657 +0x107&#xA;&#xA;Goroutine 7 (running) created at:&#xA; race_test.TestRace()&#xA; race_test.go:14 +0x125&#xA; testing.tRunner()&#xA; /usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:657 +0x107&#xA;&#xA;Goroutine 6 (running) created at:&#xA; testing.(*T).Run()&#xA; /usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:697 +0x543&#xA; testing.runTests.func1()&#xA; /usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:882 +0xaa&#xA; testing.tRunner()&#xA; /usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:657 +0x107&#xA; testing.runTests()&#xA; /usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:888 +0x4e0&#xA; testing.(*M).Run()&#xA; /usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:822 +0x1c3&#xA; main.main()&#xA; _test/_testmain.go:52 +0x20f&#xA;==================&#xA;testing.go:610: race detected during execution of test</failure>
</testcase>
<system-out><![CDATA[exit status 1]]></system-out>
</testsuite>
</testsuites>

View File

@ -13,5 +13,6 @@
<testcase classname="parallel" name="ThirdTest" time="0.010">
<failure message="Failed" type="">Message from third&#xA;parallel_test.go:32: ThirdTest error</failure>
</testcase>
<system-out><![CDATA[exit status 1]]></system-out>
</testsuite>
</testsuites>

View File

@ -6,5 +6,8 @@
</properties>
<testcase classname="basic" name="BenchmarkParse" time="0.000000604"></testcase>
<testcase classname="basic" name="BenchmarkReadingList" time="0.000001425"></testcase>
<system-out><![CDATA[goos: darwin
goarch: amd64
pkg: code.internal/state]]></system-out>
</testsuite>
</testsuites>

View File

@ -6,5 +6,8 @@
</properties>
<testcase classname="one" name="BenchmarkIpsHistoryInsert" time="0.000052568"></testcase>
<testcase classname="one" name="BenchmarkIpsHistoryLookup" time="0.000015208"></testcase>
<system-out><![CDATA[goos: darwin
goarch: amd64
pkg: code.internal/state]]></system-out>
</testsuite>
</testsuites>

View File

@ -6,6 +6,7 @@
</properties>
<testcase classname="common" name="BenchmarkParse" time="0.000001591"></testcase>
<testcase classname="common" name="BenchmarkNewTask" time="0.000000391"></testcase>
<system-out><![CDATA[pkg: mycode/common]]></system-out>
</testsuite>
<testsuite tests="4" failures="0" errors="0" time="47.084" name="mycode/benchmarks/channels" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
<properties>
@ -15,5 +16,6 @@
<testcase classname="channels" name="BenchmarkFanout/Channel/100" time="0.000024965"></testcase>
<testcase classname="channels" name="BenchmarkFanout/Channel/1000" time="0.000195672"></testcase>
<testcase classname="channels" name="BenchmarkFanout/Channel/10000" time="0.002410200"></testcase>
<system-out><![CDATA[pkg: mycode/benchmarks/channels]]></system-out>
</testsuite>
</testsuites>

View File

@ -7,5 +7,8 @@
<testcase classname="small" name="BenchmarkItsy" time="0.000000045"></testcase>
<testcase classname="small" name="BenchmarkTeeny" time="0.000000002"></testcase>
<testcase classname="small" name="BenchmarkWeeny" time="0.000000000"></testcase>
<system-out><![CDATA[goos: darwin
goarch: amd64
pkg: really/small]]></system-out>
</testsuite>
</testsuites>

View File

@ -5,5 +5,6 @@
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="cpu" name="BenchmarkRing" time="0.000000074"></testcase>
<system-out><![CDATA[pkg: single/cpu]]></system-out>
</testsuite>
</testsuites>

View File

@ -5,5 +5,6 @@
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="cpu" name="BenchmarkRingaround" time="0.000013571"></testcase>
<system-out><![CDATA[pkg: sixteen/cpu]]></system-out>
</testsuite>
</testsuites>