package keeper_test import ( "path/filepath" "testing" "time" "github.com/stretchr/testify/suite" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/simapp" store "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" "github.com/cosmos/cosmos-sdk/x/upgrade/types" ) type KeeperTestSuite struct { suite.Suite homeDir string app *simapp.SimApp ctx sdk.Context } func (s *KeeperTestSuite) SetupTest() { app := simapp.Setup(false) homeDir := filepath.Join(s.T().TempDir(), "x_upgrade_keeper_test") app.UpgradeKeeper = keeper.NewKeeper( // recreate keeper in order to use a custom home path make(map[int64]bool), app.GetKey(types.StoreKey), app.AppCodec(), homeDir, ) s.T().Log("home dir:", homeDir) s.homeDir = homeDir s.app = app s.ctx = app.BaseApp.NewContext(false, tmproto.Header{ Time: time.Now(), Height: 10, }) } func (s *KeeperTestSuite) TestReadUpgradeInfoFromDisk() { // require no error when the upgrade info file does not exist _, err := s.app.UpgradeKeeper.ReadUpgradeInfoFromDisk() s.Require().NoError(err) expected := store.UpgradeInfo{ Name: "test_upgrade", Height: 100, } // create an upgrade info file s.Require().NoError(s.app.UpgradeKeeper.DumpUpgradeInfoToDisk(expected.Height, expected.Name)) ui, err := s.app.UpgradeKeeper.ReadUpgradeInfoFromDisk() s.Require().NoError(err) s.Require().Equal(expected, ui) } func (s *KeeperTestSuite) TestScheduleUpgrade() { cases := []struct { name string plan types.Plan setup func() expPass bool }{ { name: "successful time schedule", plan: types.Plan{ Name: "all-good", Info: "some text here", Time: s.ctx.BlockTime().Add(time.Hour), }, setup: func() {}, expPass: true, }, { name: "successful height schedule", plan: types.Plan{ Name: "all-good", Info: "some text here", Height: 123450000, }, setup: func() {}, expPass: true, }, { name: "successful overwrite", plan: types.Plan{ Name: "all-good", Info: "some text here", Height: 123450000, }, setup: func() { s.app.UpgradeKeeper.ScheduleUpgrade(s.ctx, types.Plan{ Name: "alt-good", Info: "new text here", Height: 543210000, }) }, expPass: true, }, { name: "unsuccessful schedule: invalid plan", plan: types.Plan{ Height: 123450000, }, setup: func() {}, expPass: false, }, { name: "unsuccessful time schedule: due date in past", plan: types.Plan{ Name: "all-good", Info: "some text here", Time: s.ctx.BlockTime(), }, setup: func() {}, expPass: false, }, { name: "unsuccessful height schedule: due date in past", plan: types.Plan{ Name: "all-good", Info: "some text here", Height: 1, }, setup: func() {}, expPass: false, }, { name: "unsuccessful schedule: schedule already executed", plan: types.Plan{ Name: "all-good", Info: "some text here", Height: 123450000, }, setup: func() { s.app.UpgradeKeeper.SetUpgradeHandler("all-good", func(_ sdk.Context, _ types.Plan) {}) s.app.UpgradeKeeper.ApplyUpgrade(s.ctx, types.Plan{ Name: "all-good", Info: "some text here", Height: 123450000, }) }, expPass: false, }, } for _, tc := range cases { tc := tc s.Run(tc.name, func() { // reset suite s.SetupTest() // setup test case tc.setup() err := s.app.UpgradeKeeper.ScheduleUpgrade(s.ctx, tc.plan) if tc.expPass { s.Require().NoError(err, "valid test case failed") } else { s.Require().Error(err, "invalid test case passed") } }) } } func (s *KeeperTestSuite) TestSetUpgradedClient() { cs := []byte("IBC client state") cases := []struct { name string height int64 setup func() exists bool }{ { name: "no upgraded client exists", height: 10, setup: func() {}, exists: false, }, { name: "success", height: 10, setup: func() { s.app.UpgradeKeeper.SetUpgradedClient(s.ctx, 10, cs) }, exists: true, }, } for _, tc := range cases { // reset suite s.SetupTest() // setup test case tc.setup() gotCs, exists := s.app.UpgradeKeeper.GetUpgradedClient(s.ctx, tc.height) if tc.exists { s.Require().Equal(cs, gotCs, "valid case: %s did not retrieve correct client state", tc.name) s.Require().True(exists, "valid case: %s did not retrieve client state", tc.name) } else { s.Require().Nil(gotCs, "invalid case: %s retrieved valid client state", tc.name) s.Require().False(exists, "invalid case: %s retrieved valid client state", tc.name) } } } func TestKeeperTestSuite(t *testing.T) { suite.Run(t, new(KeeperTestSuite)) }