Fadelis / grpcmock

A gRPC Java testing tool to easily mock endpoints of gRPC services for IT or Unit testing
http://grpcmock.org
Apache License 2.0
144 stars 13 forks source link

How to stub both gRPC and Rest (GET/POST) endpoint? #3

Closed harshmah closed 3 years ago

harshmah commented 3 years ago

I have a service which is based on gRPC. But that having both types of downstreams:

  1. Web Server - Call them via GET/POST.
  2. gRPC Server - Call them via gRPC.

Can we use gRPCMock to stub both endpoints? If yes, please share an example.

Fadelis commented 3 years ago

Hi, gRPC Mock is only for mocking downstream gRPC services. For http ones I'd suggest to use Wiremock.