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 {
switch r {
case "PASS":
return PASS
return Pass
case "FAIL":
return FAIL
return Fail
case "SKIP":
return SKIP
return Skip
default:
fmt.Printf("unknown result: %q\n", r)
return UNKNOWN
return Unknown
}
}

View File

@ -2,6 +2,30 @@ package gtr
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.
// identifier:type, where identifier is a unique identifier for a particular
// parser.)
@ -10,11 +34,13 @@ import "time"
type Event struct {
Type string
Name string
Result string
Duration time.Duration
Data string
Indent int
Name string
Result string
Duration time.Duration
Data string
Indent int
// Code coverage
CovPct float64
CovPackages []string
}

View File

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