mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
gtr: Move tests from build and runtime errors to end of junit report
This commit is contained in:
parent
8b3ee42692
commit
4fdb6ca564
@ -118,35 +118,6 @@ func JUnit(report Report) junit.Testsuites {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// JUnit doesn't have a good way of dealing with build or runtime
|
|
||||||
// errors that happen before a test has started, so we create a single
|
|
||||||
// failing test that contains the build error details.
|
|
||||||
if pkg.BuildError.Name != "" {
|
|
||||||
tc := junit.Testcase{
|
|
||||||
Classname: pkg.BuildError.Name,
|
|
||||||
Name: pkg.BuildError.Cause,
|
|
||||||
Time: junit.FormatDuration(0),
|
|
||||||
Failure: &junit.Result{
|
|
||||||
Message: "Failed",
|
|
||||||
Data: strings.Join(pkg.BuildError.Output, "\n"),
|
|
||||||
},
|
|
||||||
}
|
|
||||||
suite.AddTestcase(tc)
|
|
||||||
}
|
|
||||||
|
|
||||||
if pkg.RunError.Name != "" {
|
|
||||||
tc := junit.Testcase{
|
|
||||||
Classname: pkg.RunError.Name,
|
|
||||||
Name: "Failure",
|
|
||||||
Time: junit.FormatDuration(0),
|
|
||||||
Failure: &junit.Result{
|
|
||||||
Message: "Failed",
|
|
||||||
Data: strings.Join(pkg.RunError.Output, "\n"),
|
|
||||||
},
|
|
||||||
}
|
|
||||||
suite.AddTestcase(tc)
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, test := range pkg.Tests {
|
for _, test := range pkg.Tests {
|
||||||
duration += test.Duration
|
duration += test.Duration
|
||||||
|
|
||||||
@ -186,6 +157,35 @@ func JUnit(report Report) junit.Testsuites {
|
|||||||
suite.AddTestcase(tc)
|
suite.AddTestcase(tc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// JUnit doesn't have a good way of dealing with build or runtime
|
||||||
|
// errors that happen before a test has started, so we create a single
|
||||||
|
// failing test that contains the build error details.
|
||||||
|
if pkg.BuildError.Name != "" {
|
||||||
|
tc := junit.Testcase{
|
||||||
|
Classname: pkg.BuildError.Name,
|
||||||
|
Name: pkg.BuildError.Cause,
|
||||||
|
Time: junit.FormatDuration(0),
|
||||||
|
Failure: &junit.Result{
|
||||||
|
Message: "Failed",
|
||||||
|
Data: strings.Join(pkg.BuildError.Output, "\n"),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
suite.AddTestcase(tc)
|
||||||
|
}
|
||||||
|
|
||||||
|
if pkg.RunError.Name != "" {
|
||||||
|
tc := junit.Testcase{
|
||||||
|
Classname: pkg.RunError.Name,
|
||||||
|
Name: "Failure",
|
||||||
|
Time: junit.FormatDuration(0),
|
||||||
|
Failure: &junit.Result{
|
||||||
|
Message: "Failed",
|
||||||
|
Data: strings.Join(pkg.RunError.Output, "\n"),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
suite.AddTestcase(tc)
|
||||||
|
}
|
||||||
|
|
||||||
if (pkg.Duration) == 0 {
|
if (pkg.Duration) == 0 {
|
||||||
suite.Time = junit.FormatDuration(duration)
|
suite.Time = junit.FormatDuration(duration)
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user