diff --git a/pkg/parser/gotest/gotest.go b/pkg/parser/gotest/gotest.go index 3b9a466..b817775 100644 --- a/pkg/parser/gotest/gotest.go +++ b/pkg/parser/gotest/gotest.go @@ -29,7 +29,7 @@ var ( regexSummary = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+` + `(?:(\d+\.\d+)s|\(cached\)|(\[\w+ failed]))` + `(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements(?:\sin\s.+)?)?$`) - regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+\.\d+)%\s+of\s+statements(?:\sin\s.+)?$`) + regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+|\d+\.\d+)%\s+of\s+statements(?:\sin\s.+)?$`) ) // Parse parses Go test output from the given io.Reader r. @@ -62,7 +62,7 @@ func (p *parser) parseLine(line string) { } else if matches := regexStatus.FindStringSubmatch(line); len(matches) == 2 { p.status(matches[1]) } else if matches := regexSummary.FindStringSubmatch(line); len(matches) == 6 { - p.summary(matches[1], matches[2], matches[3]) + p.summary(matches[1], matches[2], matches[3], matches[5]) } else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 { p.coverage(matches[1]) } else { @@ -110,21 +110,20 @@ func (p *parser) status(result string) { }) } -func (p *parser) summary(result, name, duration string) { +func (p *parser) summary(result, name, duration, covpct string) { p.add(Event{ Type: "summary", Result: result, Name: name, Duration: parseSeconds(duration), + CovPct: parseCoverage(covpct), }) } func (p *parser) coverage(percent string) { - // ignore error - pct, _ := strconv.ParseFloat(percent, 64) p.add(Event{ Type: "coverage", - CovPct: pct, + CovPct: parseCoverage(percent), }) } @@ -149,3 +148,12 @@ func parseSeconds(s string) time.Duration { d, _ := time.ParseDuration(s + "s") return d } + +func parseCoverage(percent string) float64 { + if percent == "" { + return 0 + } + // ignore error + pct, _ := strconv.ParseFloat(percent, 64) + return pct +} diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index ebb3835..fb0a49b 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -108,6 +108,21 @@ var tests = []struct { {Type: "coverage", CovPct: 13.37}, {Type: "summary", Result: "ok", Name: "package/name", Duration: 160 * time.Millisecond}, }}, + {"10-multipkg-coverage.txt", + []Event{ + {Type: "run_test", Id: 1, Name: "TestA"}, + {Type: "end_test", Id: 1, Name: "TestA", Result: "PASS", Duration: 100 * time.Millisecond}, + {Type: "run_test", Id: 2, Name: "TestB"}, + {Type: "end_test", Id: 2, Name: "TestB", Result: "PASS", Duration: 300 * time.Millisecond}, + {Type: "status", Result: "PASS"}, + {Type: "coverage", CovPct: 10}, + {Type: "summary", Result: "ok", Name: "package1/foo", Duration: 400 * time.Millisecond, CovPct: 10}, + {Type: "run_test", Id: 3, Name: "TestC"}, + {Type: "end_test", Id: 3, Name: "TestC", Result: "PASS", Duration: 4200 * time.Millisecond}, + {Type: "status", Result: "PASS"}, + {Type: "coverage", CovPct: 99.8}, + {Type: "summary", Result: "ok", Name: "package2/bar", Duration: 4200 * time.Millisecond, CovPct: 99.8}, + }}, } func TestParse(t *testing.T) {