mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 12:40:15 -05:00
Add test for reports without properties
This commit is contained in:
parent
3445b88cb1
commit
9b4f5520f7
@ -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)
|
||||
}
|
||||
|
4
testdata/039-no-properties.txt
vendored
Normal file
4
testdata/039-no-properties.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
=== RUN TestPass
|
||||
--- PASS: TestPass (0.06s)
|
||||
PASS
|
||||
ok package/pass 0.160s
|
6
testdata/039-report.xml
vendored
Normal file
6
testdata/039-report.xml
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1">
|
||||
<testsuite name="package/pass" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<testcase name="TestPass" classname="package/pass" time="0.060"></testcase>
|
||||
</testsuite>
|
||||
</testsuites>
|
5
testdata/generate-golden-reports.go
vendored
5
testdata/generate-golden-reports.go
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user