Deprecated Time field, use a time.Duration instead.

The parser.Package.Time and parser.Test.Time fields are currently still
supported, but will be removed in the future.
This commit is contained in:
Joël Stemmer 2018-04-21 17:09:34 +01:00
parent c1eb342963
commit 1ce4b93a20
4 changed files with 441 additions and 305 deletions

View File

@ -7,6 +7,7 @@ import (
"io" "io"
"runtime" "runtime"
"strings" "strings"
"time"
"github.com/jstemmer/go-junit-report/parser" "github.com/jstemmer/go-junit-report/parser"
) )
@ -67,7 +68,7 @@ func JUnitReportXML(report *parser.Report, noXMLHeader bool, goVersion string, w
ts := JUnitTestSuite{ ts := JUnitTestSuite{
Tests: len(pkg.Tests), Tests: len(pkg.Tests),
Failures: 0, Failures: 0,
Time: formatTime(pkg.Time), Time: formatTime(pkg.Duration),
Name: pkg.Name, Name: pkg.Name,
Properties: []JUnitProperty{}, Properties: []JUnitProperty{},
TestCases: []JUnitTestCase{}, TestCases: []JUnitTestCase{},
@ -93,7 +94,7 @@ func JUnitReportXML(report *parser.Report, noXMLHeader bool, goVersion string, w
testCase := JUnitTestCase{ testCase := JUnitTestCase{
Classname: classname, Classname: classname,
Name: test.Name, Name: test.Name,
Time: formatTime(test.Time), Time: formatTime(test.Duration),
Failure: nil, Failure: nil,
} }
@ -135,6 +136,6 @@ func JUnitReportXML(report *parser.Report, noXMLHeader bool, goVersion string, w
return nil return nil
} }
func formatTime(time int) string { func formatTime(d time.Duration) string {
return fmt.Sprintf("%.3f", float64(time)/1000.0) return fmt.Sprintf("%.3f", d.Seconds())
} }

File diff suppressed because it is too large Load Diff

View File

@ -4,8 +4,8 @@ import (
"bufio" "bufio"
"io" "io"
"regexp" "regexp"
"strconv"
"strings" "strings"
"time"
) )
// Result represents a test result. // Result represents a test result.
@ -26,17 +26,23 @@ type Report struct {
// Package contains the test results of a single package. // Package contains the test results of a single package.
type Package struct { type Package struct {
Name string Name string
Time int Duration time.Duration
Tests []*Test Tests []*Test
CoveragePct string CoveragePct string
// Time is deprecated, use Duration instead.
Time int // in milliseconds
} }
// Test contains the results of a single test. // Test contains the results of a single test.
type Test struct { type Test struct {
Name string Name string
Time int Duration time.Duration
Result Result Result Result
Output []string Output []string
// Time is deprecated, use Duration instead.
Time int // in milliseconds
} }
var ( var (
@ -59,7 +65,7 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
var tests []*Test var tests []*Test
// sum of tests' time, use this if current test has no result line (when it is compiled test) // sum of tests' time, use this if current test has no result line (when it is compiled test)
testsTime := 0 var testsTime time.Duration
// current test // current test
var cur string var cur string
@ -133,9 +139,11 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
// all tests in this package are finished // all tests in this package are finished
report.Packages = append(report.Packages, Package{ report.Packages = append(report.Packages, Package{
Name: matches[2], Name: matches[2],
Time: parseTime(matches[3]), Duration: parseSeconds(matches[3]),
Tests: tests, Tests: tests,
CoveragePct: coveragePct, CoveragePct: coveragePct,
Time: int(parseSeconds(matches[3]) / time.Millisecond), // deprecated
}) })
buffers[cur] = buffers[cur][0:0] buffers[cur] = buffers[cur][0:0]
@ -161,9 +169,10 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
test.Output = buffers[cur] test.Output = buffers[cur]
test.Name = matches[2] test.Name = matches[2]
testTime := parseTime(matches[3]) * 10 test.Duration = parseSeconds(matches[3])
test.Time = testTime testsTime += test.Duration
testsTime += testTime
test.Time = int(test.Duration / time.Millisecond) // deprecated
} else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 { } else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 {
coveragePct = matches[1] coveragePct = matches[1]
} else if matches := regexOutput.FindStringSubmatch(line); capturedPackage == "" && len(matches) == 3 { } else if matches := regexOutput.FindStringSubmatch(line); capturedPackage == "" && len(matches) == 3 {
@ -194,7 +203,8 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
// no result line found // no result line found
report.Packages = append(report.Packages, Package{ report.Packages = append(report.Packages, Package{
Name: pkgName, Name: pkgName,
Time: testsTime, Duration: testsTime,
Time: int(testsTime / time.Millisecond),
Tests: tests, Tests: tests,
CoveragePct: coveragePct, CoveragePct: coveragePct,
}) })
@ -203,12 +213,13 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
return report, nil return report, nil
} }
func parseTime(time string) int { func parseSeconds(t string) time.Duration {
t, err := strconv.Atoi(strings.Replace(time, ".", "", -1)) if t == "" {
if err != nil { return time.Duration(0)
return 0
} }
return t // ignore error
d, _ := time.ParseDuration(t + "s")
return d
} }
func findTest(tests []*Test, name string) *Test { func findTest(tests []*Test, name string) *Test {

26
parser/parser_test.go Normal file
View File

@ -0,0 +1,26 @@
package parser
import (
"testing"
"time"
)
func TestParseSeconds(t *testing.T) {
tests := []struct {
in string
d time.Duration
}{
{"", 0},
{"4", 4 * time.Second},
{"0.1", 100 * time.Millisecond},
{"0.050", 50 * time.Millisecond},
{"2.003", 2*time.Second + 3*time.Millisecond},
}
for _, test := range tests {
d := parseSeconds(test.in)
if d != test.d {
t.Errorf("parseSeconds(%q) == %v, want %v\n", test.in, d, test.d)
}
}
}