From a6b3b6f97425b42974230502ab13cde0ac34c107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 27 Apr 2018 01:21:08 +0100 Subject: [PATCH] parser/gotest: Add tests for go1.4 output and multiple packages --- pkg/parser/gotest/gotest_test.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index 196fbd6..fc53e21 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -47,6 +47,36 @@ var tests = []struct { {Type: "status", Result: "PASS"}, {Type: "summary", Result: "ok", Name: "package/name", Duration: 150 * time.Millisecond}, }}, + {"04-go_1_4.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"}, + {Type: "summary", Result: "ok", Name: "package/name", Duration: 160 * time.Millisecond}, + }}, + // Test 05 is skipped, because it was actually testing XML output + {"06-mixed.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"}, + {Type: "summary", Result: "ok", Name: "package/name1", Duration: 160 * time.Millisecond}, + {Type: "run_test", Id: 3, Name: "TestOne"}, + {Type: "end_test", Id: 3, 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: 4, Name: "TestTwo"}, + {Type: "end_test", Id: 4, 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/name2", Duration: 151 * time.Millisecond}, + }}, } func TestParse(t *testing.T) {