parser/gotest: Initial support for parsing benchmarks

This commit is contained in:
Joël Stemmer 2018-06-15 21:53:57 +01:00
parent ff2fc90eeb
commit bac074db96

View File

@ -14,12 +14,11 @@ import (
) )
var ( var (
regexEndTest = regexp.MustCompile(`((?: )*)--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`) regexBenchmark = regexp.MustCompile(`^(Benchmark[^\s]+)\s(\d+|\d+\.\d+)\s((?:[^\s]+\s[^\s]+)+)`)
regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`) regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+|\d+\.\d+)%\s+of\s+statements(?:\sin\s(.+))?$`)
regexSummary = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+` + regexEndTest = regexp.MustCompile(`((?: )*)--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`)
`(?:(\d+\.\d+)s|(\(cached\)|\[\w+ failed]))` + regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
`(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements(?:\sin\s(.+))?)?$`) 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+\.\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.
@ -56,6 +55,10 @@ func (p *parser) parseLine(line string) {
p.summary(matches[1], matches[2], matches[3], matches[4], matches[5], matches[6]) p.summary(matches[1], matches[2], matches[3], matches[4], matches[5], matches[6])
} else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 3 { } else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 3 {
p.coverage(matches[1], matches[2]) p.coverage(matches[1], matches[2])
} else if matches := regexBenchmark.FindStringSubmatch(line); len(matches) == 4 {
fields := strings.Fields(matches[3])
//p.benchmark(matches[1], matches[2], fields)
p.benchmark(fields)
} else { } else {
p.output(line) p.output(line)
} }
@ -115,6 +118,13 @@ func (p *parser) coverage(percent, packages string) {
}) })
} }
func (p *parser) benchmark(fields []string) {
p.add(gtr.Event{
Type: "benchmark",
Name: fields[0],
})
}
func (p *parser) output(line string) { func (p *parser) output(line string) {
p.add(gtr.Event{Type: "output", Data: line}) p.add(gtr.Event{Type: "output", Data: line})
} }