go-junit-report/pkg/gtr/builder.go
2022-03-20 22:35:50 +00:00

151 lines
2.9 KiB
Go

package gtr
import (
"fmt"
"time"
)
// ReportBuilder builds Reports.
type ReportBuilder struct {
packages []Package
tests map[int]Test
benchmarks map[int]Benchmark
// state
nextId int // next free id
lastId int // last test id // TODO: stack?
output []string
}
func NewReportBuilder() *ReportBuilder {
return &ReportBuilder{
tests: make(map[int]Test),
benchmarks: make(map[int]Benchmark),
nextId: 1,
}
}
func (b *ReportBuilder) flush() {
if len(b.tests) > 0 {
b.CreatePackage("unknown", 0)
}
}
func (b *ReportBuilder) Build() Report {
b.flush()
return Report{Packages: b.packages}
}
func (b *ReportBuilder) CreateTest(name string) {
id := b.nextId
b.lastId = id
b.nextId += 1
b.tests[id] = Test{Name: name}
}
func (b *ReportBuilder) EndTest(name, result string, duration time.Duration) {
id := b.findTest(name)
b.lastId = id
t := b.tests[id]
t.Result = parseResult(result)
t.Duration = duration
b.tests[id] = t
}
func (b *ReportBuilder) Benchmark(name string, iterations int64, nsPerOp, mbPerSec float64, bytesPerOp, allocsPerOp int64) {
id := b.nextId
b.lastId = id
b.nextId += 1
b.benchmarks[id] = Benchmark{
Name: name,
Result: Pass,
Iterations: iterations,
NsPerOp: nsPerOp,
MBPerSec: mbPerSec,
BytesPerOp: bytesPerOp,
AllocsPerOp: allocsPerOp,
}
}
func (b *ReportBuilder) CreatePackage(name string, duration time.Duration) {
var tests []Test
var benchmarks []Benchmark
// Iterate by id to maintain original test order
for id := 1; id < b.nextId; id++ {
if t, ok := b.tests[id]; ok {
tests = append(tests, t)
}
if bm, ok := b.benchmarks[id]; ok {
benchmarks = append(benchmarks, bm)
}
}
b.packages = append(b.packages, Package{
Name: name,
Duration: duration,
Tests: tests,
Benchmarks: benchmarks,
Output: b.output,
})
b.tests = make(map[int]Test)
b.benchmarks = make(map[int]Benchmark)
b.output = nil
b.nextId = 1
b.lastId = 0
}
func (b *ReportBuilder) AppendOutput(line string) {
if b.lastId <= 0 {
b.output = append(b.output, line)
return
}
t := b.tests[b.lastId]
t.Output = append(t.Output, line)
b.tests[b.lastId] = t
}
func (b *ReportBuilder) findTest(name string) int {
// check if this test was lastId
if t, ok := b.tests[b.lastId]; ok && t.Name == name {
return b.lastId
}
for id := len(b.tests); id >= 0; id-- {
if b.tests[id].Name == name {
return id
}
}
return -1
}
func (b *ReportBuilder) findBenchmark(name string) int {
// check if this benchmark was lastId
if bm, ok := b.benchmarks[b.lastId]; ok && bm.Name == name {
return b.lastId
}
for id := len(b.benchmarks); id >= 0; id-- {
if b.benchmarks[id].Name == name {
return id
}
}
return -1
}
func parseResult(r string) Result {
switch r {
case "PASS":
return Pass
case "FAIL":
return Fail
case "SKIP":
return Skip
default:
fmt.Printf("unknown result: %q\n", r)
return Unknown
}
}