mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
Add support for Go 1.5 test results
An alternate approach that does not involve regular expressions. Fixes #15
This commit is contained in:
parent
8faee8c123
commit
1b60a11396
@ -329,6 +329,32 @@ var testCases = []TestCase{
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "11-go_1_5.txt",
|
||||
reportName: "11-report.xml",
|
||||
report: &parser.Report{
|
||||
Packages: []parser.Package{
|
||||
{
|
||||
Name: "package/name",
|
||||
Time: 50,
|
||||
Tests: []*parser.Test{
|
||||
{
|
||||
Name: "TestOne",
|
||||
Time: 20,
|
||||
Result: parser.PASS,
|
||||
Output: []string{},
|
||||
},
|
||||
{
|
||||
Name: "TestTwo",
|
||||
Time: 30,
|
||||
Result: parser.PASS,
|
||||
Output: []string{},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
func TestParser(t *testing.T) {
|
||||
|
@ -78,9 +78,9 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
|
||||
|
||||
if strings.HasPrefix(line, "=== RUN ") {
|
||||
// new test
|
||||
cur = line[8:]
|
||||
cur = strings.TrimSpace(line[8:])
|
||||
tests = append(tests, &Test{
|
||||
Name: line[8:],
|
||||
Name: cur,
|
||||
Result: FAIL,
|
||||
Output: make([]string, 0),
|
||||
})
|
||||
|
6
tests/11-go_1_5.txt
Normal file
6
tests/11-go_1_5.txt
Normal file
@ -0,0 +1,6 @@
|
||||
=== RUN TestOne
|
||||
--- PASS: TestOne (0.02s)
|
||||
=== RUN TestTwo
|
||||
--- PASS: TestTwo (0.03s)
|
||||
PASS
|
||||
ok package/name 0.050s
|
10
tests/11-report.xml
Normal file
10
tests/11-report.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuite tests="2" failures="0" time="0.050" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="go1.5"></property>
|
||||
</properties>
|
||||
<testcase classname="name" name="TestOne" time="0.020"></testcase>
|
||||
<testcase classname="name" name="TestTwo" time="0.030"></testcase>
|
||||
</testsuite>
|
||||
</testsuites>
|
Loading…
x
Reference in New Issue
Block a user