-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement unary operations in conformance client (#195)
This also adds the new conformance tests to CI (but only the unary test cases for now).
- Loading branch information
Showing
11 changed files
with
281 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Test runner is overly strict in asserting the contents | ||
# of the message query param, so these tests currently fail. | ||
Idempotency/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This configures the features that this client | ||
# supports and that will be verified by the | ||
# conformance test suite. | ||
features: | ||
versions: | ||
- HTTP_VERSION_1 | ||
- HTTP_VERSION_2 | ||
protocols: | ||
- PROTOCOL_CONNECT | ||
- PROTOCOL_GRPC | ||
- PROTOCOL_GRPC_WEB | ||
codecs: | ||
- CODEC_PROTO | ||
# Lite does not support JSON | ||
compressions: | ||
- COMPRESSION_IDENTITY | ||
- COMPRESSION_GZIP | ||
streamTypes: | ||
# This config file only runs unary RPC test cases, | ||
# so that we can run them all three ways: suspend, | ||
# callback, and blocking. | ||
- STREAM_TYPE_UNARY | ||
supportsTlsClientCerts: true | ||
supportsHalfDuplexBidiOverHttp1: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.