From c5559de1a84dcf1e8c1a735d80a8dd77e6aa601d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 28 Apr 2018 00:11:01 +0100 Subject: [PATCH] parser/gotest: Add tests for compiled test output and parallel test output --- pkg/parser/gotest/gotest_test.go | 21 +++++++++++++++++++++ testdata/08-parallel.txt | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index fc53e21..59313af 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -77,6 +77,27 @@ var tests = []struct { {Type: "output", Data: "exit status 1", Indent: 0}, {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) { diff --git a/testdata/08-parallel.txt b/testdata/08-parallel.txt index a24e56a..6bdb8cb 100644 --- a/testdata/08-parallel.txt +++ b/testdata/08-parallel.txt @@ -7,4 +7,4 @@ cov_test.go:21: DoFoo2 log 1 cov_test.go:21: DoFoo2 log 2 PASS -ok github.com/dmitris/test-go-junit-report 0.440s +ok package/name 0.440s