Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

e2e: adding ibcwasm e2e upgrade test #5333

Merged
merged 6 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
155 changes: 155 additions & 0 deletions e2e/tests/wasm/upgrade_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
package wasm
damiannolan marked this conversation as resolved.
Show resolved Hide resolved

import (
"context"
"crypto/sha256"
"encoding/hex"
"fmt"
"io"
"os"
"testing"
"time"

testifysuite "github.com/stretchr/testify/suite"

"github.com/strangelove-ventures/interchaintest/v8/chain/cosmos"
"github.com/strangelove-ventures/interchaintest/v8/ibc"
"github.com/strangelove-ventures/interchaintest/v8/testutil"

upgradetypes "cosmossdk.io/x/upgrade/types"

authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
"github.com/cosmos/ibc-go/e2e/testsuite"
"github.com/cosmos/ibc-go/e2e/testvalues"
wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types"
)

const (
haltHeight = uint64(100)
blocksAfterUpgrade = uint64(10)
)

func TestIBCWasmUpgradeTestSuite(t *testing.T) {
testCfg := testsuite.LoadConfig()
if testCfg.UpgradeConfig.Tag == "" || testCfg.UpgradeConfig.PlanName == "" {
t.Fatalf("%s and %s must be set when running an upgrade test", testsuite.ChainUpgradeTagEnv, testsuite.ChainUpgradePlanEnv)
}

// wasm tests require a longer voting period to account for the time it takes to upload a contract.
testvalues.VotingPeriod = time.Minute * 5

testifysuite.Run(t, new(IBCWasmUpgradeTestSuite))
}

type IBCWasmUpgradeTestSuite struct {
testsuite.E2ETestSuite
}

func (s *IBCWasmUpgradeTestSuite) TestIBCWasmChainUpgrade() {
t := s.T()

ctx := context.Background()
chain := s.SetupSingleChain(ctx)
checksum := ""

userWallet := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount)
s.Require().NoError(testutil.WaitForBlocks(ctx, 1, chain), "failed to wait for blocks")

t.Run("create and exec store code proposal", func(t *testing.T) {
file, err := os.Open("contracts/ics10_grandpa_cw.wasm.gz")
s.Require().NoError(err)

checksum = s.ExecStoreCodeProposal(ctx, chain.(*cosmos.CosmosChain), userWallet, file)
s.Require().NotEmpty(checksum, "checksum must not be empty")
})

t.Run("upgrade chain", func(t *testing.T) {
testCfg := testsuite.LoadConfig()
s.UpgradeChain(ctx, chain.(*cosmos.CosmosChain), userWallet, testCfg.UpgradeConfig.PlanName, testCfg.ChainConfigs[0].Tag, testCfg.UpgradeConfig.Tag)
})

t.Run("query wasm checksums", func(t *testing.T) {
checksums, err := s.QueryWasmChecksums(ctx, chain)
s.Require().NoError(err)
s.Require().Contains(checksums, checksum)
})
}

// UpgradeChain upgrades a chain to a specific version using the planName provided.
// The software upgrade proposal is broadcast by the provided wallet.
func (s *IBCWasmUpgradeTestSuite) UpgradeChain(ctx context.Context, chain *cosmos.CosmosChain, wallet ibc.Wallet, planName, currentVersion, upgradeVersion string) {
plan := upgradetypes.Plan{
Name: planName,
Height: int64(haltHeight),
Info: fmt.Sprintf("upgrade version test from %s to %s", currentVersion, upgradeVersion),
}

upgradeProposal := upgradetypes.NewSoftwareUpgradeProposal(fmt.Sprintf("upgrade from %s to %s", currentVersion, upgradeVersion), "upgrade chain E2E test", plan)
s.ExecuteAndPassGovV1Beta1Proposal(ctx, chain, wallet, upgradeProposal)

height, err := chain.Height(ctx)
s.Require().NoError(err, "error fetching height before upgrade")

timeoutCtx, timeoutCtxCancel := context.WithTimeout(ctx, time.Minute*2)
defer timeoutCtxCancel()

err = testutil.WaitForBlocks(timeoutCtx, int(haltHeight-height)+1, chain)
s.Require().Error(err, "chain did not halt at halt height")

err = chain.StopAllNodes(ctx)
s.Require().NoError(err, "error stopping node(s)")

repository := chain.Nodes()[0].Image.Repository
chain.UpgradeVersion(ctx, s.DockerClient, repository, upgradeVersion)

err = chain.StartAllNodes(ctx)
s.Require().NoError(err, "error starting upgraded node(s)")

// we are reinitializing the clients because we need to update the hostGRPCAddress after
// the upgrade and subsequent restarting of nodes
s.InitGRPCClients(chain)

timeoutCtx, timeoutCtxCancel = context.WithTimeout(ctx, time.Minute*2)
defer timeoutCtxCancel()
Comment on lines +115 to +116
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm curious, there's now two defers in this function. Does this reset the context timeout?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question! I copied this from the other chain upgrade test file.
As far as I know defer in go operates like the statement following defer is wrapped inside a function.
It can be pretty weird at times. I'm kind of curious now as to see what exactly happens here too. I might play around with some code to test things out.


err = testutil.WaitForBlocks(timeoutCtx, int(blocksAfterUpgrade), chain)
s.Require().NoError(err, "chain did not produce blocks after upgrade")

height, err = chain.Height(ctx)
s.Require().NoError(err, "error fetching height after upgrade")

s.Require().Greater(height, haltHeight, "height did not increment after upgrade")
}

func (s *IBCWasmUpgradeTestSuite) ExecStoreCodeProposal(ctx context.Context, chain *cosmos.CosmosChain, wallet ibc.Wallet, proposalContentReader io.Reader) string {
zippedContent, err := io.ReadAll(proposalContentReader)
s.Require().NoError(err)

computedChecksum := s.extractChecksumFromGzippedContent(zippedContent)

msgStoreCode := wasmtypes.MsgStoreCode{
Signer: authtypes.NewModuleAddress(govtypes.ModuleName).String(),
WasmByteCode: zippedContent,
}

s.ExecuteAndPassGovV1Proposal(ctx, &msgStoreCode, chain, wallet)

checksumBz, err := s.QueryWasmCode(ctx, chain, computedChecksum)
s.Require().NoError(err)

checksum32 := sha256.Sum256(checksumBz)
actualChecksum := hex.EncodeToString(checksum32[:])
s.Require().Equal(computedChecksum, actualChecksum, "checksum returned from query did not match the computed checksum")

return actualChecksum
}

// extractChecksumFromGzippedContent takes a gzipped wasm contract and returns the checksum.
func (s *IBCWasmUpgradeTestSuite) extractChecksumFromGzippedContent(zippedContent []byte) string {
content, err := wasmtypes.Uncompress(zippedContent, wasmtypes.MaxWasmByteSize())
s.Require().NoError(err)

checksum32 := sha256.Sum256(content)
return hex.EncodeToString(checksum32[:])
}
11 changes: 11 additions & 0 deletions e2e/testsuite/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -425,3 +425,14 @@ func (s *E2ETestSuite) QueryWasmCode(ctx context.Context, chain ibc.Chain, check
}
return res.Data, nil
}

// QueryWasmChecksums queries the wasm code checksums stored within the 08-wasm module.
func (s *E2ETestSuite) QueryWasmChecksums(ctx context.Context, chain ibc.Chain) ([]string, error) {
queryClient := s.GetChainGRCPClients(chain).WasmQueryClient
res, err := queryClient.Checksums(ctx, &wasmtypes.QueryChecksumsRequest{})
if err != nil {
return nil, err
}

return res.Checksums, nil
}
Loading