-
Notifications
You must be signed in to change notification settings - Fork 648
/
Copy pathevents.go
237 lines (206 loc) · 7.91 KB
/
events.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package ibctesting
import (
"encoding/hex"
"errors"
"fmt"
"slices"
"strconv"
testifysuite "github.com/stretchr/testify/suite"
abci "github.com/cometbft/cometbft/api/cometbft/abci/v1"
clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"
connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types"
channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"
)
// ParseClientIDFromEvents parses events emitted from a MsgCreateClient and returns the
// client identifier.
func ParseClientIDFromEvents(events []abci.Event) (string, error) {
for _, ev := range events {
if ev.Type == clienttypes.EventTypeCreateClient {
if attribute, found := attributeByKey(ev.Attributes, clienttypes.AttributeKeyClientID); found {
return attribute.Value, nil
}
}
}
return "", errors.New("client identifier event attribute not found")
}
// ParseConnectionIDFromEvents parses events emitted from a MsgConnectionOpenInit or
// MsgConnectionOpenTry and returns the connection identifier.
func ParseConnectionIDFromEvents(events []abci.Event) (string, error) {
for _, ev := range events {
if ev.Type == connectiontypes.EventTypeConnectionOpenInit ||
ev.Type == connectiontypes.EventTypeConnectionOpenTry {
if attribute, found := attributeByKey(ev.Attributes, connectiontypes.AttributeKeyConnectionID); found {
return attribute.Value, nil
}
}
}
return "", errors.New("connection identifier event attribute not found")
}
// ParseChannelIDFromEvents parses events emitted from a MsgChannelOpenInit or
// MsgChannelOpenTry and returns the channel identifier.
func ParseChannelIDFromEvents(events []abci.Event) (string, error) {
for _, ev := range events {
if ev.Type == channeltypes.EventTypeChannelOpenInit || ev.Type == channeltypes.EventTypeChannelOpenTry {
if attribute, found := attributeByKey(ev.Attributes, channeltypes.AttributeKeyChannelID); found {
return attribute.Value, nil
}
}
}
return "", errors.New("channel identifier event attribute not found")
}
// ParsePacketFromEvents parses events emitted from a send packet and returns
// the first EventTypeSendPacket packet found.
// Returns an error if no packet is found.
func ParsePacketFromEvents(events []abci.Event) (channeltypes.Packet, error) {
packets, err := ParsePacketsFromEvents(channeltypes.EventTypeSendPacket, events)
if err != nil {
return channeltypes.Packet{}, err
}
return packets[0], nil
}
// ParseRecvPacketFromEvents parses events emitted from a MsgRecvPacket and returns
// the first EventTypeRecvPacket packet found.
// Returns an error if no packet is found.
func ParseRecvPacketFromEvents(events []abci.Event) (channeltypes.Packet, error) {
packets, err := ParsePacketsFromEvents(channeltypes.EventTypeRecvPacket, events)
if err != nil {
return channeltypes.Packet{}, err
}
return packets[0], nil
}
// ParsePacketsFromEvents parses events emitted from a MsgRecvPacket and returns
// all the packets found.
// Returns an error if no packet is found.
func ParsePacketsFromEvents(eventType string, events []abci.Event) ([]channeltypes.Packet, error) {
ferr := func(err error) ([]channeltypes.Packet, error) {
return nil, fmt.Errorf("ibctesting.ParsePacketsFromEvents: %w", err)
}
var packets []channeltypes.Packet
for _, ev := range events {
if ev.Type == eventType {
var packet channeltypes.Packet
for _, attr := range ev.Attributes {
switch attr.Key {
case channeltypes.AttributeKeyDataHex:
data, err := hex.DecodeString(attr.Value)
if err != nil {
return ferr(err)
}
packet.Data = data
case channeltypes.AttributeKeySequence:
seq, err := strconv.ParseUint(attr.Value, 10, 64)
if err != nil {
return ferr(err)
}
packet.Sequence = seq
case channeltypes.AttributeKeySrcPort:
packet.SourcePort = attr.Value
case channeltypes.AttributeKeySrcChannel:
packet.SourceChannel = attr.Value
case channeltypes.AttributeKeyDstPort:
packet.DestinationPort = attr.Value
case channeltypes.AttributeKeyDstChannel:
packet.DestinationChannel = attr.Value
case channeltypes.AttributeKeyTimeoutHeight:
height, err := clienttypes.ParseHeight(attr.Value)
if err != nil {
return ferr(err)
}
packet.TimeoutHeight = height
case channeltypes.AttributeKeyTimeoutTimestamp:
timestamp, err := strconv.ParseUint(attr.Value, 10, 64)
if err != nil {
return ferr(err)
}
packet.TimeoutTimestamp = timestamp
default:
continue
}
}
packets = append(packets, packet)
}
}
if len(packets) == 0 {
return ferr(errors.New("acknowledgement event attribute not found"))
}
return packets, nil
}
// ParseAckFromEvents parses events emitted from a MsgRecvPacket and returns the
// acknowledgement.
func ParseAckFromEvents(events []abci.Event) ([]byte, error) {
for _, ev := range events {
if ev.Type == channeltypes.EventTypeWriteAck {
if attribute, found := attributeByKey(ev.Attributes, channeltypes.AttributeKeyAckHex); found {
value, err := hex.DecodeString(attribute.Value)
if err != nil {
return nil, err
}
return value, nil
}
}
}
return nil, errors.New("acknowledgement event attribute not found")
}
// ParseProposalIDFromEvents parses events emitted from MsgSubmitProposal and returns proposalID
func ParseProposalIDFromEvents(events []abci.Event) (uint64, error) {
for _, event := range events {
if attribute, found := attributeByKey(event.Attributes, "proposal_id"); found {
return strconv.ParseUint(attribute.Value, 10, 64)
}
}
return 0, errors.New("proposalID event attribute not found")
}
// ParsePacketSequenceFromEvents parses events emitted from MsgRecvPacket and returns the packet sequence
func ParsePacketSequenceFromEvents(events []abci.Event) (uint64, error) {
for _, event := range events {
if attribute, found := attributeByKey(event.Attributes, "packet_sequence"); found {
return strconv.ParseUint(attribute.Value, 10, 64)
}
}
return 0, errors.New("packet sequence event attribute not found")
}
// AssertEvents asserts that expected events are present in the actual events.
func AssertEvents(
suite *testifysuite.Suite,
expected []abci.Event,
actual []abci.Event,
) {
foundEvents := make(map[int]bool)
for i, expectedEvent := range expected {
for _, actualEvent := range actual {
if shouldProcessEvent(expectedEvent, actualEvent) {
attributeMatch := true
for _, expectedAttr := range expectedEvent.Attributes {
// any expected attributes that are not contained in the actual events will cause this event
// not to match
attributeMatch = attributeMatch && containsAttribute(actualEvent.Attributes, expectedAttr.Key, expectedAttr.Value)
}
if attributeMatch {
foundEvents[i] = true
}
}
}
}
for i, expectedEvent := range expected {
suite.Require().True(foundEvents[i], "event: %s was not found in events", expectedEvent.Type)
}
}
// shouldProcessEvent returns true if the given expected event should be processed based on event type.
func shouldProcessEvent(expectedEvent abci.Event, actualEvent abci.Event) bool {
return expectedEvent.Type == actualEvent.Type
}
// containsAttribute returns true if the given key/value pair is contained in the given attributes.
// NOTE: this ignores the indexed field, which can be set or unset depending on how the events are retrieved.
func containsAttribute(attrs []abci.EventAttribute, key, value string) bool {
return slices.ContainsFunc(attrs, func(attr abci.EventAttribute) bool {
return attr.Key == key && attr.Value == value
})
}
// attributeByKey returns the event attribute's value keyed by the given key and a boolean indicating its presence in the given attributes.
func attributeByKey(attributes []abci.EventAttribute, key string) (abci.EventAttribute, bool) {
idx := slices.IndexFunc(attributes, func(a abci.EventAttribute) bool { return a.Key == key })
if idx == -1 {
return abci.EventAttribute{}, false
}
return attributes[idx], true
}