Skip to content
Snippets Groups Projects
Commit c7d140d6 authored by xujianhai666's avatar xujianhai666
Browse files

stop for client test

parent 1fb4d91b
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,7 @@ func TestGrpcProtocol_Export(t *testing.T) {
func TestGrpcProtocol_Refer(t *testing.T) {
go internal.InitGrpcServer()
defer internal.ShutdownGrpcServer()
time.Sleep(time.Second)
proto := GetProtocol()
......
......@@ -27,6 +27,10 @@ import (
"google.golang.org/grpc"
)
var (
s *grpc.Server
)
// server is used to implement helloworld.GreeterServer.
type server struct {
UnimplementedGreeterServer
......@@ -45,9 +49,16 @@ func InitGrpcServer() {
if err != nil {
log.Fatalf("failed to listen: %v", err)
}
s := grpc.NewServer()
s = grpc.NewServer()
RegisterGreeterServer(s, &server{})
if err := s.Serve(lis); err != nil {
log.Fatalf("failed to serve: %v", err)
}
}
func ShutdownGrpcServer() {
if s == nil {
return
}
s.GracefulStop()
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment