Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@ozonru/mountebank-grpc

Package Overview
Dependencies
5
Maintainers
1
Versions
12
Issues
File Explorer

Advanced tools

@ozonru/mountebank-grpc

gRPC client for mountebank

    0.2.5latest
    npm

Version published
Maintainers
1
Weekly downloads
780
decreased by-23.3%

Weekly downloads

Readme

Source

Mountebank-gRPC

Custom gRPC protocol implementation for Mountebank. This works for unary/streaming/bidi requests as well as with Mountebank proxy functionality.

This makes use of nodejs and the google-protobuf and @grpc/proto-loader modules to generate gRPC descriptors from .proto files. This does not support reflection.

Setup

Install project:

npm install @ozonru/mountebank-grpc

Create protocols.json file for gRPC:

{ "grpc": { "createCommand": "mb-grpc" } }

Start Mountebank with protocols file:

mb start --protofile protocols.json

Example

To load a gRPC imposter (via POST http://<MB_SERVER>:<MB_PORT>/imposters):

{ "protocol": "grpc", "port": 4545, "loglevel": "debug", "recordRequests": true, "_note_services": "need the name of the package, service and protofile location for this to load", "services": { "example.ExampleService": { "file": "example.proto" } }, "options": { "protobufjs": { "_note": "any options to protobufjs", "includeDirs": ["/path/to/include/protos", "/etc/mountebank/mountebank-grpc/src/protos"] } }, "stubs": [{ "predicates": [ { "matches": { "path": "UnaryUnary" }, "caseSensitive": false } ], "responses": [ { "is": { "value": { "_note": "gRPC mock unary call response", "_note_streaming": "this is a unary/unary call, streaming requests need the value to be an array", "id": 100, "data": "mock response" }, "metadata": { "_note": "gRPC mock initial/trailing metadata response", "initial": { "metadata-initial-key": "metadata-initial-value" }, "trailing": { "metadata-trailing-key": "metadata-trailing-value" } }, "error": { "_note": "gRPC mock error", "status": "OUT_OF_RANGE", "message": "invalid message" } } } ] }] }

To load a gRPC proxy imposter:

{ "protocol": "grpc", "port": 4546, "loglevel": "debug", "recordRequests": true, "services": { "example.ExampleService": { "file": "/etc/mountebank/mountebank-grpc/src/protos/example.proto" } }, "stubs": [ { "responses": [ { "proxy": { "to": "localhost:4545", "mode": "proxyAlways", "predicateGenerators": [{ "matches": {"path": true} }] } } ] } ] }

FAQs

Last updated on 11 Nov 2021

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc