mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 12:40:15 -05:00
Report stores a slice of Property structs rather than a map, to mimic JUnit properties, which have a deterministic ordering and allow multipler properties with the same name.
This commit is contained in:
parent
35c4d8a827
commit
15d215e49d
26
gtr/gtr.go
26
gtr/gtr.go
@ -61,7 +61,7 @@ type Package struct {
|
||||
Duration time.Duration
|
||||
Coverage float64
|
||||
Output []string
|
||||
Properties map[string]string
|
||||
Properties []Property
|
||||
|
||||
Tests []Test
|
||||
|
||||
@ -73,10 +73,28 @@ type Package struct {
|
||||
// property with the given key already exists, its old value will be
|
||||
// overwritten with the given value.
|
||||
func (p *Package) SetProperty(key, value string) {
|
||||
if p.Properties == nil {
|
||||
p.Properties = make(map[string]string)
|
||||
// TODO(jstemmer): Delete this method in the next major release.
|
||||
// Delete all the properties whose name is the specified key,
|
||||
// then add the specieid key-value property.
|
||||
i := 0
|
||||
for _, prop := range p.Properties {
|
||||
if key == prop.Name {
|
||||
p.Properties[i] = prop
|
||||
i++
|
||||
}
|
||||
}
|
||||
p.Properties[key] = value
|
||||
p.Properties = p.Properties[:i]
|
||||
p.AddProperty(key, value)
|
||||
}
|
||||
|
||||
// AddProperty appends a name/value property in the current package.
|
||||
func (p *Package) AddProperty(name, value string) {
|
||||
p.Properties = append(p.Properties, Property{Name: name, Value: value})
|
||||
}
|
||||
|
||||
// Property is a name/value property.
|
||||
type Property struct {
|
||||
Name, Value string
|
||||
}
|
||||
|
||||
// Test contains the results of a single test.
|
||||
|
@ -144,8 +144,8 @@ func CreateFromReport(report gtr.Report, hostname string) Testsuites {
|
||||
suite.SetTimestamp(pkg.Timestamp)
|
||||
}
|
||||
|
||||
for k, v := range pkg.Properties {
|
||||
suite.AddProperty(k, v)
|
||||
for _, p := range pkg.Properties {
|
||||
suite.AddProperty(p.Name, p.Value)
|
||||
}
|
||||
|
||||
if len(pkg.Output) > 0 {
|
||||
|
@ -19,7 +19,7 @@ func TestCreateFromReport(t *testing.T) {
|
||||
Duration: 1 * time.Second,
|
||||
Coverage: 0.9,
|
||||
Output: []string{"output"},
|
||||
Properties: map[string]string{"go.version": "go1.18"},
|
||||
Properties: []gtr.Property{{Name: "go.version", Value: "go1.18"}},
|
||||
Tests: []gtr.Test{
|
||||
{
|
||||
Name: "TestPass",
|
||||
|
Loading…
x
Reference in New Issue
Block a user