gtr: Fix naming of Result constants

This commit is contained in:
Joël Stemmer 2019-10-08 00:38:10 +01:00
parent bac074db96
commit a52c1b921d
3 changed files with 38 additions and 37 deletions

View File

@ -96,13 +96,13 @@ func (b *ReportBuilder) findTest(name string) int {
func parseResult(r string) Result { func parseResult(r string) Result {
switch r { switch r {
case "PASS": case "PASS":
return PASS return Pass
case "FAIL": case "FAIL":
return FAIL return Fail
case "SKIP": case "SKIP":
return SKIP return Skip
default: default:
fmt.Printf("unknown result: %q\n", r) fmt.Printf("unknown result: %q\n", r)
return UNKNOWN return Unknown
} }
} }

View File

@ -2,6 +2,30 @@ package gtr
import "time" import "time"
type Result int
const (
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")
}
}
// TODO: provide some common types, or have a custom type (e.g. // TODO: provide some common types, or have a custom type (e.g.
// identifier:type, where identifier is a unique identifier for a particular // identifier:type, where identifier is a unique identifier for a particular
// parser.) // parser.)
@ -15,6 +39,8 @@ type Event struct {
Duration time.Duration Duration time.Duration
Data string Data string
Indent int Indent int
// Code coverage
CovPct float64 CovPct float64
CovPackages []string CovPackages []string
} }

View File

@ -10,31 +10,6 @@ import (
"github.com/jstemmer/go-junit-report/v2/pkg/junit" "github.com/jstemmer/go-junit-report/v2/pkg/junit"
) )
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 { type Report struct {
Packages []Package Packages []Package
} }
@ -42,7 +17,7 @@ type Report struct {
func (r *Report) HasFailures() bool { func (r *Report) HasFailures() bool {
for _, pkg := range r.Packages { for _, pkg := range r.Packages {
for _, t := range pkg.Tests { for _, t := range pkg.Tests {
if t.Result == FAIL { if t.Result == Fail {
return true return true
} }
} }
@ -103,12 +78,12 @@ func JUnit(report Report) junit.Testsuites {
Name: test.Name, Name: test.Name,
Time: junit.FormatDuration(test.Duration), Time: junit.FormatDuration(test.Duration),
} }
if test.Result == FAIL { if test.Result == Fail {
tc.Failure = &junit.Result{ tc.Failure = &junit.Result{
Message: "Failed", Message: "Failed",
Data: strings.Join(test.Output, "\n"), Data: strings.Join(test.Output, "\n"),
} }
} else if test.Result == SKIP { } else if test.Result == Skip {
tc.Skipped = &junit.Result{ tc.Skipped = &junit.Result{
Data: strings.Join(test.Output, "\n"), Data: strings.Join(test.Output, "\n"),
} }