$ go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
$ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
- Update your PATH so that the protoc compiler can find the plugins:
$ export PATH="$PATH:~/go/bin"
protoc --go_out=../service --go_opt=paths=source_relative --go-grpc_out=../service --go-grpc_opt=paths=source_relative UserRequest.proto
- set up a gRPC server
- set up a gRPC client under a folder, client
- configurate authinterceptor grpc.UnaryServerInterceptor
- build up an interceptor and check user name and password through Auth method in the GRPCServer
- submit token with user name is "niuniu" and password is "1234" and get an error info
go install github.com/golang/mock/mockgen@latest
mockgen -destination=mocks/mock_service.go -package=mocks DemogRPC/client/service UserServiceClient
go test -v
add a branch test