mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
gtr: Create package gtr
This commit is contained in:
parent
1cf71a341d
commit
cc15e48982
136
pkg/gtr/gtr.go
Normal file
136
pkg/gtr/gtr.go
Normal file
@ -0,0 +1,136 @@
|
||||
// Package gtr generates Go Test Reports from a collection of Events.
|
||||
package gtr
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/jstemmer/go-junit-report/v2/pkg/parser/gotest"
|
||||
)
|
||||
|
||||
type Result int
|
||||
|
||||
const (
|
||||
// TODO: move these to event and don't make the all-caps
|
||||
UNKNOWN Result = iota
|
||||
PASS
|
||||
FAIL
|
||||
SKIP
|
||||
)
|
||||
|
||||
func (r Result) String() string {
|
||||
switch r {
|
||||
case UNKNOWN:
|
||||
return "UNKNOWN"
|
||||
case PASS:
|
||||
return "PASS"
|
||||
case FAIL:
|
||||
return "FAIL"
|
||||
case SKIP:
|
||||
return "SKIP"
|
||||
default:
|
||||
panic("invalid result")
|
||||
}
|
||||
}
|
||||
|
||||
type Report struct {
|
||||
Packages []Package
|
||||
}
|
||||
|
||||
type Package struct {
|
||||
Name string
|
||||
Duration time.Duration
|
||||
Coverage float64
|
||||
|
||||
Tests []Test
|
||||
}
|
||||
|
||||
type Test struct {
|
||||
Name string
|
||||
Duration time.Duration
|
||||
Result Result
|
||||
Output []string
|
||||
}
|
||||
|
||||
// FromEvents creates a Report from the given list of test events.
|
||||
func FromEvents(events []gotest.Event) Report {
|
||||
report := NewReportBuilder()
|
||||
for _, ev := range events {
|
||||
switch ev.Type {
|
||||
case "run_test":
|
||||
report.CreateTest(ev.Id, ev.Name)
|
||||
case "end_test":
|
||||
report.UpdateTest(ev.Id, ev.Result, ev.Duration)
|
||||
case "status": // ignore for now
|
||||
case "summary":
|
||||
report.CreatePackage(ev.Name, ev.Duration)
|
||||
default:
|
||||
fmt.Printf("unhandled event type: %v\n", ev.Type)
|
||||
}
|
||||
}
|
||||
return report.Build()
|
||||
}
|
||||
|
||||
// ReportBuilder builds Reports.
|
||||
type ReportBuilder struct {
|
||||
packages []Package
|
||||
ids []int
|
||||
tests map[int]Test
|
||||
}
|
||||
|
||||
func NewReportBuilder() *ReportBuilder {
|
||||
return &ReportBuilder{
|
||||
tests: make(map[int]Test),
|
||||
}
|
||||
}
|
||||
|
||||
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(id int, name string) {
|
||||
b.ids = append(b.ids, id)
|
||||
b.tests[id] = Test{Name: name}
|
||||
}
|
||||
|
||||
func (b *ReportBuilder) UpdateTest(id int, result string, duration time.Duration) {
|
||||
t := b.tests[id]
|
||||
t.Result = parseResult(result)
|
||||
t.Duration = duration
|
||||
b.tests[id] = t
|
||||
}
|
||||
|
||||
func (b *ReportBuilder) CreatePackage(name string, duration time.Duration) {
|
||||
var tests []Test
|
||||
for _, id := range b.ids {
|
||||
tests = append(tests, b.tests[id])
|
||||
}
|
||||
b.packages = append(b.packages, Package{
|
||||
Name: name,
|
||||
Duration: duration,
|
||||
Tests: tests,
|
||||
})
|
||||
b.ids = nil
|
||||
b.tests = make(map[int]Test)
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
}
|
39
pkg/gtr/gtr_test.go
Normal file
39
pkg/gtr/gtr_test.go
Normal file
@ -0,0 +1,39 @@
|
||||
package gtr
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/jstemmer/go-junit-report/v2/pkg/parser/gotest"
|
||||
|
||||
"github.com/google/go-cmp/cmp"
|
||||
)
|
||||
|
||||
func TestFromEvents(t *testing.T) {
|
||||
events := []gtop.Event{
|
||||
{Type: "run_test", Id: 1, Name: "TestOne"},
|
||||
{Type: "end_test", Id: 1, Name: "TestOne", Result: "PASS", Duration: 1 * time.Millisecond},
|
||||
{Type: "status", Result: "PASS"},
|
||||
{Type: "summary", Result: "ok", Name: "package/name", Duration: 1 * time.Millisecond},
|
||||
}
|
||||
expected := Report{
|
||||
Packages: []Package{
|
||||
{
|
||||
Name: "package/name",
|
||||
Duration: 1 * time.Millisecond,
|
||||
Tests: []Test{
|
||||
{
|
||||
Name: "TestOne",
|
||||
Duration: 1 * time.Millisecond,
|
||||
Result: PASS,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
actual := FromEvents(events)
|
||||
if diff := cmp.Diff(actual, expected); diff != "" {
|
||||
t.Errorf("FromEvents report incorrect, diff (-got, +want):\n%v", diff)
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user