Report testsuite failures even if all tests succeeded

Fixes #87
This commit is contained in:
Joël Stemmer 2019-10-03 23:53:41 +01:00
parent 8b849e7995
commit 1b8b67371c
4 changed files with 63 additions and 10 deletions

View File

@ -1506,6 +1506,35 @@ var testCases = []TestCase{
}, },
}, },
}, },
{
name: "32-failed-summary.txt",
reportName: "32-report.xml",
report: &parser.Report{
Packages: []parser.Package{
{
Name: "github.com/jstemmer/test/failedsummary",
Duration: 5 * time.Millisecond,
Time: 5,
Tests: []*parser.Test{
{
Name: "TestOne",
Duration: 0,
Time: 0,
Result: parser.PASS,
Output: []string{},
},
{
Name: "Failure",
Duration: 0,
Time: 0,
Result: parser.FAIL,
Output: []string{"panic: panic"},
},
},
},
},
},
},
} }
func TestParser(t *testing.T) { func TestParser(t *testing.T) {

View File

@ -91,9 +91,6 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
// current test // current test
var cur string var cur string
// keep track if we've already seen a summary for the current test
var seenSummary bool
// coverage percentage report for current package // coverage percentage report for current package
var coveragePct string var coveragePct string
@ -128,7 +125,6 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
// clear the current build package, so output lines won't be added to that build // clear the current build package, so output lines won't be added to that build
capturedPackage = "" capturedPackage = ""
seenSummary = false
} else if matches := regexBenchmark.FindStringSubmatch(line); len(matches) == 6 { } else if matches := regexBenchmark.FindStringSubmatch(line); len(matches) == 6 {
bytes, _ := strconv.Atoi(matches[4]) bytes, _ := strconv.Atoi(matches[4])
allocs, _ := strconv.Atoi(matches[5]) allocs, _ := strconv.Atoi(matches[5])
@ -156,9 +152,10 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
Result: FAIL, Result: FAIL,
Output: packageCaptures[matches[2]], Output: packageCaptures[matches[2]],
}) })
} else if matches[1] == "FAIL" && len(tests) == 0 && len(buffers[cur]) > 0 { } else if matches[1] == "FAIL" && !containsFailures(tests) && len(buffers[cur]) > 0 {
// This package didn't have any tests, but it failed with some // This package didn't have any failing tests, but still it
// output. Create a dummy test with the output. // failed with some output. Create a dummy test with the
// output.
tests = append(tests, &Test{ tests = append(tests, &Test{
Name: "Failure", Name: "Failure",
Result: FAIL, Result: FAIL,
@ -237,9 +234,10 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
// current line is build failure capture for the current built package // current line is build failure capture for the current built package
packageCaptures[capturedPackage] = append(packageCaptures[capturedPackage], line) packageCaptures[capturedPackage] = append(packageCaptures[capturedPackage], line)
} else if regexSummary.MatchString(line) { } else if regexSummary.MatchString(line) {
// don't store any output after the summary // unset current test name so any additional output after the
seenSummary = true // summary is captured separately.
} else if !seenSummary { cur = ""
} else {
// buffer anything else that we didn't recognize // buffer anything else that we didn't recognize
buffers[cur] = append(buffers[cur], line) buffers[cur] = append(buffers[cur], line)
@ -296,6 +294,15 @@ func findTest(tests []*Test, name string) *Test {
return nil return nil
} }
func containsFailures(tests []*Test) bool {
for _, test := range tests {
if test.Result == FAIL {
return true
}
}
return false
}
// Failures counts the number of failed tests in this report // Failures counts the number of failed tests in this report
func (r *Report) Failures() int { func (r *Report) Failures() int {
count := 0 count := 0

5
testdata/32-failed-summary.txt vendored Normal file
View File

@ -0,0 +1,5 @@
=== RUN TestOne
--- PASS: TestOne (0.00s)
PASS
panic: panic
FAIL github.com/jstemmer/test/failedsummary 0.005s

12
testdata/32-report.xml vendored Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite tests="2" failures="1" time="0.005" name="github.com/jstemmer/test/failedsummary">
<properties>
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="failedsummary" name="TestOne" time="0.000"></testcase>
<testcase classname="failedsummary" name="Failure" time="0.000">
<failure message="Failed" type="">panic: panic</failure>
</testcase>
</testsuite>
</testsuites>