Drop new properties when comparing against existing testdata

This commit is contained in:
Joël Stemmer 2019-10-07 01:01:16 +01:00
parent 5007397e33
commit 0ff7cae1df

View File

@ -1599,6 +1599,8 @@ func testNewParser(input, reportFile, packageName string, t *testing.T) {
}
actual := gtr.JUnit(gtr.FromEvents(events, packageName))
// Remove any new properties for backwards compatibility
actual = dropNewProperties(actual)
expectedXML, err := loadTestReport(reportFile, "")
if err != nil {
@ -1632,6 +1634,17 @@ func modifyForBackwardsCompat(testsuites junit.Testsuites) junit.Testsuites {
return testsuites
}
func dropNewProperties(testsuites junit.Testsuites) junit.Testsuites {
for i, suite := range testsuites.Suites {
ps := suite.Properties
ps = dropProperty("goos", ps)
ps = dropProperty("goarch", ps)
ps = dropProperty("pkg", ps)
testsuites.Suites[i].Properties = ps
}
return testsuites
}
func dropProperty(name string, properties []junit.Property) []junit.Property {
var props []junit.Property
for _, prop := range properties {