parser/gotest: Add support for parsing go test coverage

This commit is contained in:
Joël Stemmer 2018-04-28 00:16:14 +01:00
parent c5559de1a8
commit a58f8f1a19
2 changed files with 24 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import (
"bufio" "bufio"
"io" "io"
"regexp" "regexp"
"strconv"
"strings" "strings"
"time" "time"
) )
@ -18,6 +19,7 @@ type Event struct {
Duration time.Duration Duration time.Duration
Data string Data string
Indent int Indent int
CovPct float64
Hints map[string]string Hints map[string]string
} }
@ -27,6 +29,7 @@ var (
regexSummary = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+` + regexSummary = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+` +
`(?:(\d+\.\d+)s|\(cached\)|(\[\w+ failed]))` + `(?:(\d+\.\d+)s|\(cached\)|(\[\w+ failed]))` +
`(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements(?:\sin\s.+)?)?$`) `(?:\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. // 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]) p.status(matches[1])
} else if matches := regexSummary.FindStringSubmatch(line); len(matches) == 6 { } 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])
} else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 {
p.coverage(matches[1])
} else { } else {
p.output(line) 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) { func (p *parser) output(line string) {
// TODO: Count indentations, however don't assume every tab is an indentation // TODO: Count indentations, however don't assume every tab is an indentation
var indent int var indent int

View File

@ -98,6 +98,16 @@ var tests = []struct {
{Type: "status", Result: "PASS"}, {Type: "status", Result: "PASS"},
{Type: "summary", Result: "ok", Name: "package/name", Duration: 440 * time.Millisecond}, {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) { func TestParse(t *testing.T) {