mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Handle test output logging
This commit is contained in:
parent
292d0c814b
commit
0512acf25e
@ -115,10 +115,15 @@ func (p *parser) summary(result, name, duration string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *parser) output(line string) {
|
func (p *parser) output(line string) {
|
||||||
|
// TODO: Count indentations, however don't assume every tab is an indentation
|
||||||
|
var indent int
|
||||||
|
for indent = 0; strings.HasPrefix(line, "\t"); indent++ {
|
||||||
|
line = line[1:]
|
||||||
|
}
|
||||||
p.add(Event{
|
p.add(Event{
|
||||||
Type: "output",
|
Type: "output",
|
||||||
Data: line,
|
Data: line,
|
||||||
Indent: 0, // TODO
|
Indent: indent,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,6 +23,20 @@ var tests = []struct {
|
|||||||
{Type: "status", Result: "PASS"},
|
{Type: "status", Result: "PASS"},
|
||||||
{Type: "summary", Result: "ok", Name: "package/name", Duration: 160 * time.Millisecond},
|
{Type: "summary", Result: "ok", Name: "package/name", Duration: 160 * time.Millisecond},
|
||||||
}},
|
}},
|
||||||
|
{"02-fail.txt",
|
||||||
|
[]Event{
|
||||||
|
{Type: "run_test", Id: 1, Name: "TestOne"},
|
||||||
|
{Type: "end_test", Id: 1, Name: "TestOne", Result: "FAIL", Duration: 20 * time.Millisecond},
|
||||||
|
{Type: "output", Data: "file_test.go:11: Error message", Indent: 1},
|
||||||
|
{Type: "output", Data: "file_test.go:11: Longer", Indent: 1},
|
||||||
|
{Type: "output", Data: "error", Indent: 2},
|
||||||
|
{Type: "output", Data: "message.", Indent: 2},
|
||||||
|
{Type: "run_test", Id: 2, Name: "TestTwo"},
|
||||||
|
{Type: "end_test", Id: 2, Name: "TestTwo", Result: "PASS", Duration: 130 * time.Millisecond},
|
||||||
|
{Type: "status", Result: "FAIL"},
|
||||||
|
{Type: "output", Data: "exit status 1", Indent: 0},
|
||||||
|
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 151 * time.Millisecond},
|
||||||
|
}},
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParse(t *testing.T) {
|
func TestParse(t *testing.T) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user