mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-03-30 15:08:28 +00:00
97 lines
3.2 KiB
Go
97 lines
3.2 KiB
Go
package network
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
tmdb "github.com/cometbft/cometbft-db"
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/crypto/hd"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keyring"
|
|
servertypes "github.com/cosmos/cosmos-sdk/server/types"
|
|
pruningtypes "github.com/cosmos/cosmos-sdk/store/pruning/types"
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/planetmint/planetmint-go/app"
|
|
)
|
|
|
|
type (
|
|
Network = network.Network
|
|
Config = network.Config
|
|
)
|
|
|
|
// New creates instance with fully configured cosmos network.
|
|
// Accepts optional config, that will be used in place of the DefaultConfig() if provided.
|
|
func New(t *testing.T, baseDir string, configs ...Config) *Network {
|
|
if len(configs) > 1 {
|
|
panic("at most one config should be provided")
|
|
}
|
|
var cfg network.Config
|
|
if len(configs) == 0 {
|
|
cfg = DefaultConfig()
|
|
} else {
|
|
cfg = configs[0]
|
|
}
|
|
// keyringAddress := CreateTestingKeyring(baseDir,
|
|
// "helmet hedgehog lab actor weekend elbow pelican valid obtain hungry rocket decade tower gallery fit practice cart cherry giggle hair snack glance bulb farm")
|
|
// fmt.Println("address : " + keyringAddress)
|
|
net, err := network.New(t, baseDir, cfg)
|
|
|
|
require.NoError(t, err)
|
|
_, err = net.WaitForHeight(1)
|
|
require.NoError(t, err)
|
|
t.Cleanup(net.Cleanup)
|
|
return net
|
|
}
|
|
|
|
// DefaultConfig will initialize config for the network with custom application,
|
|
// genesis and single validator. All other parameters are inherited from cosmos-sdk/testutil/network.DefaultConfig
|
|
func DefaultConfig() network.Config {
|
|
var (
|
|
encoding = app.MakeEncodingConfig()
|
|
chainID = "chain-foobarbaz"
|
|
)
|
|
|
|
return network.Config{
|
|
Codec: encoding.Marshaler,
|
|
TxConfig: encoding.TxConfig,
|
|
LegacyAmino: encoding.Amino,
|
|
InterfaceRegistry: encoding.InterfaceRegistry,
|
|
AccountRetriever: authtypes.AccountRetriever{},
|
|
AppConstructor: func(val network.ValidatorI) servertypes.Application {
|
|
return app.New(
|
|
val.GetCtx().Logger,
|
|
tmdb.NewMemDB(),
|
|
nil,
|
|
true,
|
|
map[int64]bool{},
|
|
val.GetCtx().Config.RootDir,
|
|
0,
|
|
encoding,
|
|
simtestutil.EmptyAppOptions{},
|
|
baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(val.GetAppConfig().Pruning)),
|
|
baseapp.SetMinGasPrices(val.GetAppConfig().MinGasPrices),
|
|
baseapp.SetChainID(chainID),
|
|
)
|
|
},
|
|
GenesisState: app.ModuleBasics.DefaultGenesis(encoding.Marshaler),
|
|
TimeoutCommit: 2 * time.Second,
|
|
ChainID: chainID,
|
|
NumValidators: 1,
|
|
BondDenom: sdk.DefaultBondDenom,
|
|
MinGasPrices: fmt.Sprintf("0.000003%s", sdk.DefaultBondDenom),
|
|
AccountTokens: sdk.TokensFromConsensusPower(1000, sdk.DefaultPowerReduction),
|
|
StakingTokens: sdk.TokensFromConsensusPower(500, sdk.DefaultPowerReduction),
|
|
BondedTokens: sdk.TokensFromConsensusPower(100, sdk.DefaultPowerReduction),
|
|
PruningStrategy: pruningtypes.PruningOptionNothing,
|
|
CleanupDir: true,
|
|
SigningAlgo: string(hd.Secp256k1Type),
|
|
KeyringOptions: []keyring.Option{},
|
|
}
|
|
}
|