mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
gtr: Fix testsuite duration
This commit is contained in:
parent
d2d65ebe03
commit
1563e51b7c
@ -88,10 +88,8 @@ func FromEvents(events []Event, packageName string) Report {
|
|||||||
func JUnit(report Report) junit.Testsuites {
|
func JUnit(report Report) junit.Testsuites {
|
||||||
var suites junit.Testsuites
|
var suites junit.Testsuites
|
||||||
for _, pkg := range report.Packages {
|
for _, pkg := range report.Packages {
|
||||||
suite := junit.Testsuite{
|
var duration time.Duration
|
||||||
Name: pkg.Name,
|
suite := junit.Testsuite{Name: pkg.Name}
|
||||||
Time: junit.FormatDuration(pkg.Duration),
|
|
||||||
}
|
|
||||||
|
|
||||||
if pkg.Coverage > 0 {
|
if pkg.Coverage > 0 {
|
||||||
suite.AddProperty("coverage.statements.pct", fmt.Sprintf("%.2f", pkg.Coverage))
|
suite.AddProperty("coverage.statements.pct", fmt.Sprintf("%.2f", pkg.Coverage))
|
||||||
@ -104,11 +102,14 @@ func JUnit(report Report) junit.Testsuites {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, test := range pkg.Tests {
|
for _, test := range pkg.Tests {
|
||||||
|
duration += test.Duration
|
||||||
|
|
||||||
tc := junit.Testcase{
|
tc := junit.Testcase{
|
||||||
Classname: pkg.Name,
|
Classname: pkg.Name,
|
||||||
Name: test.Name,
|
Name: test.Name,
|
||||||
Time: junit.FormatDuration(test.Duration),
|
Time: junit.FormatDuration(test.Duration),
|
||||||
}
|
}
|
||||||
|
|
||||||
if test.Result == Fail {
|
if test.Result == Fail {
|
||||||
tc.Failure = &junit.Result{
|
tc.Failure = &junit.Result{
|
||||||
Message: "Failed",
|
Message: "Failed",
|
||||||
@ -119,6 +120,7 @@ func JUnit(report Report) junit.Testsuites {
|
|||||||
Message: strings.Join(test.Output, "\n"),
|
Message: strings.Join(test.Output, "\n"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suite.AddTestcase(tc)
|
suite.AddTestcase(tc)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,14 +130,21 @@ func JUnit(report Report) junit.Testsuites {
|
|||||||
Name: bm.Name,
|
Name: bm.Name,
|
||||||
Time: junit.FormatBenchmarkTime(time.Duration(bm.NsPerOp)),
|
Time: junit.FormatBenchmarkTime(time.Duration(bm.NsPerOp)),
|
||||||
}
|
}
|
||||||
|
|
||||||
if bm.Result == Fail {
|
if bm.Result == Fail {
|
||||||
tc.Failure = &junit.Result{
|
tc.Failure = &junit.Result{
|
||||||
Message: "Failed",
|
Message: "Failed",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suite.AddTestcase(tc)
|
suite.AddTestcase(tc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (pkg.Duration) == 0 {
|
||||||
|
suite.Time = junit.FormatDuration(duration)
|
||||||
|
} else {
|
||||||
|
suite.Time = junit.FormatDuration(pkg.Duration)
|
||||||
|
}
|
||||||
suites.AddSuite(suite)
|
suites.AddSuite(suite)
|
||||||
}
|
}
|
||||||
return suites
|
return suites
|
||||||
|
Loading…
x
Reference in New Issue
Block a user