Prathamesh Musale
d346b95234
- Add E2E tests following pattern suggested in cosmos-sdk docs: https://docs.cosmos.network/v0.50/build/building-modules/testing#end-to-end-tests - Tests for gRPC requests - Tests for manually configured CLI commands - Add a CI workflow to run these E2E tests Reviewed-on: deep-stack/laconic2d#13 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
68 lines
2.2 KiB
Go
68 lines
2.2 KiB
Go
package e2e
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"cosmossdk.io/log"
|
|
pruningtypes "cosmossdk.io/store/pruning/types"
|
|
|
|
dbm "github.com/cosmos/cosmos-db"
|
|
bam "github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
servertypes "github.com/cosmos/cosmos-sdk/server/types"
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
|
"github.com/cosmos/cosmos-sdk/types/module/testutil"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
"github.com/cosmos/cosmos-sdk/x/staking"
|
|
|
|
laconicApp "git.vdb.to/cerc-io/laconic2d/app"
|
|
auctionmodule "git.vdb.to/cerc-io/laconic2d/x/auction/module"
|
|
bondmodule "git.vdb.to/cerc-io/laconic2d/x/bond/module"
|
|
registrymodule "git.vdb.to/cerc-io/laconic2d/x/registry/module"
|
|
|
|
_ "git.vdb.to/cerc-io/laconic2d/app/params" // import for side-effects (see init)
|
|
)
|
|
|
|
// NewTestNetworkFixture returns a new LaconicApp AppConstructor for network simulation tests
|
|
func NewTestNetworkFixture() network.TestFixture {
|
|
dir, err := os.MkdirTemp("", "laconic")
|
|
if err != nil {
|
|
panic(fmt.Sprintf("failed creating temporary directory: %v", err))
|
|
}
|
|
defer os.RemoveAll(dir)
|
|
|
|
app, err := laconicApp.NewLaconicApp(log.NewNopLogger(), dbm.NewMemDB(), nil, true, simtestutil.NewAppOptionsWithFlagHome(dir))
|
|
if err != nil {
|
|
panic(fmt.Sprintf("failed to create laconic app: %v", err))
|
|
}
|
|
|
|
appCtr := func(val network.ValidatorI) servertypes.Application {
|
|
app, err := laconicApp.NewLaconicApp(
|
|
val.GetCtx().Logger, dbm.NewMemDB(), nil, true,
|
|
simtestutil.NewAppOptionsWithFlagHome(val.GetCtx().Config.RootDir),
|
|
bam.SetPruning(pruningtypes.NewPruningOptionsFromString(val.GetAppConfig().Pruning)),
|
|
bam.SetMinGasPrices(val.GetAppConfig().MinGasPrices),
|
|
bam.SetChainID(val.GetCtx().Viper.GetString(flags.FlagChainID)),
|
|
)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("failed creating temporary directory: %v", err))
|
|
}
|
|
|
|
return app
|
|
}
|
|
|
|
return network.TestFixture{
|
|
AppConstructor: appCtr,
|
|
GenesisState: app.DefaultGenesis(),
|
|
EncodingConfig: testutil.MakeTestEncodingConfig(
|
|
auth.AppModuleBasic{},
|
|
staking.AppModuleBasic{},
|
|
auctionmodule.AppModule{},
|
|
bondmodule.AppModule{},
|
|
registrymodule.AppModule{},
|
|
),
|
|
}
|
|
}
|