mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
Modify expected report for backwards compatibility in new tests
This commit is contained in:
parent
cb92a4a6c8
commit
ff9ad32c55
@ -1609,12 +1609,33 @@ func testNewParser(input, reportFile, packageName string, t *testing.T) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
expected.XMLName.Local = ""
|
||||
expected = modifyForBackwardsCompat(expected)
|
||||
if diff := cmp.Diff(actual, expected); diff != "" {
|
||||
t.Errorf("Unexpected report diff (-got, +want):\n%v", diff)
|
||||
}
|
||||
}
|
||||
|
||||
func modifyForBackwardsCompat(testsuites junit.Testsuites) junit.Testsuites {
|
||||
testsuites.XMLName.Local = ""
|
||||
for i, suite := range testsuites.Suites {
|
||||
testsuites.Suites[i].Properties = dropProperty("go.version", suite.Properties)
|
||||
for j := range suite.Testcases {
|
||||
testsuites.Suites[i].Testcases[j].Classname = suite.Name
|
||||
}
|
||||
}
|
||||
return testsuites
|
||||
}
|
||||
|
||||
func dropProperty(name string, properties []junit.Property) []junit.Property {
|
||||
var props []junit.Property
|
||||
for _, prop := range properties {
|
||||
if prop.Name != name {
|
||||
props = append(props, prop)
|
||||
}
|
||||
}
|
||||
return props
|
||||
}
|
||||
|
||||
func toXML(testsuites junit.Testsuites) (string, error) {
|
||||
var buf bytes.Buffer
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user