gtr: Add support for runtime/init errors

This commit is contained in:
Joël Stemmer 2019-10-06 23:37:51 +01:00
parent ffc33941fa
commit 9167a5d41d
2 changed files with 46 additions and 10 deletions

View File

@ -10,7 +10,8 @@ type ReportBuilder struct {
packages []Package packages []Package
tests map[int]Test tests map[int]Test
benchmarks map[int]Benchmark benchmarks map[int]Benchmark
buildErrors map[int]BuildError buildErrors map[int]Error
runErrors map[int]Error
// state // state
nextId int // next free id nextId int // next free id
@ -26,7 +27,8 @@ func NewReportBuilder(packageName string) *ReportBuilder {
return &ReportBuilder{ return &ReportBuilder{
tests: make(map[int]Test), tests: make(map[int]Test),
benchmarks: make(map[int]Benchmark), benchmarks: make(map[int]Benchmark),
buildErrors: make(map[int]BuildError), buildErrors: make(map[int]Error),
runErrors: make(map[int]Error),
nextId: 1, nextId: 1,
packageName: packageName, packageName: packageName,
} }
@ -79,7 +81,7 @@ func (b *ReportBuilder) Benchmark(name string, iterations int64, nsPerOp, mbPerS
} }
func (b *ReportBuilder) CreateBuildError(packageName string) { func (b *ReportBuilder) CreateBuildError(packageName string) {
b.buildErrors[b.newId()] = BuildError{Name: packageName} b.buildErrors[b.newId()] = Error{Name: packageName}
} }
func (b *ReportBuilder) CreatePackage(name string, duration time.Duration, data string) { func (b *ReportBuilder) CreatePackage(name string, duration time.Duration, data string) {
@ -91,16 +93,34 @@ func (b *ReportBuilder) CreatePackage(name string, duration time.Duration, data
if len(b.tests) > 0 || len(b.benchmarks) > 0 { if len(b.tests) > 0 || len(b.benchmarks) > 0 {
panic("unexpected tests and/or benchmarks found in build error package") panic("unexpected tests and/or benchmarks found in build error package")
} }
buildErr.Duration = duration
buildErr.Cause = data buildErr.Cause = data
b.packages = append(b.packages, Package{ b.packages = append(b.packages, Package{
Name: name, Name: name,
BuildError: buildErr, BuildError: buildErr,
}) })
delete(b.buildErrors, id) delete(b.buildErrors, id)
// TODO: reset state
return return
} }
} }
// If we've collected output, but there were no tests or benchmarks then
// there was some other error.
if len(b.output) > 0 && len(b.tests) == 0 && len(b.benchmarks) == 0 {
b.packages = append(b.packages, Package{
Name: name,
Duration: duration,
RunError: Error{
Name: name,
Output: b.output,
},
})
b.output = nil
// TODO: reset state
return
}
// Collect tests and benchmarks for this package, maintaining insertion order. // Collect tests and benchmarks for this package, maintaining insertion order.
var tests []Test var tests []Test
var benchmarks []Benchmark var benchmarks []Benchmark

View File

@ -39,7 +39,8 @@ type Package struct {
Tests []Test Tests []Test
Benchmarks []Benchmark Benchmarks []Benchmark
BuildError BuildError BuildError Error
RunError Error
} }
type Test struct { type Test struct {
@ -60,10 +61,11 @@ type Benchmark struct {
AllocsPerOp int64 AllocsPerOp int64
} }
type BuildError struct { type Error struct {
Name string Name string
Cause string Duration time.Duration
Output []string Cause string
Output []string
} }
// FromEvents creates a Report from the given list of events. // FromEvents creates a Report from the given list of events.
@ -111,8 +113,9 @@ func JUnit(report Report) junit.Testsuites {
} }
} }
// JUnit doesn't have a good way of dealing with build errors, so we // JUnit doesn't have a good way of dealing with build or runtime
// create a single failing test that contains the build error details. // 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 != "" { if pkg.BuildError.Name != "" {
tc := junit.Testcase{ tc := junit.Testcase{
Classname: pkg.BuildError.Name, Classname: pkg.BuildError.Name,
@ -126,6 +129,19 @@ func JUnit(report Report) junit.Testsuites {
suite.AddTestcase(tc) 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