wormhole/wormchain/x/wormhole/keeper/grpc_query_config_test.go

45 lines
1.1 KiB
Go

package keeper_test
import (
"testing"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/require"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
keepertest "github.com/wormhole-foundation/wormchain/testutil/keeper"
"github.com/wormhole-foundation/wormchain/x/wormhole/types"
)
func TestConfigQuery(t *testing.T) {
keeper, ctx := keepertest.WormholeKeeper(t)
wctx := sdk.WrapSDKContext(ctx)
item := createTestConfig(keeper, ctx)
for _, tc := range []struct {
desc string
request *types.QueryGetConfigRequest
response *types.QueryGetConfigResponse
err error
}{
{
desc: "First",
request: &types.QueryGetConfigRequest{},
response: &types.QueryGetConfigResponse{Config: item},
},
{
desc: "InvalidRequest",
err: status.Error(codes.InvalidArgument, "invalid request"),
},
} {
t.Run(tc.desc, func(t *testing.T) {
response, err := keeper.Config(wctx, tc.request)
if tc.err != nil {
require.ErrorIs(t, err, tc.err)
} else {
require.Equal(t, tc.response, response)
}
})
}
}