-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
test: remove some deps from testutil/network #20843
Changes from 1 commit
819e55e
0621147
cb0fa95
ff51080
6beea70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -6,59 +6,34 @@ import ( | |||||||||||||||||||||||||||||||||||
"testing" | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
abci "github.com/cometbft/cometbft/api/cometbft/abci/v1" | ||||||||||||||||||||||||||||||||||||
"github.com/stretchr/testify/suite" | ||||||||||||||||||||||||||||||||||||
"github.com/stretchr/testify/require" | ||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sort the import statements. The import statements should be sorted according to the -import (
+import (
+ "context"
+ "strconv"
+ "testing"
+
+ abci "github.com/cometbft/cometbft/api/cometbft/abci/v1"
+ "github.com/stretchr/testify/require"
+ "google.golang.org/grpc"
+ "google.golang.org/grpc/metadata"
+
+ "github.com/cosmos/cosmos-sdk/client"
+ clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli"
+ "github.com/cosmos/cosmos-sdk/testutil/testdata"
+ "github.com/cosmos/cosmos-sdk/types/address"
+ grpctypes "github.com/cosmos/cosmos-sdk/types/grpc"
+) Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||
"google.golang.org/grpc" | ||||||||||||||||||||||||||||||||||||
"google.golang.org/grpc/metadata" | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
_ "cosmossdk.io/x/accounts" | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/testutil/network" | ||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/client" | ||||||||||||||||||||||||||||||||||||
clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" | ||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/testutil/testdata" | ||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/types/address" | ||||||||||||||||||||||||||||||||||||
grpctypes "github.com/cosmos/cosmos-sdk/types/grpc" | ||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
type IntegrationTestSuite struct { | ||||||||||||||||||||||||||||||||||||
suite.Suite | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
network network.NetworkI | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
func (s *IntegrationTestSuite) SetupSuite() { | ||||||||||||||||||||||||||||||||||||
s.T().Log("setting up integration test suite") | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
cfg, err := network.DefaultConfigWithAppConfig(network.MinimumAppConfig()) | ||||||||||||||||||||||||||||||||||||
func TestCLIQueryConn(t *testing.T) { | ||||||||||||||||||||||||||||||||||||
t.Skip("data race in comet is causing this to fail") | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
s.NoError(err) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
s.network, err = network.New(s.T(), s.T().TempDir(), cfg) | ||||||||||||||||||||||||||||||||||||
s.Require().NoError(err) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
s.Require().NoError(s.network.WaitForNextBlock()) | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
func (s *IntegrationTestSuite) TearDownSuite() { | ||||||||||||||||||||||||||||||||||||
s.T().Log("tearing down integration test suite") | ||||||||||||||||||||||||||||||||||||
s.network.Cleanup() | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
func (s *IntegrationTestSuite) TestCLIQueryConn() { | ||||||||||||||||||||||||||||||||||||
s.T().Skip("data race in comet is causing this to fail") | ||||||||||||||||||||||||||||||||||||
var header metadata.MD | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
testClient := testdata.NewQueryClient(s.network.GetValidators()[0].GetClientCtx()) | ||||||||||||||||||||||||||||||||||||
testClient := testdata.NewQueryClient(client.Context{}) | ||||||||||||||||||||||||||||||||||||
res, err := testClient.Echo(context.Background(), &testdata.EchoRequest{Message: "hello"}, grpc.Header(&header)) | ||||||||||||||||||||||||||||||||||||
s.NoError(err) | ||||||||||||||||||||||||||||||||||||
require.NoError(t, err) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
blockHeight := header.Get(grpctypes.GRPCBlockHeightHeader) | ||||||||||||||||||||||||||||||||||||
height, err := strconv.Atoi(blockHeight[0]) | ||||||||||||||||||||||||||||||||||||
s.Require().NoError(err) | ||||||||||||||||||||||||||||||||||||
s.Require().GreaterOrEqual(height, 1) // at least the 1st block | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
s.Equal("hello", res.Message) | ||||||||||||||||||||||||||||||||||||
require.NoError(t, err) | ||||||||||||||||||||||||||||||||||||
require.GreaterOrEqual(t, height, 1) // at least the 1st block | ||||||||||||||||||||||||||||||||||||
require.Equal(t, "hello", res.Message) | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
func (s *IntegrationTestSuite) TestQueryABCIHeight() { | ||||||||||||||||||||||||||||||||||||
func TestQueryABCIHeight(t *testing.T) { | ||||||||||||||||||||||||||||||||||||
testCases := []struct { | ||||||||||||||||||||||||||||||||||||
name string | ||||||||||||||||||||||||||||||||||||
reqHeight int64 | ||||||||||||||||||||||||||||||||||||
|
@@ -86,30 +61,22 @@ func (s *IntegrationTestSuite) TestQueryABCIHeight() { | |||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
for _, tc := range testCases { | ||||||||||||||||||||||||||||||||||||
s.Run(tc.name, func() { | ||||||||||||||||||||||||||||||||||||
_, err := s.network.WaitForHeight(tc.expHeight) | ||||||||||||||||||||||||||||||||||||
s.Require().NoError(err) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
val := s.network.GetValidators()[0] | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
clientCtx := val.GetClientCtx() | ||||||||||||||||||||||||||||||||||||
clientCtx = clientCtx.WithHeight(tc.ctxHeight) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
t.Run(tc.name, func(t *testing.T) { | ||||||||||||||||||||||||||||||||||||
req := abci.QueryRequest{ | ||||||||||||||||||||||||||||||||||||
Path: "store/bank/key", | ||||||||||||||||||||||||||||||||||||
Height: tc.reqHeight, | ||||||||||||||||||||||||||||||||||||
Data: address.MustLengthPrefix(val.GetAddress()), | ||||||||||||||||||||||||||||||||||||
Data: address.MustLengthPrefix([]byte{}), | ||||||||||||||||||||||||||||||||||||
Prove: true, | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
res, err := clientCtx.QueryABCI(req) | ||||||||||||||||||||||||||||||||||||
s.Require().NoError(err) | ||||||||||||||||||||||||||||||||||||
clientCtx := client.Context{}.WithHeight(tc.ctxHeight). | ||||||||||||||||||||||||||||||||||||
WithClient(clitestutil.NewMockCometRPC(abci.QueryResponse{ | ||||||||||||||||||||||||||||||||||||
Height: tc.expHeight, | ||||||||||||||||||||||||||||||||||||
})) | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
s.Require().Equal(tc.expHeight, res.Height) | ||||||||||||||||||||||||||||||||||||
res, err := clientCtx.QueryABCI(req) | ||||||||||||||||||||||||||||||||||||
require.NoError(t, err) | ||||||||||||||||||||||||||||||||||||
require.Equal(t, tc.expHeight, res.Height) | ||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
func TestIntegrationTestSuite(t *testing.T) { | ||||||||||||||||||||||||||||||||||||
suite.Run(t, new(IntegrationTestSuite)) | ||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,15 +12,22 @@ import ( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"google.golang.org/grpc" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"google.golang.org/grpc/metadata" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_ "cosmossdk.io/x/accounts" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_ "cosmossdk.io/x/auth" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
authclient "cosmossdk.io/x/auth/client" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_ "cosmossdk.io/x/auth/tx/config" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_ "cosmossdk.io/x/bank" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
banktypes "cosmossdk.io/x/bank/types" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_ "cosmossdk.io/x/consensus" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_ "cosmossdk.io/x/staking" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+15
to
+22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sort the import statements. The import statements should be sorted according to the -import (
+import (
+ "context"
+ "fmt"
+ "testing"
+ "time"
+
+ "github.com/jhump/protoreflect/grpcreflect"
+ "github.com/stretchr/testify/require"
+ "github.com/stretchr/testify/suite"
+ "google.golang.org/grpc"
+ "google.golang.org/grpc/metadata"
+
+ _ "cosmossdk.io/x/accounts"
+ _ "cosmossdk.io/x/auth"
+ authclient "cosmossdk.io/x/auth/client"
+ _ "cosmossdk.io/x/auth/tx/config"
+ _ "cosmossdk.io/x/bank"
+ banktypes "cosmossdk.io/x/bank/types"
+ _ "cosmossdk.io/x/consensus"
+ _ "cosmossdk.io/x/staking"
+ stakingtypes "cosmossdk.io/x/staking/types"
+
+ "github.com/cosmos/cosmos-sdk/client"
+ reflectionv1 "github.com/cosmos/cosmos-sdk/client/grpc/reflection"
+ clienttx "github.com/cosmos/cosmos-sdk/client/tx"
+ "github.com/cosmos/cosmos-sdk/codec"
+ reflectionv2 "github.com/cosmos/cosmos-sdk/server/grpc/reflection/v2alpha1"
+ "github.com/cosmos/cosmos-sdk/testutil/configurator"
+ "github.com/cosmos/cosmos-sdk/testutil/network"
+ "github.com/cosmos/cosmos-sdk/testutil/testdata"
+ sdk "github.com/cosmos/cosmos-sdk/types"
+ grpctypes "github.com/cosmos/cosmos-sdk/types/grpc"
+ txtypes "github.com/cosmos/cosmos-sdk/types/tx"
+ "github.com/cosmos/cosmos-sdk/types/tx/signing"
+) Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
stakingtypes "cosmossdk.io/x/staking/types" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/client" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
reflectionv1 "github.com/cosmos/cosmos-sdk/client/grpc/reflection" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
clienttx "github.com/cosmos/cosmos-sdk/client/tx" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/codec" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
reflectionv2 "github.com/cosmos/cosmos-sdk/server/grpc/reflection/v2alpha1" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/testutil/configurator" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/testutil/network" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/testutil/testdata" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sdk "github.com/cosmos/cosmos-sdk/types" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -41,7 +48,15 @@ func (s *IntegrationTestSuite) SetupSuite() { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var err error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
s.T().Log("setting up integration test suite") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
s.cfg, err = network.DefaultConfigWithAppConfig(network.MinimumAppConfig()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
s.cfg, err = network.DefaultConfigWithAppConfig(configurator.NewAppConfig( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configurator.AccountsModule(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configurator.AuthModule(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configurator.BankModule(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configurator.GenutilModule(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configurator.StakingModule(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configurator.ConsensusModule(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configurator.TxModule(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
s.NoError(err) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
s.cfg.NumValidators = 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sort the import statements.
The import statements should be sorted according to the
gci
tool with the specified options.Committable suggestion
Tools
golangci-lint