diff --git a/internal/gojunitreport/go-junit-report_test.go b/internal/gojunitreport/go-junit-report_test.go index eaddbe7..6066757 100644 --- a/internal/gojunitreport/go-junit-report_test.go +++ b/internal/gojunitreport/go-junit-report_test.go @@ -21,9 +21,10 @@ const testDataDir = "../../testdata/" var matchTest = flag.String("match", "", "only test testdata matching this pattern") var testConfigs = map[int]Config{ - 5: {SkipXMLHeader: true}, - 6: {SkipXMLHeader: true}, - 7: {PackageName: "test/package"}, + 5: {SkipXMLHeader: true}, + 6: {SkipXMLHeader: true}, + 7: {PackageName: "test/package"}, + 39: {Properties: make(map[string]string)}, } func TestRun(t *testing.T) { @@ -73,7 +74,9 @@ func testRun(inputFile, reportFile string, config Config, t *testing.T) { config.Parser = "gojson" } config.Hostname = "hostname" - config.Properties = map[string]string{"go.version": "1.0"} + if config.Properties == nil { + config.Properties = map[string]string{"go.version": "1.0"} + } config.TimestampFunc = func() time.Time { return time.Date(2022, 1, 1, 0, 0, 0, 0, time.UTC) } diff --git a/testdata/039-no-properties.txt b/testdata/039-no-properties.txt new file mode 100644 index 0000000..d90ba9d --- /dev/null +++ b/testdata/039-no-properties.txt @@ -0,0 +1,4 @@ +=== RUN TestPass +--- PASS: TestPass (0.06s) +PASS +ok package/pass 0.160s diff --git a/testdata/039-report.xml b/testdata/039-report.xml new file mode 100644 index 0000000..f4d0378 --- /dev/null +++ b/testdata/039-report.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/testdata/generate-golden-reports.go b/testdata/generate-golden-reports.go index 36a8424..7bec1dd 100644 --- a/testdata/generate-golden-reports.go +++ b/testdata/generate-golden-reports.go @@ -20,6 +20,7 @@ var configs = map[string]gojunitreport.Config{ "005-no-xml-header.txt": {SkipXMLHeader: true}, "006-mixed.txt": {SkipXMLHeader: true}, "007-compiled_test.txt": {PackageName: "test/package"}, + "039-no-properties.txt": {Properties: make(map[string]string)}, } func main() { @@ -104,7 +105,9 @@ func createReportFromInput(inputFile, outputFile string, write bool) error { config.TimestampFunc = func() time.Time { return time.Date(2022, 1, 1, 0, 0, 0, 0, time.UTC) } - config.Properties = map[string]string{"go.version": "1.0"} + if config.Properties == nil { + config.Properties = map[string]string{"go.version": "1.0"} + } _, err = config.Run(in, out) return err