junit: Move testcase creation from tests and benchmarks to functions

This commit is contained in:
Joël Stemmer 2022-05-21 23:06:44 +01:00
parent b4847b2e36
commit 0655053883

View File

@ -157,55 +157,11 @@ func CreateFromReport(report gtr.Report, hostname string) Testsuites {
for _, test := range pkg.Tests { for _, test := range pkg.Tests {
duration += test.Duration duration += test.Duration
suite.AddTestcase(createTestcaseForTest(pkg.Name, test))
tc := Testcase{
Classname: pkg.Name,
Name: test.Name,
Time: formatDuration(test.Duration),
}
if test.Result == gtr.Fail {
tc.Failure = &Result{
Message: "Failed",
Data: formatOutput(test.Output, test.Level),
}
} else if test.Result == gtr.Skip {
tc.Skipped = &Result{
Message: "Skipped",
Data: formatOutput(test.Output, test.Level),
}
} else if test.Result == gtr.Unknown {
tc.Error = &Result{
Message: "No test result found",
Data: formatOutput(test.Output, test.Level),
}
} else if len(test.Output) > 0 {
tc.SystemOut = &Output{Data: formatOutput(test.Output, test.Level)}
}
suite.AddTestcase(tc)
} }
for _, bm := range groupBenchmarksByName(pkg.Benchmarks) { for _, bm := range groupBenchmarksByName(pkg.Benchmarks) {
tc := Testcase{ suite.AddTestcase(createTestcaseForBenchmark(pkg.Name, bm))
Classname: pkg.Name,
Name: bm.Name,
Time: formatBenchmarkTime(time.Duration(bm.NsPerOp) * time.Duration(bm.Iterations)),
}
if bm.Result == gtr.Fail {
tc.Failure = &Result{
Message: "Failed",
}
} else if bm.Result == gtr.Skip {
tc.Skipped = &Result{
Message: "Skipped",
}
} else if len(bm.Output) > 0 {
tc.SystemOut = &Output{Data: formatOutput(bm.Output, 0)}
}
suite.AddTestcase(tc)
} }
// JUnit doesn't have a good way of dealing with build or runtime // JUnit doesn't have a good way of dealing with build or runtime
@ -247,6 +203,55 @@ func CreateFromReport(report gtr.Report, hostname string) Testsuites {
return suites return suites
} }
func createTestcaseForTest(pkgName string, test gtr.Test) Testcase {
tc := Testcase{
Classname: pkgName,
Name: test.Name,
Time: formatDuration(test.Duration),
}
if test.Result == gtr.Fail {
tc.Failure = &Result{
Message: "Failed",
Data: formatOutput(test.Output, test.Level),
}
} else if test.Result == gtr.Skip {
tc.Skipped = &Result{
Message: "Skipped",
Data: formatOutput(test.Output, test.Level),
}
} else if test.Result == gtr.Unknown {
tc.Error = &Result{
Message: "No test result found",
Data: formatOutput(test.Output, test.Level),
}
} else if len(test.Output) > 0 {
tc.SystemOut = &Output{Data: formatOutput(test.Output, test.Level)}
}
return tc
}
func createTestcaseForBenchmark(pkgName string, bm gtr.Benchmark) Testcase {
tc := Testcase{
Classname: pkgName,
Name: bm.Name,
Time: formatBenchmarkTime(time.Duration(bm.NsPerOp) * time.Duration(bm.Iterations)),
}
if bm.Result == gtr.Fail {
tc.Failure = &Result{
Message: "Failed",
}
} else if bm.Result == gtr.Skip {
tc.Skipped = &Result{
Message: "Skipped",
}
} else if len(bm.Output) > 0 {
tc.SystemOut = &Output{Data: formatOutput(bm.Output, 0)}
}
return tc
}
// formatDuration returns the JUnit string representation of the given // formatDuration returns the JUnit string representation of the given
// duration. // duration.
func formatDuration(d time.Duration) string { func formatDuration(d time.Duration) string {