diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/interop-test-descriptions.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/interop-test-descriptions.md b/doc/interop-test-descriptions.md index ddeee66d67..8649213bc6 100644 --- a/doc/interop-test-descriptions.md +++ b/doc/interop-test-descriptions.md @@ -513,7 +513,9 @@ token (created by the project's key file) Test caller should set flag `--service_account_key_file` with the path to json key file downloaded from -https://console.developers.google.com. +https://console.developers.google.com. Alternately, if using a +usable auth implementation, she may specify the file location in the environment +variable GOOGLE_APPLICATION_CREDENTIALS. Server features: * [UnaryCall][] @@ -540,7 +542,7 @@ Client asserts: * call was successful * received SimpleResponse.username is not empty and is in the json key file used by the auth library. The client can optionally check the username matches the -email address in the key file. +email address in the key file or equals the value of `--default_service_account` flag. * response payload body is 314159 bytes in size * clients are free to assert that the response payload body contents are zero and comparing the entire response message against a golden response @@ -598,7 +600,7 @@ json key file or GCE default service account email. Similar to the other auth tests, this test is only for cloud-to-prod path. -This test verifies unary calls succeed in sending messages using a JWT +This test verifies unary calls succeed in sending messages using a JWT or a service account credentials set on the RPC. The test @@ -606,6 +608,10 @@ The test downloaded from https://console.developers.google.com. Alternately, if using a usable auth implementation, it may specify the file location in the environment variable GOOGLE_APPLICATION_CREDENTIALS +- optionally uses the flag `--oauth_scope` for the oauth scope if implementator +wishes to use service account credential instead of JWT credential. For testing +against grpc-test.sandbox.google.com, oauth scope +"https://www.googleapis.com/auth/xapi.zoo" should be used. Server features: * [UnaryCall][] |