mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Parse cached tests
This commit is contained in:
parent
76069cb328
commit
a7ad52d825
@ -28,7 +28,7 @@ var (
|
||||
regexEndTest = regexp.MustCompile(`((?: )*)--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`)
|
||||
regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
|
||||
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(.+))?)?$`)
|
||||
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+|\d+\.\d+)%\s+of\s+statements(?:\sin\s(.+))?$`)
|
||||
)
|
||||
@ -135,13 +135,13 @@ func (p *parser) status(result string) {
|
||||
})
|
||||
}
|
||||
|
||||
func (p *parser) summary(result, name, duration, failure, covpct, packages string) {
|
||||
func (p *parser) summary(result, name, duration, data, covpct, packages string) {
|
||||
p.add(Event{
|
||||
Type: "summary",
|
||||
Result: result,
|
||||
Name: name,
|
||||
Duration: parseSeconds(duration),
|
||||
Data: failure,
|
||||
Data: data,
|
||||
CovPct: parseCoverage(covpct),
|
||||
CovPackages: parsePackages(packages),
|
||||
})
|
||||
|
@ -320,7 +320,12 @@ var tests = []struct {
|
||||
{Type: "summary", Result: "FAIL", Name: "pkg/parallel", Duration: 3010 * time.Millisecond},
|
||||
}},
|
||||
{"21-cached",
|
||||
[]Event{}},
|
||||
[]Event{
|
||||
{Type: "run_test", Id: 1, Name: "TestOne"},
|
||||
{Type: "end_test", Id: 1, Name: "TestOne", Result: "PASS"},
|
||||
{Type: "status", Result: "PASS"},
|
||||
{Type: "summary", Result: "ok", Name: "package/one", Data: "(cached)"},
|
||||
}},
|
||||
{"22-whitespace",
|
||||
[]Event{}},
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user