mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
junit: Output SystemOut and SystemErr contents as CDATA
This commit is contained in:
parent
7d75448298
commit
76f68922a2
@ -50,8 +50,8 @@ type Testsuite struct {
|
|||||||
|
|
||||||
Properties []Property `xml:"properties>property,omitempty"`
|
Properties []Property `xml:"properties>property,omitempty"`
|
||||||
Testcases []Testcase `xml:"testcase,omitempty"`
|
Testcases []Testcase `xml:"testcase,omitempty"`
|
||||||
SystemOut string `xml:"system-out,omitempty"`
|
SystemOut *Output `xml:"system-out,omitempty"`
|
||||||
SystemErr string `xml:"system-err,omitempty"`
|
SystemErr *Output `xml:"system-err,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *Testsuite) AddProperty(name, value string) {
|
func (t *Testsuite) AddProperty(name, value string) {
|
||||||
@ -92,8 +92,8 @@ type Testcase struct {
|
|||||||
Skipped *Result `xml:"skipped,omitempty"`
|
Skipped *Result `xml:"skipped,omitempty"`
|
||||||
Error *Result `xml:"error,omitempty"`
|
Error *Result `xml:"error,omitempty"`
|
||||||
Failure *Result `xml:"failure,omitempty"`
|
Failure *Result `xml:"failure,omitempty"`
|
||||||
SystemOut string `xml:"system-out,omitempty"`
|
SystemOut *Output `xml:"system-out,omitempty"`
|
||||||
SystemErr string `xml:"system-err,omitempty"`
|
SystemErr *Output `xml:"system-err,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Property represents a key/value pair.
|
// Property represents a key/value pair.
|
||||||
@ -109,6 +109,11 @@ type Result struct {
|
|||||||
Data string `xml:",cdata"`
|
Data string `xml:",cdata"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Output represents output written to stdout or sderr.
|
||||||
|
type Output struct {
|
||||||
|
Data string `xml:",cdata"`
|
||||||
|
}
|
||||||
|
|
||||||
// FormatDuration returns the JUnit string representation of the given
|
// FormatDuration returns the JUnit string representation of the given
|
||||||
// duration.
|
// duration.
|
||||||
func FormatDuration(d time.Duration) string {
|
func FormatDuration(d time.Duration) string {
|
||||||
|
@ -37,12 +37,12 @@ func TestMarshalUnmarshal(t *testing.T) {
|
|||||||
Skipped: &Result{Message: "skipped", Type: "type", Data: "data"},
|
Skipped: &Result{Message: "skipped", Type: "type", Data: "data"},
|
||||||
Error: &Result{Message: "error", Type: "type", Data: "data"},
|
Error: &Result{Message: "error", Type: "type", Data: "data"},
|
||||||
Failure: &Result{Message: "failure", Type: "type", Data: "data"},
|
Failure: &Result{Message: "failure", Type: "type", Data: "data"},
|
||||||
SystemOut: "system-out",
|
SystemOut: &Output{"system-out"},
|
||||||
SystemErr: "system-err",
|
SystemErr: &Output{"system-err"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
SystemOut: "system-out",
|
SystemOut: &Output{"system-out"},
|
||||||
SystemErr: "system-err",
|
SystemErr: &Output{"system-err"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
3
testdata/33-report.xml
vendored
3
testdata/33-report.xml
vendored
@ -6,5 +6,8 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<testcase classname="flate" name="BenchmarkDecode/Digits/Huffman/1e4" time="0.000104427"></testcase>
|
<testcase classname="flate" name="BenchmarkDecode/Digits/Huffman/1e4" time="0.000104427"></testcase>
|
||||||
<testcase classname="flate" name="BenchmarkEncode/Digits/Huffman/1e4" time="0.000028334"></testcase>
|
<testcase classname="flate" name="BenchmarkEncode/Digits/Huffman/1e4" time="0.000028334"></testcase>
|
||||||
|
<system-out><![CDATA[goos: linux
|
||||||
|
goarch: amd64
|
||||||
|
pkg: compress/flate]]></system-out>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user