Skip to content

niuniu268/grpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gRPC and Protobuf

Protobuf

    $ 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"

protobuf

protoc --go_out=../service --go_opt=paths=source_relative --go-grpc_out=../service --go-grpc_opt=paths=source_relative UserRequest.proto

gRPC

  • what is gRPC gRPC

gRPC

  • set up a gRPC server
  • set up a gRPC client under a folder, client

gRPC

Token

  • 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

gRPC

  • submit token with username is "admin" and password is "admin" which is correct gRPC

Test

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages