Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support protoc-gen-validate #34

Open
bjaglin opened this issue Nov 14, 2019 · 0 comments
Open

Support protoc-gen-validate #34

bjaglin opened this issue Nov 14, 2019 · 0 comments

Comments

@bjaglin
Copy link

bjaglin commented Nov 14, 2019

PGV makes it possible to define validation rules at the field level. In a RPC context, it's a great way to document the constraints and fail early if a rule is violated, without implementing anything.

In our gRPC services implementation, we chose to automatically return a INVALID_ARGUMENT gRPC error code on the server-side if anything in the request payload violates a rule, with a human-readable representation of the violation as a string.

In the context of a mock, PGV annotations could be enforced in a similar way to mimic this behavior:

  1. at stubbing time, by returning a 400 HTTP response if anything in the request or response payload violates a rule
  2. at serving time, by returning a INVALID_ARGUMENT gRPC error code if anything in the request payload violates a rule

By making (2) configurable (error code, message?), clients of gripmock can then be sure that validation rules will match how the actual implementation will behave.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant