mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
Drop new properties when comparing against existing testdata
This commit is contained in:
parent
5007397e33
commit
0ff7cae1df
@ -1599,6 +1599,8 @@ func testNewParser(input, reportFile, packageName string, t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
actual := gtr.JUnit(gtr.FromEvents(events, packageName))
|
actual := gtr.JUnit(gtr.FromEvents(events, packageName))
|
||||||
|
// Remove any new properties for backwards compatibility
|
||||||
|
actual = dropNewProperties(actual)
|
||||||
|
|
||||||
expectedXML, err := loadTestReport(reportFile, "")
|
expectedXML, err := loadTestReport(reportFile, "")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -1632,6 +1634,17 @@ func modifyForBackwardsCompat(testsuites junit.Testsuites) junit.Testsuites {
|
|||||||
return 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 {
|
func dropProperty(name string, properties []junit.Property) []junit.Property {
|
||||||
var props []junit.Property
|
var props []junit.Property
|
||||||
for _, prop := range properties {
|
for _, prop := range properties {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user