Skip to content

Commit

Permalink
test: add more tests (zeromicro#1119)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevwan authored Oct 8, 2021
1 parent 4c6234f commit 9b114e3
Showing 1 changed file with 34 additions and 5 deletions.
39 changes: 34 additions & 5 deletions zrpc/internal/rpcserver_test.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,45 @@
package internal

import (
"sync"
"testing"

"github.com/stretchr/testify/assert"
"github.com/tal-tech/go-zero/core/stat"
"github.com/tal-tech/go-zero/zrpc/internal/mock"
"google.golang.org/grpc"
)

func TestWithMetrics(t *testing.T) {
func TestRpcServer(t *testing.T) {
metrics := stat.NewMetrics("foo")
opt := WithMetrics(metrics)
var options rpcServerOptions
opt(&options)
assert.Equal(t, metrics, options.metrics)
server := NewRpcServer("localhost:54321", WithMetrics(metrics))
server.SetName("mock")
var wg sync.WaitGroup
var grpcServer *grpc.Server
var lock sync.Mutex
wg.Add(1)
go func() {
err := server.Start(func(server *grpc.Server) {
lock.Lock()
mock.RegisterDepositServiceServer(server, new(mock.DepositServer))
grpcServer = server
lock.Unlock()
wg.Done()
})
assert.Nil(t, err)
}()

wg.Wait()
lock.Lock()
grpcServer.GracefulStop()
lock.Unlock()
}

func TestRpcServer_WithBadAddress(t *testing.T) {
server := NewRpcServer("localhost:111111")
server.SetName("mock")
err := server.Start(func(server *grpc.Server) {
mock.RegisterDepositServiceServer(server, new(mock.DepositServer))
})
assert.NotNil(t, err)
}

0 comments on commit 9b114e3

Please sign in to comment.