test(gateway): remove test

This commit is contained in:
bandl 2021-10-17 14:49:55 +08:00
parent 6fdf250833
commit aade8e8edb
1 changed files with 0 additions and 34 deletions

View File

@ -1,34 +0,0 @@
package cmd
import (
"context"
"fmt"
"testing"
"gitee.com/timedb/wheatCache/pkg/proto"
"github.com/stretchr/testify/require"
"google.golang.org/grpc"
)
func TestContextChannel(t *testing.T) {
cxt := context.Background()
_, ctxChannel := context.WithCancel(cxt)
ctxChannel()
ctxChannel()
}
func TestGateway_Master(t *testing.T) {
comm, err := grpc.Dial("127.0.0.1:5891", grpc.WithInsecure())
require.NoError(t, err)
ctx := context.Background()
cli := proto.NewCommServerClient(comm)
resp, err := cli.Set(ctx, &proto.SetRequest{
Key: &proto.BaseKey{
Key: "aa",
},
Val: "awd",
})
require.NoError(t, err)
fmt.Printf(resp.Result)
}