@@ -3,17 +3,20 @@ package ante_test
3
3
import (
4
4
"fmt"
5
5
"testing"
6
+ "time"
6
7
7
8
"github.com/stretchr/testify/require"
8
9
testifysuite "github.com/stretchr/testify/suite"
9
10
11
+ codectypes "github.com/cosmos/cosmos-sdk/codec/types"
10
12
sdk "github.com/cosmos/cosmos-sdk/types"
11
13
12
14
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
13
15
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
14
16
host "github.com/cosmos/ibc-go/v8/modules/core/24-host"
15
17
"github.com/cosmos/ibc-go/v8/modules/core/ante"
16
18
"github.com/cosmos/ibc-go/v8/modules/core/exported"
19
+ ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint"
17
20
ibctesting "github.com/cosmos/ibc-go/v8/testing"
18
21
)
19
22
@@ -357,6 +360,64 @@ func (suite *AnteTestSuite) TestAnteDecoratorCheckTx() {
357
360
},
358
361
true ,
359
362
},
363
+ {
364
+ "success on new UpdateClient messages: solomachine misbehaviour" ,
365
+ func (suite * AnteTestSuite ) []sdk.Msg {
366
+ solomachine := ibctesting .NewSolomachine (suite .T (), suite .chainB .Codec , "06-solomachine-0" , "testing" , 1 )
367
+ suite .chainB .GetSimApp ().GetIBCKeeper ().ClientKeeper .SetClientState (suite .chainB .GetContext (), solomachine .ClientID , solomachine .ClientState ())
368
+
369
+ msgUpdateClient , err := clienttypes .NewMsgUpdateClient (solomachine .ClientID , solomachine .CreateMisbehaviour (), suite .chainB .SenderAccount .GetAddress ().String ())
370
+ suite .Require ().NoError (err )
371
+
372
+ msgs := []sdk.Msg {msgUpdateClient }
373
+
374
+ return msgs
375
+ },
376
+ true ,
377
+ },
378
+ {
379
+ "success on new UpdateClient messages: solomachine multisig misbehaviour" ,
380
+ func (suite * AnteTestSuite ) []sdk.Msg {
381
+ solomachine := ibctesting .NewSolomachine (suite .T (), suite .chainA .Codec , "06-solomachine-0" , "testing" , 4 )
382
+ suite .chainB .GetSimApp ().GetIBCKeeper ().ClientKeeper .SetClientState (suite .chainB .GetContext (), solomachine .ClientID , solomachine .ClientState ())
383
+
384
+ msgUpdateClient , err := clienttypes .NewMsgUpdateClient (solomachine .ClientID , solomachine .CreateMisbehaviour (), suite .chainB .SenderAccount .GetAddress ().String ())
385
+ suite .Require ().NoError (err )
386
+
387
+ msgs := []sdk.Msg {msgUpdateClient }
388
+
389
+ return msgs
390
+ },
391
+ true ,
392
+ },
393
+ {
394
+ "success on new UpdateClient messages: tendermint misbehaviour" ,
395
+ func (suite * AnteTestSuite ) []sdk.Msg {
396
+ trustedHeight := suite .path .EndpointB .GetClientState ().GetLatestHeight ().(clienttypes.Height )
397
+
398
+ trustedVals , found := suite .chainA .GetValsAtHeight (int64 (trustedHeight .RevisionHeight ) + 1 )
399
+ suite .Require ().True (found )
400
+
401
+ err := suite .path .EndpointB .UpdateClient ()
402
+ suite .Require ().NoError (err )
403
+
404
+ height := suite .path .EndpointB .GetClientState ().GetLatestHeight ().(clienttypes.Height )
405
+
406
+ // construct valid fork misbehaviour: two headers at the same height with different time
407
+ misbehaviour := & ibctm.Misbehaviour {
408
+ Header1 : suite .chainA .CreateTMClientHeader (suite .chainA .ChainID , int64 (height .RevisionHeight ), trustedHeight , suite .chainA .CurrentHeader .Time .Add (time .Minute ), suite .chainA .Vals , suite .chainA .NextVals , trustedVals , suite .chainA .Signers ),
409
+ Header2 : suite .chainA .CreateTMClientHeader (suite .chainA .ChainID , int64 (height .RevisionHeight ), trustedHeight , suite .chainA .CurrentHeader .Time , suite .chainA .Vals , suite .chainA .NextVals , trustedVals , suite .chainA .Signers ),
410
+ }
411
+
412
+ msgUpdateClient , err := clienttypes .NewMsgUpdateClient (suite .path .EndpointB .ClientID , misbehaviour , suite .chainB .SenderAccount .GetAddress ().String ())
413
+ suite .Require ().NoError (err )
414
+
415
+ msgs := []sdk.Msg {msgUpdateClient }
416
+
417
+ return msgs
418
+ },
419
+ true ,
420
+ },
360
421
{
361
422
"no success on one redundant RecvPacket message" ,
362
423
func (suite * AnteTestSuite ) []sdk.Msg {
@@ -402,6 +463,39 @@ func (suite *AnteTestSuite) TestAnteDecoratorCheckTx() {
402
463
},
403
464
false ,
404
465
},
466
+ {
467
+ "no success on one new UpdateClient message: invalid client identifier" ,
468
+ func (suite * AnteTestSuite ) []sdk.Msg {
469
+ clientMsg , err := codectypes .NewAnyWithValue (& ibctm.Header {})
470
+ suite .Require ().NoError (err )
471
+
472
+ msgs := []sdk.Msg {& clienttypes.MsgUpdateClient {ClientId : ibctesting .InvalidID , ClientMessage : clientMsg }}
473
+ return msgs
474
+ },
475
+ false ,
476
+ },
477
+ {
478
+ "no success on one new UpdateClient message: client module not found" ,
479
+ func (suite * AnteTestSuite ) []sdk.Msg {
480
+ clientMsg , err := codectypes .NewAnyWithValue (& ibctm.Header {})
481
+ suite .Require ().NoError (err )
482
+
483
+ msgs := []sdk.Msg {& clienttypes.MsgUpdateClient {ClientId : clienttypes .FormatClientIdentifier ("08-wasm" , 1 ), ClientMessage : clientMsg }}
484
+ return msgs
485
+ },
486
+ false ,
487
+ },
488
+ {
489
+ "no success on one new UpdateClient message: no consensus state for trusted height" ,
490
+ func (suite * AnteTestSuite ) []sdk.Msg {
491
+ clientMsg , err := codectypes .NewAnyWithValue (& ibctm.Header {TrustedHeight : clienttypes .NewHeight (1 , 10000 )})
492
+ suite .Require ().NoError (err )
493
+
494
+ msgs := []sdk.Msg {& clienttypes.MsgUpdateClient {ClientId : suite .path .EndpointA .ClientID , ClientMessage : clientMsg }}
495
+ return msgs
496
+ },
497
+ false ,
498
+ },
405
499
{
406
500
"no success on three new UpdateClient messages and three redundant messages of each type" ,
407
501
func (suite * AnteTestSuite ) []sdk.Msg {
0 commit comments