parser/gotest: Add tests for compiled test output and parallel test output

This commit is contained in:
Joël Stemmer 2018-04-28 00:11:01 +01:00
parent a6b3b6f974
commit c5559de1a8
2 changed files with 22 additions and 1 deletions

View File

@ -77,6 +77,27 @@ var tests = []struct {
{Type: "output", Data: "exit status 1", Indent: 0}, {Type: "output", Data: "exit status 1", Indent: 0},
{Type: "summary", Result: "FAIL", Name: "package/name2", Duration: 151 * time.Millisecond}, {Type: "summary", Result: "FAIL", Name: "package/name2", Duration: 151 * time.Millisecond},
}}, }},
{"07-compiled_test.txt",
[]Event{
{Type: "run_test", Id: 1, Name: "TestOne"},
{Type: "end_test", Id: 1, Name: "TestOne", Result: "PASS", Duration: 60 * time.Millisecond},
{Type: "run_test", Id: 2, Name: "TestTwo"},
{Type: "end_test", Id: 2, Name: "TestTwo", Result: "PASS", Duration: 100 * time.Millisecond},
{Type: "status", Result: "PASS"},
}},
{"08-parallel.txt",
[]Event{
{Type: "run_test", Id: 1, Name: "TestDoFoo"},
{Type: "run_test", Id: 2, Name: "TestDoFoo2"},
{Type: "end_test", Id: 1, Name: "TestDoFoo", Result: "PASS", Duration: 270 * time.Millisecond},
{Type: "output", Data: "cov_test.go:10: DoFoo log 1", Indent: 1},
{Type: "output", Data: "cov_test.go:10: DoFoo log 2", Indent: 1},
{Type: "end_test", Id: 2, Name: "TestDoFoo2", Result: "PASS", Duration: 160 * time.Millisecond},
{Type: "output", Data: "cov_test.go:21: DoFoo2 log 1", Indent: 1},
{Type: "output", Data: "cov_test.go:21: DoFoo2 log 2", Indent: 1},
{Type: "status", Result: "PASS"},
{Type: "summary", Result: "ok", Name: "package/name", Duration: 440 * time.Millisecond},
}},
} }
func TestParse(t *testing.T) { func TestParse(t *testing.T) {

View File

@ -7,4 +7,4 @@
cov_test.go:21: DoFoo2 log 1 cov_test.go:21: DoFoo2 log 1
cov_test.go:21: DoFoo2 log 2 cov_test.go:21: DoFoo2 log 2
PASS PASS
ok github.com/dmitris/test-go-junit-report 0.440s ok package/name 0.440s