add segmentio codec tests
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
		
							
								
								
									
										3
									
								
								codec/segmentio/generate.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								codec/segmentio/generate.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| package grpc | ||||
|  | ||||
| //go:generate protoc -I./internal/errors -I. --go-grpc_out=paths=source_relative:./internal/errors --go_out=paths=source_relative:./internal/errors --micro_out=paths=source_relative:./internal/errors internal/errors/errors.proto | ||||
							
								
								
									
										95
									
								
								codec/segmentio/grpc_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										95
									
								
								codec/segmentio/grpc_test.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,95 @@ | ||||
| package grpc_test | ||||
|  | ||||
| import ( | ||||
| 	"context" | ||||
| 	"testing" | ||||
|  | ||||
| 	bmemory "github.com/unistack-org/micro-broker-memory" | ||||
| 	gclient "github.com/unistack-org/micro-client-grpc" | ||||
|  | ||||
| 	//	protocodec "github.com/unistack-org/micro-codec-proto" | ||||
| 	protocodec "github.com/unistack-org/micro-codec-segmentio/proto" | ||||
| 	rmemory "github.com/unistack-org/micro-registry-memory" | ||||
| 	regRouter "github.com/unistack-org/micro-router-registry" | ||||
| 	gserver "github.com/unistack-org/micro-server-grpc" | ||||
| 	pb "github.com/unistack-org/micro-tests/server/grpc/proto" | ||||
| 	"github.com/unistack-org/micro/v3/broker" | ||||
| 	"github.com/unistack-org/micro/v3/client" | ||||
| 	"github.com/unistack-org/micro/v3/errors" | ||||
| 	"github.com/unistack-org/micro/v3/router" | ||||
| 	"github.com/unistack-org/micro/v3/server" | ||||
| ) | ||||
|  | ||||
| type testServer struct { | ||||
| 	pb.UnimplementedTestServer | ||||
| } | ||||
|  | ||||
| func (g *testServer) Call(ctx context.Context, req *pb.Request, rsp *pb.Response) error { | ||||
| 	if req.Name == "Error" { | ||||
| 		return &errors.Error{Id: "id", Code: 99, Detail: "detail"} | ||||
| 	} | ||||
| 	rsp.Msg = "Hello " + req.Name | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
| func TestGRPCServer(t *testing.T) { | ||||
| 	var err error | ||||
|  | ||||
| 	r := rmemory.NewRegistry() | ||||
| 	b := bmemory.NewBroker(broker.Registry(r)) | ||||
| 	s := gserver.NewServer(server.Codec("application/grpc+proto", protocodec.NewCodec()), server.Address(":12345"), server.Registry(r), server.Name("helloworld"), gserver.Reflection(true)) | ||||
| 	// create router | ||||
| 	rtr := regRouter.NewRouter(router.Registry(r)) | ||||
|  | ||||
| 	h := &testServer{} | ||||
| 	err = pb.RegisterTestHandler(s, h) | ||||
| 	if err != nil { | ||||
| 		t.Fatalf("can't register handler: %v", err) | ||||
| 	} | ||||
|  | ||||
| 	if err = s.Init(); err != nil { | ||||
| 		t.Fatal(err) | ||||
| 	} | ||||
|  | ||||
| 	if err = s.Start(); err != nil { | ||||
| 		t.Fatal(err) | ||||
| 	} | ||||
|  | ||||
| 	defer func() { | ||||
| 		if err = s.Stop(); err != nil { | ||||
| 			t.Fatal(err) | ||||
| 		} | ||||
| 	}() | ||||
|  | ||||
| 	// create client | ||||
| 	c := gclient.NewClient(client.Codec("application/grpc+proto", protocodec.NewCodec()), client.Router(rtr), client.Registry(r), client.Broker(b)) | ||||
|  | ||||
| 	testMethods := []string{ | ||||
| 		"Test.Call", | ||||
| 	} | ||||
|  | ||||
| 	for _, method := range testMethods { | ||||
| 		req := c.NewRequest("helloworld", method, &pb.Request{ | ||||
| 			Name: "John", | ||||
| 		}) | ||||
|  | ||||
| 		rsp := pb.Response{} | ||||
|  | ||||
| 		err = c.Call(context.TODO(), req, &rsp) | ||||
| 		if err != nil { | ||||
| 			t.Fatalf("method: %s err: %v", method, err) | ||||
| 		} | ||||
|  | ||||
| 		if rsp.Msg != "Hello John" { | ||||
| 			t.Fatalf("Got unexpected response %v", rsp.Msg) | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	//rsp := rpb.ServerReflectionResponse{} | ||||
| 	//req := c.NewRequest("helloworld", "Test.ServerReflectionInfo", &rpb.ServerReflectionRequest{}, client.StreamingRequest()) | ||||
| 	//if err := c.Call(context.TODO(), req, &rsp); err != nil { | ||||
| 	//	t.Fatal(err) | ||||
| 	//} | ||||
|  | ||||
| 	//	select {} | ||||
| } | ||||
							
								
								
									
										222
									
								
								codec/segmentio/proto/test.pb.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										222
									
								
								codec/segmentio/proto/test.pb.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,222 @@ | ||||
| // Code generated by protoc-gen-go. DO NOT EDIT. | ||||
| // versions: | ||||
| // 	protoc-gen-go v1.25.0-devel | ||||
| // 	protoc        v3.6.1 | ||||
| // source: test.proto | ||||
|  | ||||
| package helloworld | ||||
|  | ||||
| import ( | ||||
| 	proto "github.com/golang/protobuf/proto" | ||||
| 	protoreflect "google.golang.org/protobuf/reflect/protoreflect" | ||||
| 	protoimpl "google.golang.org/protobuf/runtime/protoimpl" | ||||
| 	reflect "reflect" | ||||
| 	sync "sync" | ||||
| ) | ||||
|  | ||||
| const ( | ||||
| 	// Verify that this generated code is sufficiently up-to-date. | ||||
| 	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) | ||||
| 	// Verify that runtime/protoimpl is sufficiently up-to-date. | ||||
| 	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) | ||||
| ) | ||||
|  | ||||
| // This is a compile-time assertion that a sufficiently up-to-date version | ||||
| // of the legacy proto package is being used. | ||||
| const _ = proto.ProtoPackageIsVersion4 | ||||
|  | ||||
| type Request struct { | ||||
| 	state         protoimpl.MessageState | ||||
| 	sizeCache     protoimpl.SizeCache | ||||
| 	unknownFields protoimpl.UnknownFields | ||||
|  | ||||
| 	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"` | ||||
| 	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` | ||||
| } | ||||
|  | ||||
| func (x *Request) Reset() { | ||||
| 	*x = Request{} | ||||
| 	if protoimpl.UnsafeEnabled { | ||||
| 		mi := &file_test_proto_msgTypes[0] | ||||
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||
| 		ms.StoreMessageInfo(mi) | ||||
| 	} | ||||
| } | ||||
|  | ||||
| func (x *Request) String() string { | ||||
| 	return protoimpl.X.MessageStringOf(x) | ||||
| } | ||||
|  | ||||
| func (*Request) ProtoMessage() {} | ||||
|  | ||||
| func (x *Request) ProtoReflect() protoreflect.Message { | ||||
| 	mi := &file_test_proto_msgTypes[0] | ||||
| 	if protoimpl.UnsafeEnabled && x != nil { | ||||
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||
| 		if ms.LoadMessageInfo() == nil { | ||||
| 			ms.StoreMessageInfo(mi) | ||||
| 		} | ||||
| 		return ms | ||||
| 	} | ||||
| 	return mi.MessageOf(x) | ||||
| } | ||||
|  | ||||
| // Deprecated: Use Request.ProtoReflect.Descriptor instead. | ||||
| func (*Request) Descriptor() ([]byte, []int) { | ||||
| 	return file_test_proto_rawDescGZIP(), []int{0} | ||||
| } | ||||
|  | ||||
| func (x *Request) GetUuid() string { | ||||
| 	if x != nil { | ||||
| 		return x.Uuid | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|  | ||||
| func (x *Request) GetName() string { | ||||
| 	if x != nil { | ||||
| 		return x.Name | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|  | ||||
| type Response struct { | ||||
| 	state         protoimpl.MessageState | ||||
| 	sizeCache     protoimpl.SizeCache | ||||
| 	unknownFields protoimpl.UnknownFields | ||||
|  | ||||
| 	Msg string `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"` | ||||
| } | ||||
|  | ||||
| func (x *Response) Reset() { | ||||
| 	*x = Response{} | ||||
| 	if protoimpl.UnsafeEnabled { | ||||
| 		mi := &file_test_proto_msgTypes[1] | ||||
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||
| 		ms.StoreMessageInfo(mi) | ||||
| 	} | ||||
| } | ||||
|  | ||||
| func (x *Response) String() string { | ||||
| 	return protoimpl.X.MessageStringOf(x) | ||||
| } | ||||
|  | ||||
| func (*Response) ProtoMessage() {} | ||||
|  | ||||
| func (x *Response) ProtoReflect() protoreflect.Message { | ||||
| 	mi := &file_test_proto_msgTypes[1] | ||||
| 	if protoimpl.UnsafeEnabled && x != nil { | ||||
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||
| 		if ms.LoadMessageInfo() == nil { | ||||
| 			ms.StoreMessageInfo(mi) | ||||
| 		} | ||||
| 		return ms | ||||
| 	} | ||||
| 	return mi.MessageOf(x) | ||||
| } | ||||
|  | ||||
| // Deprecated: Use Response.ProtoReflect.Descriptor instead. | ||||
| func (*Response) Descriptor() ([]byte, []int) { | ||||
| 	return file_test_proto_rawDescGZIP(), []int{1} | ||||
| } | ||||
|  | ||||
| func (x *Response) GetMsg() string { | ||||
| 	if x != nil { | ||||
| 		return x.Msg | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|  | ||||
| var File_test_proto protoreflect.FileDescriptor | ||||
|  | ||||
| var file_test_proto_rawDesc = []byte{ | ||||
| 	0x0a, 0x0a, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x68, 0x65, | ||||
| 	0x6c, 0x6c, 0x6f, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x22, 0x31, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x75, | ||||
| 	0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, | ||||
| 	0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, | ||||
| 	0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x1c, 0x0a, 0x08, 0x52, | ||||
| 	0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x01, | ||||
| 	0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x32, 0x3b, 0x0a, 0x04, 0x54, 0x65, 0x73, | ||||
| 	0x74, 0x12, 0x33, 0x0a, 0x04, 0x43, 0x61, 0x6c, 0x6c, 0x12, 0x13, 0x2e, 0x68, 0x65, 0x6c, 0x6c, | ||||
| 	0x6f, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, | ||||
| 	0x2e, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x2e, 0x52, 0x65, 0x73, 0x70, | ||||
| 	0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, | ||||
| } | ||||
|  | ||||
| var ( | ||||
| 	file_test_proto_rawDescOnce sync.Once | ||||
| 	file_test_proto_rawDescData = file_test_proto_rawDesc | ||||
| ) | ||||
|  | ||||
| func file_test_proto_rawDescGZIP() []byte { | ||||
| 	file_test_proto_rawDescOnce.Do(func() { | ||||
| 		file_test_proto_rawDescData = protoimpl.X.CompressGZIP(file_test_proto_rawDescData) | ||||
| 	}) | ||||
| 	return file_test_proto_rawDescData | ||||
| } | ||||
|  | ||||
| var file_test_proto_msgTypes = make([]protoimpl.MessageInfo, 2) | ||||
| var file_test_proto_goTypes = []interface{}{ | ||||
| 	(*Request)(nil),  // 0: helloworld.Request | ||||
| 	(*Response)(nil), // 1: helloworld.Response | ||||
| } | ||||
| var file_test_proto_depIdxs = []int32{ | ||||
| 	0, // 0: helloworld.Test.Call:input_type -> helloworld.Request | ||||
| 	1, // 1: helloworld.Test.Call:output_type -> helloworld.Response | ||||
| 	1, // [1:2] is the sub-list for method output_type | ||||
| 	0, // [0:1] is the sub-list for method input_type | ||||
| 	0, // [0:0] is the sub-list for extension type_name | ||||
| 	0, // [0:0] is the sub-list for extension extendee | ||||
| 	0, // [0:0] is the sub-list for field type_name | ||||
| } | ||||
|  | ||||
| func init() { file_test_proto_init() } | ||||
| func file_test_proto_init() { | ||||
| 	if File_test_proto != nil { | ||||
| 		return | ||||
| 	} | ||||
| 	if !protoimpl.UnsafeEnabled { | ||||
| 		file_test_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { | ||||
| 			switch v := v.(*Request); i { | ||||
| 			case 0: | ||||
| 				return &v.state | ||||
| 			case 1: | ||||
| 				return &v.sizeCache | ||||
| 			case 2: | ||||
| 				return &v.unknownFields | ||||
| 			default: | ||||
| 				return nil | ||||
| 			} | ||||
| 		} | ||||
| 		file_test_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { | ||||
| 			switch v := v.(*Response); i { | ||||
| 			case 0: | ||||
| 				return &v.state | ||||
| 			case 1: | ||||
| 				return &v.sizeCache | ||||
| 			case 2: | ||||
| 				return &v.unknownFields | ||||
| 			default: | ||||
| 				return nil | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| 	type x struct{} | ||||
| 	out := protoimpl.TypeBuilder{ | ||||
| 		File: protoimpl.DescBuilder{ | ||||
| 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(), | ||||
| 			RawDescriptor: file_test_proto_rawDesc, | ||||
| 			NumEnums:      0, | ||||
| 			NumMessages:   2, | ||||
| 			NumExtensions: 0, | ||||
| 			NumServices:   1, | ||||
| 		}, | ||||
| 		GoTypes:           file_test_proto_goTypes, | ||||
| 		DependencyIndexes: file_test_proto_depIdxs, | ||||
| 		MessageInfos:      file_test_proto_msgTypes, | ||||
| 	}.Build() | ||||
| 	File_test_proto = out.File | ||||
| 	file_test_proto_rawDesc = nil | ||||
| 	file_test_proto_goTypes = nil | ||||
| 	file_test_proto_depIdxs = nil | ||||
| } | ||||
							
								
								
									
										92
									
								
								codec/segmentio/proto/test.pb.micro.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										92
									
								
								codec/segmentio/proto/test.pb.micro.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,92 @@ | ||||
| // Code generated by protoc-gen-micro. DO NOT EDIT. | ||||
| // source: test.proto | ||||
|  | ||||
| package helloworld | ||||
|  | ||||
| import ( | ||||
| 	fmt "fmt" | ||||
| 	proto "github.com/golang/protobuf/proto" | ||||
| 	math "math" | ||||
| ) | ||||
|  | ||||
| import ( | ||||
| 	context "context" | ||||
| 	api "github.com/unistack-org/micro/v3/api" | ||||
| 	client "github.com/unistack-org/micro/v3/client" | ||||
| 	server "github.com/unistack-org/micro/v3/server" | ||||
| ) | ||||
|  | ||||
| // Reference imports to suppress errors if they are not otherwise used. | ||||
| var _ = proto.Marshal | ||||
| var _ = fmt.Errorf | ||||
| var _ = math.Inf | ||||
|  | ||||
| // This is a compile-time assertion to ensure that this generated file | ||||
| // is compatible with the proto package it is being compiled against. | ||||
| // A compilation error at this line likely means your copy of the | ||||
| // proto package needs to be updated. | ||||
| const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package | ||||
|  | ||||
| // Reference imports to suppress errors if they are not otherwise used. | ||||
| var _ api.Endpoint | ||||
| var _ context.Context | ||||
| var _ client.Option | ||||
| var _ server.Option | ||||
|  | ||||
| // Api Endpoints for Test service | ||||
|  | ||||
| func NewTestEndpoints() []*api.Endpoint { | ||||
| 	return []*api.Endpoint{} | ||||
| } | ||||
|  | ||||
| // Client API for Test service | ||||
|  | ||||
| type TestService interface { | ||||
| 	Call(ctx context.Context, req *Request, opts ...client.CallOption) (*Response, error) | ||||
| } | ||||
|  | ||||
| type testService struct { | ||||
| 	c    client.Client | ||||
| 	name string | ||||
| } | ||||
|  | ||||
| func NewTestService(name string, c client.Client) TestService { | ||||
| 	return &testService{ | ||||
| 		c:    c, | ||||
| 		name: name, | ||||
| 	} | ||||
| } | ||||
|  | ||||
| func (c *testService) Call(ctx context.Context, req *Request, opts ...client.CallOption) (*Response, error) { | ||||
| 	rsp := &Response{} | ||||
| 	err := c.c.Call(ctx, c.c.NewRequest(c.name, "Test.Call", req), rsp, opts...) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return rsp, nil | ||||
| } | ||||
|  | ||||
| // Server API for Test service | ||||
|  | ||||
| type TestHandler interface { | ||||
| 	Call(context.Context, *Request, *Response) error | ||||
| } | ||||
|  | ||||
| func RegisterTestHandler(s server.Server, hdlr TestHandler, opts ...server.HandlerOption) error { | ||||
| 	type test interface { | ||||
| 		Call(ctx context.Context, req *Request, rsp *Response) error | ||||
| 	} | ||||
| 	type Test struct { | ||||
| 		test | ||||
| 	} | ||||
| 	h := &testHandler{hdlr} | ||||
| 	return s.Handle(s.NewHandler(&Test{h}, opts...)) | ||||
| } | ||||
|  | ||||
| type testHandler struct { | ||||
| 	TestHandler | ||||
| } | ||||
|  | ||||
| func (h *testHandler) Call(ctx context.Context, req *Request, rsp *Response) error { | ||||
| 	return h.TestHandler.Call(ctx, req, rsp) | ||||
| } | ||||
							
								
								
									
										16
									
								
								codec/segmentio/proto/test.proto
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								codec/segmentio/proto/test.proto
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,16 @@ | ||||
| syntax = "proto3"; | ||||
|  | ||||
| package helloworld; | ||||
|  | ||||
| service Test { | ||||
| 	rpc Call(Request) returns (Response) {} | ||||
| } | ||||
|  | ||||
| message Request { | ||||
|   string uuid = 1; | ||||
| 	string name = 2; | ||||
| } | ||||
|  | ||||
| message Response { | ||||
| 	string msg = 1; | ||||
| } | ||||
							
								
								
									
										90
									
								
								codec/segmentio/proto/test_grpc.pb.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										90
									
								
								codec/segmentio/proto/test_grpc.pb.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,90 @@ | ||||
| // Code generated by protoc-gen-go-grpc. DO NOT EDIT. | ||||
|  | ||||
| package helloworld | ||||
|  | ||||
| import ( | ||||
| 	context "context" | ||||
| 	grpc "google.golang.org/grpc" | ||||
| 	codes "google.golang.org/grpc/codes" | ||||
| 	status "google.golang.org/grpc/status" | ||||
| ) | ||||
|  | ||||
| // This is a compile-time assertion to ensure that this generated file | ||||
| // is compatible with the grpc package it is being compiled against. | ||||
| const _ = grpc.SupportPackageIsVersion6 | ||||
|  | ||||
| // TestClient is the client API for Test service. | ||||
| // | ||||
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. | ||||
| type TestClient interface { | ||||
| 	Call(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) | ||||
| } | ||||
|  | ||||
| type testClient struct { | ||||
| 	cc grpc.ClientConnInterface | ||||
| } | ||||
|  | ||||
| func NewTestClient(cc grpc.ClientConnInterface) TestClient { | ||||
| 	return &testClient{cc} | ||||
| } | ||||
|  | ||||
| func (c *testClient) Call(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) { | ||||
| 	out := new(Response) | ||||
| 	err := c.cc.Invoke(ctx, "/helloworld.Test/Call", in, out, opts...) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return out, nil | ||||
| } | ||||
|  | ||||
| // TestServer is the server API for Test service. | ||||
| // All implementations must embed UnimplementedTestServer | ||||
| // for forward compatibility | ||||
| type TestServer interface { | ||||
| 	Call(context.Context, *Request) (*Response, error) | ||||
| 	mustEmbedUnimplementedTestServer() | ||||
| } | ||||
|  | ||||
| // UnimplementedTestServer must be embedded to have forward compatible implementations. | ||||
| type UnimplementedTestServer struct { | ||||
| } | ||||
|  | ||||
| func (*UnimplementedTestServer) Call(context.Context, *Request) (*Response, error) { | ||||
| 	return nil, status.Errorf(codes.Unimplemented, "method Call not implemented") | ||||
| } | ||||
| func (*UnimplementedTestServer) mustEmbedUnimplementedTestServer() {} | ||||
|  | ||||
| func RegisterTestServer(s *grpc.Server, srv TestServer) { | ||||
| 	s.RegisterService(&_Test_serviceDesc, srv) | ||||
| } | ||||
|  | ||||
| func _Test_Call_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { | ||||
| 	in := new(Request) | ||||
| 	if err := dec(in); err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	if interceptor == nil { | ||||
| 		return srv.(TestServer).Call(ctx, in) | ||||
| 	} | ||||
| 	info := &grpc.UnaryServerInfo{ | ||||
| 		Server:     srv, | ||||
| 		FullMethod: "/helloworld.Test/Call", | ||||
| 	} | ||||
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) { | ||||
| 		return srv.(TestServer).Call(ctx, req.(*Request)) | ||||
| 	} | ||||
| 	return interceptor(ctx, in, info, handler) | ||||
| } | ||||
|  | ||||
| var _Test_serviceDesc = grpc.ServiceDesc{ | ||||
| 	ServiceName: "helloworld.Test", | ||||
| 	HandlerType: (*TestServer)(nil), | ||||
| 	Methods: []grpc.MethodDesc{ | ||||
| 		{ | ||||
| 			MethodName: "Call", | ||||
| 			Handler:    _Test_Call_Handler, | ||||
| 		}, | ||||
| 	}, | ||||
| 	Streams:  []grpc.StreamDesc{}, | ||||
| 	Metadata: "test.proto", | ||||
| } | ||||
							
								
								
									
										1
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								go.mod
									
									
									
									
									
								
							| @@ -16,6 +16,7 @@ require ( | ||||
| 	github.com/unistack-org/micro-codec-grpc v0.0.0-20201126055537-b2e5c1ec2168 | ||||
| 	github.com/unistack-org/micro-codec-json v0.0.0-20201125092251-38cf770f2eb0 | ||||
| 	github.com/unistack-org/micro-codec-proto v0.0.0-20201125092414-f627fea89e7e | ||||
| 	github.com/unistack-org/micro-codec-segmentio v0.0.0-20201127144339-03740d564751 | ||||
| 	github.com/unistack-org/micro-metrics-prometheus v0.0.2-0.20201125232532-93104a0ff374 | ||||
| 	github.com/unistack-org/micro-registry-memory v0.0.2-0.20201105195351-bd57ee0e4bd6 | ||||
| 	github.com/unistack-org/micro-router-registry v0.0.2-0.20201105175056-773128885d9e | ||||
|   | ||||
							
								
								
									
										4
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								go.sum
									
									
									
									
									
								
							| @@ -263,6 +263,8 @@ github.com/russross/blackfriday/v2 v2.0.1 h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0 | ||||
| github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= | ||||
| github.com/sacloud/libsacloud v1.26.1/go.mod h1:79ZwATmHLIFZIMd7sxA3LwzVy/B77uj3LDoToVTxDoQ= | ||||
| github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= | ||||
| github.com/segmentio/encoding v0.2.4 h1:TQRXhTlXj4urZe3Z5QVgxs9Ad1i7GYHg9peAtjOPe28= | ||||
| github.com/segmentio/encoding v0.2.4/go.mod h1:MJjRE6bMDocliO2FyFC2Dusp+uYdBfHWh5Bw7QyExto= | ||||
| github.com/shurcooL/sanitized_anchor_name v1.0.0 h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo= | ||||
| github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= | ||||
| github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= | ||||
| @@ -304,6 +306,8 @@ github.com/unistack-org/micro-codec-proto v0.0.0-20201102222202-769c2d6a4b92/go. | ||||
| github.com/unistack-org/micro-codec-proto v0.0.0-20201125092414-f627fea89e7e h1:5ScrWQSdUMfwm5JwC8Y+R94zd5Qceanp2MSJBrj6LeY= | ||||
| github.com/unistack-org/micro-codec-proto v0.0.0-20201125092414-f627fea89e7e/go.mod h1:aiEuyrEkIENBB+EKV8rRauT6v6amihDyVH43fWDkoRo= | ||||
| github.com/unistack-org/micro-codec-protorpc v0.0.0-20201102222610-3a343898c077/go.mod h1:Ct4uAVZaDEyBZj9Q0poDkbzu6zKXUCcSqJkv/MWPpeI= | ||||
| github.com/unistack-org/micro-codec-segmentio v0.0.0-20201127144339-03740d564751 h1:muyPprcObIbcNAtGujGZ/ksDwgAbAUv4iGojPkVlWdM= | ||||
| github.com/unistack-org/micro-codec-segmentio v0.0.0-20201127144339-03740d564751/go.mod h1:oYFH9TO09rNlDyZ20BpJ8qMz3eWaD02bwQ7queML0Q8= | ||||
| github.com/unistack-org/micro-config-cmd v0.0.0-20200828075439-d859b9d7265b/go.mod h1:6pm1cadbwsFcEW1ZbV5Fp0i3goR3TNfROMNSPih3I8k= | ||||
| github.com/unistack-org/micro-config-cmd v0.0.0-20200909210346-ec89783dc46c/go.mod h1:6pm1cadbwsFcEW1ZbV5Fp0i3goR3TNfROMNSPih3I8k= | ||||
| github.com/unistack-org/micro-config-cmd v0.0.0-20200909210755-6e7e85eeab34/go.mod h1:fT1gYn+TtfVZZ5tNx56bZIncJjmlji66g7GKdWua5hE= | ||||
|   | ||||
| @@ -6,6 +6,7 @@ import ( | ||||
|  | ||||
| 	bmemory "github.com/unistack-org/micro-broker-memory" | ||||
| 	gclient "github.com/unistack-org/micro-client-grpc" | ||||
|  | ||||
| 	protocodec "github.com/unistack-org/micro-codec-proto" | ||||
| 	rmemory "github.com/unistack-org/micro-registry-memory" | ||||
| 	regRouter "github.com/unistack-org/micro-router-registry" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user