You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
Go
67 lines
1.6 KiB
Go
4 years ago
|
package zrpc
|
||
4 years ago
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
4 years ago
|
"github.com/tal-tech/go-zero/zrpc/internal/mock"
|
||
4 years ago
|
"google.golang.org/grpc"
|
||
|
"google.golang.org/grpc/codes"
|
||
|
"google.golang.org/grpc/status"
|
||
|
)
|
||
|
|
||
|
func TestProxy(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
amount float32
|
||
|
res *mock.DepositResponse
|
||
|
errCode codes.Code
|
||
|
errMsg string
|
||
|
}{
|
||
|
{
|
||
|
"invalid request with negative amount",
|
||
|
-1.11,
|
||
|
nil,
|
||
|
codes.InvalidArgument,
|
||
|
fmt.Sprintf("cannot deposit %v", -1.11),
|
||
|
},
|
||
|
{
|
||
|
"valid request with non negative amount",
|
||
|
0.00,
|
||
|
&mock.DepositResponse{Ok: true},
|
||
|
codes.OK,
|
||
|
"",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
proxy := NewProxy("foo", WithDialOption(grpc.WithInsecure()),
|
||
|
WithDialOption(grpc.WithContextDialer(dialer())))
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
conn, err := proxy.TakeConn(context.Background())
|
||
|
assert.Nil(t, err)
|
||
|
cli := mock.NewDepositServiceClient(conn)
|
||
|
request := &mock.DepositRequest{Amount: tt.amount}
|
||
|
response, err := cli.Deposit(context.Background(), request)
|
||
|
if response != nil {
|
||
|
assert.True(t, len(response.String()) > 0)
|
||
|
if response.GetOk() != tt.res.GetOk() {
|
||
|
t.Error("response: expected", tt.res.GetOk(), "received", response.GetOk())
|
||
|
}
|
||
|
}
|
||
|
if err != nil {
|
||
|
if e, ok := status.FromError(err); ok {
|
||
|
if e.Code() != tt.errCode {
|
||
|
t.Error("error code: expected", codes.InvalidArgument, "received", e.Code())
|
||
|
}
|
||
|
if e.Message() != tt.errMsg {
|
||
|
t.Error("error message: expected", tt.errMsg, "received", e.Message())
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|