diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index a68d8a8..5576ecc 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -425,7 +425,109 @@ var tests = []struct { {Type: "status", Result: "PASS"}, {Type: "summary", Result: "ok", Name: "sixteen/cpu", Duration: 1522 * time.Millisecond}, }}, - {"30-stdout", []gtr.Event{}}, + {"30-stdout", + []gtr.Event{ + {Type: "run_test", Name: "TestFailWithStdoutAndTestOutput"}, + {Type: "output", Data: "multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "single-line stdout"}, + {Type: "end_test", Name: "TestFailWithStdoutAndTestOutput", Result: "FAIL", Duration: 100 * time.Millisecond}, + {Type: "output", Data: " example_test.go:13: single-line error"}, + {Type: "output", Data: " example_test.go:14: multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " error"}, + {Type: "run_test", Name: "TestFailWithStdoutAndNoTestOutput"}, + {Type: "output", Data: "multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "single-line stdout"}, + {Type: "end_test", Name: "TestFailWithStdoutAndNoTestOutput", Result: "FAIL", Duration: 150 * time.Millisecond}, + {Type: "run_test", Name: "TestFailWithTestOutput"}, + {Type: "end_test", Name: "TestFailWithTestOutput", Result: "FAIL", Duration: 200 * time.Millisecond}, + {Type: "output", Data: " example_test.go:26: single-line error"}, + {Type: "output", Data: " example_test.go:27: multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " error"}, + {Type: "run_test", Name: "TestFailWithNoTestOutput"}, + {Type: "end_test", Name: "TestFailWithNoTestOutput", Result: "FAIL", Duration: 250 * time.Millisecond}, + {Type: "run_test", Name: "TestPassWithStdoutAndTestOutput"}, + {Type: "output", Data: "multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "single-line stdout"}, + {Type: "end_test", Name: "TestPassWithStdoutAndTestOutput", Result: "PASS", Duration: 300 * time.Millisecond}, + {Type: "output", Data: " example_test.go:39: single-line info"}, + {Type: "output", Data: " example_test.go:40: multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " info"}, + {Type: "run_test", Name: "TestPassWithStdoutAndNoTestOutput"}, + {Type: "output", Data: "multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "single-line stdout"}, + {Type: "end_test", Name: "TestPassWithStdoutAndNoTestOutput", Result: "PASS", Duration: 350 * time.Millisecond}, + {Type: "run_test", Name: "TestPassWithTestOutput"}, + {Type: "end_test", Name: "TestPassWithTestOutput", Result: "PASS", Duration: 400 * time.Millisecond}, + {Type: "output", Data: " example_test.go:51: single-line info"}, + {Type: "output", Data: " example_test.go:52: multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " info"}, + {Type: "run_test", Name: "TestPassWithNoTestOutput"}, + {Type: "end_test", Name: "TestPassWithNoTestOutput", Result: "PASS", Duration: 500 * time.Millisecond}, + {Type: "run_test", Name: "TestSubtests"}, + {Type: "run_test", Name: "TestSubtests/TestFailWithStdoutAndTestOutput"}, + {Type: "output", Data: "1 multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "1 single-line stdout"}, + {Type: "run_test", Name: "TestSubtests/TestFailWithStdoutAndNoTestOutput"}, + {Type: "output", Data: "2 multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "2 single-line stdout"}, + {Type: "run_test", Name: "TestSubtests/TestFailWithTestOutput"}, + {Type: "run_test", Name: "TestSubtests/TestFailWithNoTestOutput"}, + {Type: "run_test", Name: "TestSubtests/TestPassWithStdoutAndTestOutput"}, + {Type: "output", Data: "4 multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "4 single-line stdout"}, + {Type: "run_test", Name: "TestSubtests/TestPassWithStdoutAndNoTestOutput"}, + {Type: "output", Data: "5 multi"}, + {Type: "output", Data: "line"}, + {Type: "output", Data: "stdout"}, + {Type: "output", Data: "5 single-line stdout"}, + {Type: "run_test", Name: "TestSubtests/TestPassWithTestOutput"}, + {Type: "run_test", Name: "TestSubtests/TestPassWithNoTestOutput"}, + {Type: "end_test", Name: "TestSubtests", Result: "FAIL", Duration: 2270 * time.Millisecond}, + {Type: "end_test", Name: "TestSubtests/TestFailWithStdoutAndTestOutput", Result: "FAIL", Indent: 1, Duration: 100 * time.Millisecond}, + {Type: "output", Data: " example_test.go:65: 1 single-line error"}, + {Type: "output", Data: " example_test.go:66: 1 multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " error"}, + {Type: "end_test", Name: "TestSubtests/TestFailWithStdoutAndNoTestOutput", Result: "FAIL", Indent: 1, Duration: 150 * time.Millisecond}, + {Type: "end_test", Name: "TestSubtests/TestFailWithTestOutput", Result: "FAIL", Indent: 1, Duration: 200 * time.Millisecond}, + {Type: "output", Data: " example_test.go:78: 3 single-line error"}, + {Type: "output", Data: " example_test.go:79: 3 multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " error"}, + {Type: "end_test", Name: "TestSubtests/TestFailWithNoTestOutput", Result: "FAIL", Indent: 1, Duration: 250 * time.Millisecond}, + {Type: "end_test", Name: "TestSubtests/TestPassWithStdoutAndTestOutput", Result: "PASS", Indent: 1, Duration: 300 * time.Millisecond}, + {Type: "output", Data: " example_test.go:91: 4 single-line info"}, + {Type: "output", Data: " example_test.go:92: 4 multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " info"}, + {Type: "end_test", Name: "TestSubtests/TestPassWithStdoutAndNoTestOutput", Result: "PASS", Indent: 1, Duration: 350 * time.Millisecond}, + {Type: "end_test", Name: "TestSubtests/TestPassWithTestOutput", Result: "PASS", Indent: 1, Duration: 400 * time.Millisecond}, + {Type: "output", Data: " example_test.go:103: 6 single-line info"}, + {Type: "output", Data: " example_test.go:104: 6 multi"}, + {Type: "output", Data: " line"}, + {Type: "output", Data: " info"}, + {Type: "end_test", Name: "TestSubtests/TestPassWithNoTestOutput", Result: "PASS", Indent: 1, Duration: 500 * time.Millisecond}, + {Type: "status", Result: "FAIL"}, + {Type: "summary", Result: "FAIL", Name: "package/name1", Duration: 4567 * time.Millisecond}, + }}, {"31-syntax-error-test-binary", []gtr.Event{ {Type: "output", Data: "# package/name/failing1 [package/name/failing1.test]"},