grpcurl/internal/testing/cmd/testserver
dependabot[bot] dd2f60135c
Bump github.com/jhump/protoreflect from 1.13.0 to 1.14.0 (#343)
* Bump github.com/jhump/protoreflect from 1.13.0 to 1.14.0

Bumps [github.com/jhump/protoreflect](https://github.com/jhump/protoreflect) from 1.13.0 to 1.14.0.
- [Release notes](https://github.com/jhump/protoreflect/releases)
- [Commits](https://github.com/jhump/protoreflect/compare/v1.13.0...v1.14.0)

---
updated-dependencies:
- dependency-name: github.com/jhump/protoreflect
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix ci

* what can we even build on?

* stop testing old things

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Scott Blum <dragonsinth@gmail.com>
2022-11-01 10:26:55 -04: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 use latest version of protoreflect (#212) 2021-02-22 17:32:40 -05:00
unix.go Bump github.com/jhump/protoreflect from 1.13.0 to 1.14.0 (#343) 2022-11-01 10:26:55 -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.