mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
gtr: Reset builder state after the end of a test or benchmark
The consequence of this is that any output emitted after the test or benchmark result, will no longer belong to the last test. Instead it will be appended to the global log. This is necessary to correctly attribute output to the correct test or benchmark, for example in cases where both tests and benchmarks appear. In the past, Go test output printed test logs after the test result. However, from Go 1.14 this behaviour was changed and test logs are now printed before the test result. With this commit, we effectively no longer support the old behaviour in Go1.13 and earlier. The output will still appear in the generated report, however it will no longer belong to the correct test.
This commit is contained in:
parent
4d05b2dc3f
commit
a4c479dbbb
@ -89,9 +89,9 @@ func (b *reportBuilder) ContinueTest(name string) {
|
||||
}
|
||||
|
||||
// EndTest finds the test with the given name, sets the result, duration and
|
||||
// level, and marks it as active. If more than one test exists with this name,
|
||||
// the most recently created test will be used. If no test exists with this
|
||||
// name, a new test is created.
|
||||
// level. If more than one test exists with this name, the most recently
|
||||
// created test will be used. If no test exists with this name, a new test is
|
||||
// created.
|
||||
func (b *reportBuilder) EndTest(name, result string, duration time.Duration, level int) {
|
||||
b.lastId = b.findTest(name)
|
||||
if b.lastId < 0 {
|
||||
@ -106,6 +106,7 @@ func (b *reportBuilder) EndTest(name, result string, duration time.Duration, lev
|
||||
t.Duration = duration
|
||||
t.Level = level
|
||||
b.tests[b.lastId] = t
|
||||
b.lastId = 0
|
||||
}
|
||||
|
||||
// End marks the active context as no longer active.
|
||||
@ -144,10 +145,10 @@ func (b *reportBuilder) BenchmarkResult(name string, iterations int64, nsPerOp,
|
||||
}
|
||||
}
|
||||
|
||||
// EndBenchmark finds the benchmark with the given name, sets the result and
|
||||
// marks it as active. If more than one benchmark exists with this name, the
|
||||
// most recently created benchmark will be used. If no benchmark exists with
|
||||
// this name, a new benchmark is created.
|
||||
// EndBenchmark finds the benchmark with the given name and sets the result. If
|
||||
// more than one benchmark exists with this name, the most recently created
|
||||
// benchmark will be used. If no benchmark exists with this name, a new
|
||||
// benchmark is created.
|
||||
func (b *reportBuilder) EndBenchmark(name, result string) {
|
||||
b.lastId = b.findBenchmark(name)
|
||||
if b.lastId < 0 {
|
||||
@ -157,6 +158,7 @@ func (b *reportBuilder) EndBenchmark(name, result string) {
|
||||
bm := b.benchmarks[b.lastId]
|
||||
bm.Result = parseResult(result)
|
||||
b.benchmarks[b.lastId] = bm
|
||||
b.lastId = 0
|
||||
}
|
||||
|
||||
// CreateBuildError creates a new build error and marks it as active.
|
||||
|
3
testdata/109-report.xml
vendored
3
testdata/109-report.xml
vendored
@ -8,5 +8,8 @@
|
||||
<testcase name="TestZ" classname="package/name/bench" time="0.000"></testcase>
|
||||
<testcase name="BenchmarkTest" classname="package/name/bench" time="0.000000000"></testcase>
|
||||
<testcase name="BenchmarkOtherTest" classname="package/name/bench" time="0.000000000"></testcase>
|
||||
<system-out><![CDATA[goos: linux
|
||||
goarch: amd64
|
||||
pkg: package/name/bench]]></system-out>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
|
Loading…
x
Reference in New Issue
Block a user