mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Parse build failures
This commit is contained in:
parent
2e3761de80
commit
48c4de6257
@ -62,7 +62,7 @@ func (p *parser) parseLine(line string) {
|
|||||||
} else if matches := regexStatus.FindStringSubmatch(line); len(matches) == 2 {
|
} else if matches := regexStatus.FindStringSubmatch(line); len(matches) == 2 {
|
||||||
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], matches[5])
|
p.summary(matches[1], matches[2], matches[3], matches[4], matches[5])
|
||||||
} else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 {
|
} else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 {
|
||||||
p.coverage(matches[1])
|
p.coverage(matches[1])
|
||||||
} else {
|
} else {
|
||||||
@ -112,12 +112,13 @@ func (p *parser) status(result string) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *parser) summary(result, name, duration, covpct string) {
|
func (p *parser) summary(result, name, duration, failure, covpct string) {
|
||||||
p.add(Event{
|
p.add(Event{
|
||||||
Type: "summary",
|
Type: "summary",
|
||||||
Result: result,
|
Result: result,
|
||||||
Name: name,
|
Name: name,
|
||||||
Duration: parseSeconds(duration),
|
Duration: parseSeconds(duration),
|
||||||
|
Data: failure,
|
||||||
CovPct: parseCoverage(covpct),
|
CovPct: parseCoverage(covpct),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -179,24 +179,54 @@ var tests = []struct {
|
|||||||
{Type: "status", Result: "FAIL"},
|
{Type: "status", Result: "FAIL"},
|
||||||
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 50 * time.Millisecond},
|
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 50 * time.Millisecond},
|
||||||
}},
|
}},
|
||||||
|
{"13-syntax-error.txt",
|
||||||
|
[]Event{
|
||||||
|
{Type: "output", Data: "# package/name/failing1"},
|
||||||
|
{Type: "output", Data: "failing1/failing_test.go:15: undefined: x"},
|
||||||
|
{Type: "output", Data: "# package/name/failing2"},
|
||||||
|
{Type: "output", Data: "failing2/another_failing_test.go:20: undefined: y"},
|
||||||
|
{Type: "output", Data: "# package/name/setupfailing1"},
|
||||||
|
{Type: "output", Data: "setupfailing1/failing_test.go:4: cannot find package \"other/package\" in any of:"},
|
||||||
|
{Type: "output", Data: " /path/vendor (vendor tree)"},
|
||||||
|
{Type: "output", Data: " /path/go/root (from $GOROOT)"},
|
||||||
|
{Type: "output", Data: " /path/go/path (from $GOPATH)"},
|
||||||
|
{Type: "run_test", Id: 1, Name: "TestA"},
|
||||||
|
{Type: "end_test", Id: 1, Name: "TestA", Result: "PASS", Duration: 100 * time.Millisecond},
|
||||||
|
{Type: "status", Result: "PASS"},
|
||||||
|
{Type: "summary", Result: "ok", Name: "package/name/passing1", Duration: 100 * time.Millisecond},
|
||||||
|
{Type: "run_test", Id: 2, Name: "TestB"},
|
||||||
|
{Type: "end_test", Id: 2, Name: "TestB", Result: "PASS", Duration: 100 * time.Millisecond},
|
||||||
|
{Type: "status", Result: "PASS"},
|
||||||
|
{Type: "summary", Result: "ok", Name: "package/name/passing2", Duration: 100 * time.Millisecond},
|
||||||
|
{Type: "summary", Result:"FAIL", Name:"package/name/failing1", Data:"[build failed]"},
|
||||||
|
{Type: "summary", Result:"FAIL", Name:"package/name/failing2", Data:"[build failed]"},
|
||||||
|
{Type: "summary", Result:"FAIL", Name:"package/name/setupfailing1", Data:"[setup failed]"},
|
||||||
|
}},
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParse(t *testing.T) {
|
func TestParse(t *testing.T) {
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
f, err := os.Open(testdataRoot + test.in)
|
t.Run(test.in, func(t *testing.T) {
|
||||||
if err != nil {
|
testParse(t, test.in, test.expected)
|
||||||
t.Errorf("error reading %s: %v", test.in, err)
|
})
|
||||||
continue
|
}
|
||||||
}
|
}
|
||||||
actual, err := Parse(f)
|
|
||||||
f.Close()
|
func testParse(t *testing.T, file string, expected []Event) {
|
||||||
if err != nil {
|
f, err := os.Open(testdataRoot + file)
|
||||||
t.Errorf("Parse(%s) error: %v", test.in, err)
|
if err != nil {
|
||||||
continue
|
t.Errorf("error reading %s: %v", file, err)
|
||||||
}
|
return
|
||||||
|
}
|
||||||
if diff := cmp.Diff(actual, test.expected); diff != "" {
|
defer f.Close()
|
||||||
t.Errorf("Parse %s returned unexpected events, diff (-got, +want):\n%v", test.in, diff)
|
|
||||||
}
|
actual, err := Parse(f)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Parse(%s) error: %v", file, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if diff := cmp.Diff(actual, expected); diff != "" {
|
||||||
|
t.Errorf("Parse %s returned unexpected events, diff (-got, +want):\n%v", file, diff)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user