2020-04-24 22:36:08 +00:00
|
|
|
package cli_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
2020-04-30 14:23:41 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
|
2024-05-01 03:17:24 +00:00
|
|
|
"github.com/0glabs/0g-chain/app"
|
|
|
|
"github.com/0glabs/0g-chain/x/committee/client/cli"
|
2020-04-24 22:36:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type CLITestSuite struct {
|
|
|
|
suite.Suite
|
2022-01-08 00:39:27 +00:00
|
|
|
cdc codec.Codec
|
2020-04-24 22:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *CLITestSuite) SetupTest() {
|
2020-04-27 12:57:47 +00:00
|
|
|
tApp := app.NewTestApp()
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.cdc = tApp.AppCodec()
|
2020-04-24 22:36:08 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
func (suite *CLITestSuite) TestExampleCommitteeChangeProposal_NotPanics() {
|
2020-04-24 22:36:08 +00:00
|
|
|
suite.NotPanics(func() { cli.MustGetExampleCommitteeChangeProposal(suite.cdc) })
|
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
func (suite *CLITestSuite) TestExampleCommitteeDeleteProposal_NotPanics() {
|
2020-04-24 22:36:08 +00:00
|
|
|
suite.NotPanics(func() { cli.MustGetExampleCommitteeDeleteProposal(suite.cdc) })
|
|
|
|
}
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
func (suite *CLITestSuite) TestExampleParameterChangeProposal_NotPanics() {
|
2020-04-24 22:36:08 +00:00
|
|
|
suite.NotPanics(func() { cli.MustGetExampleParameterChangeProposal(suite.cdc) })
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCLITestSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(CLITestSuite))
|
|
|
|
}
|