diff --git a/pkg/parser/gotest/gotest.go b/pkg/parser/gotest/gotest.go index f0bb8e7..3b9a466 100644 --- a/pkg/parser/gotest/gotest.go +++ b/pkg/parser/gotest/gotest.go @@ -5,6 +5,7 @@ import ( "bufio" "io" "regexp" + "strconv" "strings" "time" ) @@ -18,6 +19,7 @@ type Event struct { Duration time.Duration Data string Indent int + CovPct float64 Hints map[string]string } @@ -27,6 +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.+)?$`) ) // Parse parses Go test output from the given io.Reader r. @@ -60,6 +63,8 @@ func (p *parser) parseLine(line string) { p.status(matches[1]) } else if matches := regexSummary.FindStringSubmatch(line); len(matches) == 6 { p.summary(matches[1], matches[2], matches[3]) + } else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 { + p.coverage(matches[1]) } else { p.output(line) } @@ -114,6 +119,15 @@ func (p *parser) summary(result, name, duration string) { }) } +func (p *parser) coverage(percent string) { + // ignore error + pct, _ := strconv.ParseFloat(percent, 64) + p.add(Event{ + Type: "coverage", + CovPct: pct, + }) +} + func (p *parser) output(line string) { // TODO: Count indentations, however don't assume every tab is an indentation var indent int diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index 59313af..ebb3835 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -98,6 +98,16 @@ var tests = []struct { {Type: "status", Result: "PASS"}, {Type: "summary", Result: "ok", Name: "package/name", Duration: 440 * time.Millisecond}, }}, + {"09-coverage.txt", + []Event{ + {Type: "run_test", Id: 1, Name: "TestZ"}, + {Type: "end_test", Id: 1, Name: "TestZ", Result: "PASS", Duration: 60 * time.Millisecond}, + {Type: "run_test", Id: 2, Name: "TestA"}, + {Type: "end_test", Id: 2, Name: "TestA", Result: "PASS", Duration: 100 * time.Millisecond}, + {Type: "status", Result: "PASS"}, + {Type: "coverage", CovPct: 13.37}, + {Type: "summary", Result: "ok", Name: "package/name", Duration: 160 * time.Millisecond}, + }}, } func TestParse(t *testing.T) {