micro/client/rpc_client_test.go

158 lines
3.3 KiB
Go
Raw Normal View History

2016-11-07 21:51:25 +03:00
package client
import (
2018-03-03 14:53:52 +03:00
"context"
2016-11-07 21:51:25 +03:00
"fmt"
"testing"
"github.com/micro/go-micro/v2/errors"
"github.com/micro/go-micro/v2/registry"
"github.com/micro/go-micro/v2/registry/memory"
2016-11-07 21:51:25 +03:00
)
2019-01-14 18:27:25 +03:00
func newTestRegistry() registry.Registry {
return memory.NewRegistry(memory.Services(testData))
2019-01-14 18:27:25 +03:00
}
2018-04-14 18:16:58 +03:00
func TestCallAddress(t *testing.T) {
var called bool
service := "test.service"
2019-01-11 00:25:31 +03:00
endpoint := "Test.Endpoint"
2019-07-08 10:01:42 +03:00
address := "10.1.10.1:8080"
2018-04-14 18:16:58 +03:00
wrap := func(cf CallFunc) CallFunc {
return func(ctx context.Context, node *registry.Node, req Request, rsp interface{}, opts CallOptions) error {
2018-04-14 18:16:58 +03:00
called = true
if req.Service() != service {
return fmt.Errorf("expected service: %s got %s", service, req.Service())
}
2019-01-11 00:25:31 +03:00
if req.Endpoint() != endpoint {
return fmt.Errorf("expected service: %s got %s", endpoint, req.Endpoint())
2018-04-14 18:16:58 +03:00
}
if node.Address != address {
return fmt.Errorf("expected address: %s got %s", address, node.Address)
2019-01-18 15:30:39 +03:00
}
2018-04-14 18:16:58 +03:00
// don't do the call
return nil
}
}
2019-01-14 18:27:25 +03:00
r := newTestRegistry()
2018-04-14 18:16:58 +03:00
c := NewClient(
Registry(r),
WrapCall(wrap),
)
2019-01-11 00:25:31 +03:00
req := c.NewRequest(service, endpoint, nil)
2018-04-14 18:16:58 +03:00
// test calling remote address
2019-07-08 10:01:42 +03:00
if err := c.Call(context.Background(), req, nil, WithAddress(address)); err != nil {
2018-04-14 18:16:58 +03:00
t.Fatal("call with address error", err)
}
if !called {
t.Fatal("wrapper not called")
}
}
func TestCallRetry(t *testing.T) {
service := "test.service"
2019-01-11 00:25:31 +03:00
endpoint := "Test.Endpoint"
2019-01-18 15:30:39 +03:00
address := "10.1.10.1"
var called int
wrap := func(cf CallFunc) CallFunc {
return func(ctx context.Context, node *registry.Node, req Request, rsp interface{}, opts CallOptions) error {
called++
if called == 1 {
return errors.InternalServerError("test.error", "retry request")
}
// don't do the call
return nil
}
}
2019-01-14 18:27:25 +03:00
r := newTestRegistry()
c := NewClient(
Registry(r),
WrapCall(wrap),
)
2019-01-11 00:25:31 +03:00
req := c.NewRequest(service, endpoint, nil)
// test calling remote address
if err := c.Call(context.Background(), req, nil, WithAddress(address)); err != nil {
t.Fatal("call with address error", err)
}
// num calls
if called < c.Options().CallOptions.Retries+1 {
t.Fatal("request not retried")
}
}
2016-11-07 21:51:25 +03:00
func TestCallWrapper(t *testing.T) {
var called bool
id := "test.1"
service := "test.service"
2019-01-11 00:25:31 +03:00
endpoint := "Test.Endpoint"
2019-07-08 10:01:42 +03:00
address := "10.1.10.1:8080"
2016-11-07 21:51:25 +03:00
wrap := func(cf CallFunc) CallFunc {
return func(ctx context.Context, node *registry.Node, req Request, rsp interface{}, opts CallOptions) error {
2016-11-07 21:51:25 +03:00
called = true
if req.Service() != service {
return fmt.Errorf("expected service: %s got %s", service, req.Service())
}
2019-01-11 00:25:31 +03:00
if req.Endpoint() != endpoint {
return fmt.Errorf("expected service: %s got %s", endpoint, req.Endpoint())
2016-11-07 21:51:25 +03:00
}
if node.Address != address {
return fmt.Errorf("expected address: %s got %s", address, node.Address)
2016-11-07 21:51:25 +03:00
}
// don't do the call
return nil
}
}
2019-01-14 18:27:25 +03:00
r := newTestRegistry()
2016-11-07 21:51:25 +03:00
c := NewClient(
Registry(r),
WrapCall(wrap),
)
r.Register(&registry.Service{
Name: service,
Version: "latest",
Nodes: []*registry.Node{
{
2016-11-07 21:51:25 +03:00
Id: id,
2019-01-18 15:30:39 +03:00
Address: address,
Metadata: map[string]string{
"protocol": "mucp",
},
2016-11-07 21:51:25 +03:00
},
},
})
2019-01-11 00:25:31 +03:00
req := c.NewRequest(service, endpoint, nil)
2016-11-07 21:51:25 +03:00
if err := c.Call(context.Background(), req, nil); err != nil {
t.Fatal("call wrapper error", err)
}
if !called {
t.Fatal("wrapper not called")
}
}