Change findTest to return the most recently added test

Whenever we encounter a result line in the test output, we would find
the first test with the matching name and update it. However, in some
cases it's possible for the same test name to appear multiple times in
the output. To prevent us from always updating the oldest test, the
order in which findTests searches for a matching test is reversed so
that it always returns the most recently added test.

Fixes #54.
This commit is contained in:
Joël Stemmer 2017-05-11 22:22:43 +01:00
parent 9a95738d2a
commit cce73b4996
4 changed files with 52 additions and 1 deletions

View File

@ -610,6 +610,38 @@ var testCases = []TestCase{
},
},
},
{
name: "16-repeated-names.txt",
reportName: "16-report.xml",
report: &parser.Report{
Packages: []parser.Package{
{
Name: "package/repeated-names",
Time: 1,
Tests: []*parser.Test{
{
Name: "TestRepeat",
Time: 0,
Result: parser.PASS,
Output: []string{},
},
{
Name: "TestRepeat",
Time: 0,
Result: parser.PASS,
Output: []string{},
},
{
Name: "TestRepeat",
Time: 0,
Result: parser.PASS,
Output: []string{},
},
},
},
},
},
},
}
func TestParser(t *testing.T) {

View File

@ -198,7 +198,7 @@ func parseTime(time string) int {
}
func findTest(tests []*Test, name string) *Test {
for i := 0; i < len(tests); i++ {
for i := len(tests) - 1; i >= 0; i-- {
if tests[i].Name == name {
return tests[i]
}

View File

@ -0,0 +1,8 @@
=== RUN TestRepeat
--- PASS: TestRepeat (0.00s)
=== RUN TestRepeat
--- PASS: TestRepeat (0.00s)
=== RUN TestRepeat
--- PASS: TestRepeat (0.00s)
PASS
ok package/repeated-names 0.001s

11
tests/16-report.xml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite tests="3" failures="0" time="0.001" name="package/repeated-names">
<properties>
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="repeated-names" name="TestRepeat" time="0.000"></testcase>
<testcase classname="repeated-names" name="TestRepeat" time="0.000"></testcase>
<testcase classname="repeated-names" name="TestRepeat" time="0.000"></testcase>
</testsuite>
</testsuites>