grpcurl/internal/testing/cmd/testserver
Wes Widner 8f93ec3c09 Change github repo reference 2020-11-23 17:39:33 -05:00
..
README.md fix latest CI breakages by forking code from grpc-go's interop/testing 2020-08-31 14:44:59 -04:00
testserver.go Change github repo reference 2020-11-23 17:39:33 -05:00
unix.go fix latest CI breakages by forking code from grpc-go's interop/testing 2020-08-31 14:44:59 -04:00

README.md

testserver

The testserver program is a simple server that can be used for testing RPC clients such as grpcurl. It implements an RPC interface that is defined in grpcurl's testing package and also exposes the implementation that is defined in that same package. This is the same test interface and implementation that is used in unit tests for grpcurl.

For a possibly more interesting test server, take a look at bankdemo, which is a demo gRPC app that provides a more concrete RPC interface, including full-duplex bidirectional streaming methods, plus an example implementation.