mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
Store arbitrary key/value properties in Report
This commit is contained in:
parent
9aa9bd94d8
commit
10affc0da1
@ -27,10 +27,11 @@ func (r *Report) IsSuccessful() bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type Package struct {
|
type Package struct {
|
||||||
Name string
|
Name string
|
||||||
Duration time.Duration
|
Duration time.Duration
|
||||||
Coverage float64
|
Coverage float64
|
||||||
Output []string
|
Output []string
|
||||||
|
Properties map[string]string
|
||||||
|
|
||||||
Tests []Test
|
Tests []Test
|
||||||
Benchmarks []Benchmark
|
Benchmarks []Benchmark
|
||||||
@ -39,6 +40,13 @@ type Package struct {
|
|||||||
RunError Error
|
RunError Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *Package) AddProperty(key, value string) {
|
||||||
|
if p.Properties == nil {
|
||||||
|
p.Properties = make(map[string]string)
|
||||||
|
}
|
||||||
|
p.Properties[key] = value
|
||||||
|
}
|
||||||
|
|
||||||
type Test struct {
|
type Test struct {
|
||||||
Name string
|
Name string
|
||||||
Duration time.Duration
|
Duration time.Duration
|
||||||
|
@ -139,6 +139,10 @@ func CreateFromReport(report gtr.Report, hostname string, timestamp time.Time) T
|
|||||||
Hostname: hostname,
|
Hostname: hostname,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for k, v := range pkg.Properties {
|
||||||
|
suite.AddProperty(k, v)
|
||||||
|
}
|
||||||
|
|
||||||
if len(pkg.Output) > 0 {
|
if len(pkg.Output) > 0 {
|
||||||
suite.SystemOut = &Output{Data: formatOutput(pkg.Output, 0)}
|
suite.SystemOut = &Output{Data: formatOutput(pkg.Output, 0)}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user