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:
greg-dennis 2022-08-23 10:41:42 -04:00
parent 35c4d8a827
commit 15d215e49d
3 changed files with 25 additions and 7 deletions

View File

@ -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.

View File

@ -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 {

View File

@ -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",