From ff9ad32c55d9c0635d6b4e2ae205f0231285a52d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 6 Oct 2019 18:53:13 +0100 Subject: [PATCH] Modify expected report for backwards compatibility in new tests --- go-junit-report_test.go | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/go-junit-report_test.go b/go-junit-report_test.go index 01fac6e..9d4ee30 100644 --- a/go-junit-report_test.go +++ b/go-junit-report_test.go @@ -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