Store arbitrary key/value properties in Report

This commit is contained in:
Joël Stemmer 2022-03-13 22:55:55 +00:00
parent 9aa9bd94d8
commit 10affc0da1
2 changed files with 16 additions and 4 deletions

View File

@ -27,10 +27,11 @@ func (r *Report) IsSuccessful() bool {
}
type Package struct {
Name string
Duration time.Duration
Coverage float64
Output []string
Name string
Duration time.Duration
Coverage float64
Output []string
Properties map[string]string
Tests []Test
Benchmarks []Benchmark
@ -39,6 +40,13 @@ type Package struct {
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 {
Name string
Duration time.Duration

View File

@ -139,6 +139,10 @@ func CreateFromReport(report gtr.Report, hostname string, timestamp time.Time) T
Hostname: hostname,
}
for k, v := range pkg.Properties {
suite.AddProperty(k, v)
}
if len(pkg.Output) > 0 {
suite.SystemOut = &Output{Data: formatOutput(pkg.Output, 0)}
}