Merge PR #4648: Flatten events by type when stringified

This commit is contained in:
Alexander Bezobchuk 2019-06-30 16:31:09 -04:00 committed by GitHub
parent 997c4129ea
commit a485b9a263
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 4 deletions

View File

@ -164,10 +164,26 @@ func (se StringEvents) String() string {
return strings.TrimRight(sb.String(), "\n") return strings.TrimRight(sb.String(), "\n")
} }
// Flatten returns a flattened version of StringEvents by grouping all attributes
// per unique event type.
func (se StringEvents) Flatten() StringEvents {
flatEvents := make(map[string][]Attribute)
for _, e := range se {
flatEvents[e.Type] = append(flatEvents[e.Type], e.Attributes...)
}
var res StringEvents
for ty, attrs := range flatEvents {
res = append(res, StringEvent{Type: ty, Attributes: attrs})
}
return res
}
// StringifyEvent converts an Event object to a StringEvent object. // StringifyEvent converts an Event object to a StringEvent object.
func StringifyEvent(e abci.Event) StringEvent { func StringifyEvent(e abci.Event) StringEvent {
res := StringEvent{} res := StringEvent{Type: e.Type}
res.Type = e.Type
for _, attr := range e.Attributes { for _, attr := range e.Attributes {
res.Attributes = append( res.Attributes = append(
@ -188,5 +204,5 @@ func StringifyEvents(events []abci.Event) StringEvents {
res = append(res, StringifyEvent(e)) res = append(res, StringifyEvent(e))
} }
return res return res.Flatten()
} }

View File

@ -1,6 +1,7 @@
package types package types
import ( import (
"encoding/json"
"testing" "testing"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
@ -51,3 +52,20 @@ func TestEventManager(t *testing.T) {
require.Len(t, em.Events(), 2) require.Len(t, em.Events(), 2)
require.Equal(t, em.Events(), events.AppendEvent(event)) require.Equal(t, em.Events(), events.AppendEvent(event))
} }
func TestStringifyEvents(t *testing.T) {
e := Events{
NewEvent("message", NewAttribute("sender", "foo")),
NewEvent("message", NewAttribute("module", "bank")),
}
se := StringifyEvents(e.ToABCIEvents())
expectedTxtStr := "\t\t- message\n\t\t\t- sender: foo\n\t\t\t- module: bank"
require.Equal(t, expectedTxtStr, se.String())
bz, err := json.Marshal(se)
require.NoError(t, err)
expectedJSONStr := "[{\"type\":\"message\",\"attributes\":[{\"key\":\"sender\",\"value\":\"foo\"},{\"key\":\"module\",\"value\":\"bank\"}]}]"
require.Equal(t, expectedJSONStr, string(bz))
}

View File

@ -240,7 +240,7 @@ func (r TxResponse) String() string {
} }
if len(r.Events) > 0 { if len(r.Events) > 0 {
sb.WriteString(fmt.Sprintf(" Tags: \n%s\n", r.Events.String())) sb.WriteString(fmt.Sprintf(" Events: \n%s\n", r.Events.String()))
} }
return strings.TrimSpace(sb.String()) return strings.TrimSpace(sb.String())