From 0ff7cae1df722828d819cbe9d4729bf8cd8cb245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Mon, 7 Oct 2019 01:01:16 +0100 Subject: [PATCH] Drop new properties when comparing against existing testdata --- go-junit-report_test.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/go-junit-report_test.go b/go-junit-report_test.go index 31ee775..1d59bda 100644 --- a/go-junit-report_test.go +++ b/go-junit-report_test.go @@ -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 {