mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
parent
e02a3f88c0
commit
4e217bedba
@ -520,7 +520,7 @@ var testCases = []TestCase{
|
|||||||
Name: "package/name/failing1",
|
Name: "package/name/failing1",
|
||||||
Tests: []*parser.Test{
|
Tests: []*parser.Test{
|
||||||
{
|
{
|
||||||
Name: "build failed",
|
Name: "[build failed]",
|
||||||
Time: 0,
|
Time: 0,
|
||||||
Result: parser.FAIL,
|
Result: parser.FAIL,
|
||||||
Output: []string{
|
Output: []string{
|
||||||
@ -533,7 +533,7 @@ var testCases = []TestCase{
|
|||||||
Name: "package/name/failing2",
|
Name: "package/name/failing2",
|
||||||
Tests: []*parser.Test{
|
Tests: []*parser.Test{
|
||||||
{
|
{
|
||||||
Name: "build failed",
|
Name: "[build failed]",
|
||||||
Time: 0,
|
Time: 0,
|
||||||
Result: parser.FAIL,
|
Result: parser.FAIL,
|
||||||
Output: []string{
|
Output: []string{
|
||||||
@ -542,6 +542,22 @@ var testCases = []TestCase{
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "package/name/setupfailing1",
|
||||||
|
Tests: []*parser.Test{
|
||||||
|
{
|
||||||
|
Name: "[setup failed]",
|
||||||
|
Time: 0,
|
||||||
|
Result: parser.FAIL,
|
||||||
|
Output: []string{
|
||||||
|
"setupfailing1/failing_test.go:4: cannot find package \"other/package\" in any of:",
|
||||||
|
"\t/path/vendor (vendor tree)",
|
||||||
|
"\t/path/go/root (from $GOROOT)",
|
||||||
|
"\t/path/go/path (from $GOPATH)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -42,7 +42,7 @@ type Test struct {
|
|||||||
var (
|
var (
|
||||||
regexStatus = regexp.MustCompile(`^\s*--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+)(?: seconds|s)\)$`)
|
regexStatus = regexp.MustCompile(`^\s*--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+)(?: seconds|s)\)$`)
|
||||||
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+\.\d+)%\s+of\s+statements$`)
|
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+\.\d+)%\s+of\s+statements$`)
|
||||||
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+(?:(\d+\.\d+)s|(\[build failed]))(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements)?$`)
|
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+(?:(\d+\.\d+)s|(\[\w+ failed]))(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements)?$`)
|
||||||
regexOutput = regexp.MustCompile(`( )*\t(.*)`)
|
regexOutput = regexp.MustCompile(`( )*\t(.*)`)
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -98,11 +98,11 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
|
|||||||
if matches[5] != "" {
|
if matches[5] != "" {
|
||||||
coveragePct = matches[5]
|
coveragePct = matches[5]
|
||||||
}
|
}
|
||||||
if matches[4] == "[build failed]" {
|
if strings.HasSuffix(matches[4], "failed]") {
|
||||||
// the build of the package failed, inject a dummy test into the package
|
// the build of the package failed, inject a dummy test into the package
|
||||||
// which indicate about the failure and contain the failure description.
|
// which indicate about the failure and contain the failure description.
|
||||||
tests = append(tests, &Test{
|
tests = append(tests, &Test{
|
||||||
Name: "build failed",
|
Name: matches[4],
|
||||||
Result: FAIL,
|
Result: FAIL,
|
||||||
Output: packageCaptures[matches[2]],
|
Output: packageCaptures[matches[2]],
|
||||||
})
|
})
|
||||||
@ -142,7 +142,7 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
|
|||||||
testsTime += testTime
|
testsTime += testTime
|
||||||
} else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 {
|
} else if matches := regexCoverage.FindStringSubmatch(line); len(matches) == 2 {
|
||||||
coveragePct = matches[1]
|
coveragePct = matches[1]
|
||||||
} else if matches := regexOutput.FindStringSubmatch(line); len(matches) == 3 {
|
} else if matches := regexOutput.FindStringSubmatch(line); capturedPackage == "" && len(matches) == 3 {
|
||||||
// Sub-tests start with one or more series of 4-space indents, followed by a hard tab,
|
// Sub-tests start with one or more series of 4-space indents, followed by a hard tab,
|
||||||
// followed by the test output
|
// followed by the test output
|
||||||
// Top-level tests start with a hard tab.
|
// Top-level tests start with a hard tab.
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<property name="go.version" value="1.0"></property>
|
<property name="go.version" value="1.0"></property>
|
||||||
</properties>
|
</properties>
|
||||||
<testcase classname="failing1" name="build failed" time="0.000">
|
<testcase classname="failing1" name="[build failed]" time="0.000">
|
||||||
<failure message="Failed" type="">failing1/failing_test.go:15: undefined: x</failure>
|
<failure message="Failed" type="">failing1/failing_test.go:15: undefined: x</failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
@ -24,8 +24,16 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<property name="go.version" value="1.0"></property>
|
<property name="go.version" value="1.0"></property>
|
||||||
</properties>
|
</properties>
|
||||||
<testcase classname="failing2" name="build failed" time="0.000">
|
<testcase classname="failing2" name="[build failed]" time="0.000">
|
||||||
<failure message="Failed" type="">failing2/another_failing_test.go:20: undefined: y</failure>
|
<failure message="Failed" type="">failing2/another_failing_test.go:20: undefined: y</failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
|
<testsuite tests="1" failures="1" time="0.000" name="package/name/setupfailing1">
|
||||||
|
<properties>
|
||||||
|
<property name="go.version" value="1.0"></property>
|
||||||
|
</properties>
|
||||||
|
<testcase classname="setupfailing1" name="[setup failed]" time="0.000">
|
||||||
|
<failure message="Failed" type="">setupfailing1/failing_test.go:4: cannot find package "other/package" in any of:
	/path/vendor (vendor tree)
	/path/go/root (from $GOROOT)
	/path/go/path (from $GOPATH)</failure>
|
||||||
|
</testcase>
|
||||||
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
@ -2,6 +2,11 @@
|
|||||||
failing1/failing_test.go:15: undefined: x
|
failing1/failing_test.go:15: undefined: x
|
||||||
# package/name/failing2
|
# package/name/failing2
|
||||||
failing2/another_failing_test.go:20: undefined: y
|
failing2/another_failing_test.go:20: undefined: y
|
||||||
|
# package/name/setupfailing1
|
||||||
|
setupfailing1/failing_test.go:4: cannot find package "other/package" in any of:
|
||||||
|
/path/vendor (vendor tree)
|
||||||
|
/path/go/root (from $GOROOT)
|
||||||
|
/path/go/path (from $GOPATH)
|
||||||
=== RUN TestA
|
=== RUN TestA
|
||||||
--- PASS: TestA (0.10 seconds)
|
--- PASS: TestA (0.10 seconds)
|
||||||
PASS
|
PASS
|
||||||
@ -12,3 +17,4 @@ PASS
|
|||||||
ok package/name/passing2 0.100s
|
ok package/name/passing2 0.100s
|
||||||
FAIL package/name/failing1 [build failed]
|
FAIL package/name/failing1 [build failed]
|
||||||
FAIL package/name/failing2 [build failed]
|
FAIL package/name/failing2 [build failed]
|
||||||
|
FAIL package/name/setupfailing1 [setup failed]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user