@@ -96,3 +96,137 @@ func (suite *KeeperTestSuite) TestOnChanOpenInit() {
96
96
})
97
97
}
98
98
}
99
+
100
+ // ChainA is controller, ChainB is host chain
101
+ func (suite * KeeperTestSuite ) TestOnChanOpenTry () {
102
+ var (
103
+ channel * channeltypes.Channel
104
+ path * ibctesting.Path
105
+ chanCap * capabilitytypes.Capability
106
+ counterpartyVersion string
107
+ )
108
+
109
+ testCases := []struct {
110
+ name string
111
+ malleate func ()
112
+ expPass bool
113
+ }{
114
+
115
+ {
116
+ "success" , func () {}, true ,
117
+ },
118
+ {
119
+ "invalid order - UNORDERED" , func () {
120
+ channel .Ordering = channeltypes .UNORDERED
121
+ }, false ,
122
+ },
123
+ {
124
+ "invalid version" , func () {
125
+ channel .Version = "version"
126
+ }, false ,
127
+ },
128
+ {
129
+ "invalid counterparty version" , func () {
130
+ counterpartyVersion = "version"
131
+ }, false ,
132
+ },
133
+ {
134
+ "capability already claimed" , func () {
135
+ err := suite .chainB .GetSimApp ().ScopedICAKeeper .ClaimCapability (suite .chainB .GetContext (), chanCap , host .ChannelCapabilityPath (path .EndpointB .ChannelConfig .PortID , path .EndpointB .ChannelID ))
136
+ suite .Require ().NoError (err )
137
+ }, false ,
138
+ },
139
+ }
140
+
141
+ for _ , tc := range testCases {
142
+ tc := tc
143
+
144
+ suite .Run (tc .name , func () {
145
+ suite .SetupTest () // reset
146
+ path = NewICAPath (suite .chainA , suite .chainB )
147
+ owner := "owner"
148
+ counterpartyVersion = types .Version
149
+ suite .coordinator .SetupConnections (path )
150
+
151
+ err := InitInterchainAccount (path .EndpointA , owner )
152
+ suite .Require ().NoError (err )
153
+
154
+ // default values
155
+ counterparty := channeltypes .NewCounterparty (path .EndpointA .ChannelConfig .PortID , path .EndpointA .ChannelID )
156
+ channel = & channeltypes.Channel {
157
+ State : channeltypes .TRYOPEN ,
158
+ Ordering : channeltypes .ORDERED ,
159
+ Counterparty : counterparty ,
160
+ ConnectionHops : []string {path .EndpointB .ConnectionID },
161
+ Version : types .Version ,
162
+ }
163
+
164
+ chanCap , err = suite .chainB .App .GetScopedIBCKeeper ().NewCapability (suite .chainB .GetContext (), host .ChannelCapabilityPath (path .EndpointB .ChannelConfig .PortID , path .EndpointB .ChannelID ))
165
+ suite .Require ().NoError (err )
166
+
167
+ tc .malleate () // explicitly change fields in channel and testChannel
168
+
169
+ err = suite .chainB .GetSimApp ().ICAKeeper .OnChanOpenTry (suite .chainB .GetContext (), channel .Ordering , channel .GetConnectionHops (),
170
+ path .EndpointB .ChannelConfig .PortID , path .EndpointB .ChannelID , chanCap , channel .Counterparty , channel .GetVersion (),
171
+ counterpartyVersion ,
172
+ )
173
+
174
+ if tc .expPass {
175
+ suite .Require ().NoError (err )
176
+ } else {
177
+ suite .Require ().Error (err )
178
+ }
179
+
180
+ })
181
+ }
182
+ }
183
+
184
+ // ChainA is controller, ChainB is host chain
185
+ func (suite * KeeperTestSuite ) TestOnChanOpenAck () {
186
+ var (
187
+ path * ibctesting.Path
188
+ counterpartyVersion string
189
+ )
190
+
191
+ testCases := []struct {
192
+ name string
193
+ malleate func ()
194
+ expPass bool
195
+ }{
196
+
197
+ {
198
+ "success" , func () {}, true ,
199
+ },
200
+ }
201
+
202
+ for _ , tc := range testCases {
203
+ tc := tc
204
+
205
+ suite .Run (tc .name , func () {
206
+ suite .SetupTest () // reset
207
+ path = NewICAPath (suite .chainA , suite .chainB )
208
+ owner := "owner"
209
+ counterpartyVersion = types .Version
210
+ suite .coordinator .SetupConnections (path )
211
+
212
+ err := InitInterchainAccount (path .EndpointA , owner )
213
+ suite .Require ().NoError (err )
214
+
215
+ err = path .EndpointB .ChanOpenTry ()
216
+ suite .Require ().NoError (err )
217
+
218
+ tc .malleate () // explicitly change fields in channel and testChannel
219
+
220
+ err = suite .chainA .GetSimApp ().ICAKeeper .OnChanOpenAck (suite .chainA .GetContext (),
221
+ path .EndpointA .ChannelConfig .PortID , path .EndpointA .ChannelID , counterpartyVersion ,
222
+ )
223
+
224
+ if tc .expPass {
225
+ suite .Require ().NoError (err )
226
+ } else {
227
+ suite .Require ().Error (err )
228
+ }
229
+
230
+ })
231
+ }
232
+ }
0 commit comments