parser/gotest: Handle test output logging

This commit is contained in:
Joël Stemmer 2018-04-27 01:10:30 +01:00
parent 292d0c814b
commit 0512acf25e
2 changed files with 20 additions and 1 deletions

View File

@ -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,
}) })
} }

View File

@ -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) {