Merge pull request #17 from sectioneight/go-1.5-support

Add support for Go 1.5 test results
This commit is contained in:
Joël Stemmer 2015-09-03 14:19:37 +02:00
commit 833f8ea2b9
4 changed files with 44 additions and 2 deletions

View File

@ -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) {

View File

@ -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
View 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
View 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="1.0"></property>
</properties>
<testcase classname="name" name="TestOne" time="0.020"></testcase>
<testcase classname="name" name="TestTwo" time="0.030"></testcase>
</testsuite>
</testsuites>