| # Copyright 2016 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| import google.auth |
| import google.auth.credentials |
| import google.auth.jwt |
| import google.auth.transport.grpc |
| from google.cloud import pubsub_v1 |
| from google.cloud.pubsub_v1.gapic import publisher_client |
| from google.cloud.pubsub_v1.gapic.transports import publisher_grpc_transport |
| |
| |
| def test_grpc_request_with_regular_credentials(http_request): |
| credentials, project_id = google.auth.default() |
| credentials = google.auth.credentials.with_scopes_if_required( |
| credentials, ["https://www.googleapis.com/auth/pubsub"] |
| ) |
| |
| transport = publisher_grpc_transport.PublisherGrpcTransport( |
| address=publisher_client.PublisherClient.SERVICE_ADDRESS, |
| credentials=credentials, |
| ) |
| |
| # Create a pub/sub client. |
| client = pubsub_v1.PublisherClient(transport=transport) |
| |
| # list the topics and drain the iterator to test that an authorized API |
| # call works. |
| list_topics_iter = client.list_topics(project="projects/{}".format(project_id)) |
| list(list_topics_iter) |
| |
| |
| def test_grpc_request_with_jwt_credentials(): |
| credentials, project_id = google.auth.default() |
| audience = "https://pubsub.googleapis.com/google.pubsub.v1.Publisher" |
| credentials = google.auth.jwt.Credentials.from_signing_credentials( |
| credentials, audience=audience |
| ) |
| |
| transport = publisher_grpc_transport.PublisherGrpcTransport( |
| address=publisher_client.PublisherClient.SERVICE_ADDRESS, |
| credentials=credentials, |
| ) |
| |
| # Create a pub/sub client. |
| client = pubsub_v1.PublisherClient(transport=transport) |
| |
| # list the topics and drain the iterator to test that an authorized API |
| # call works. |
| list_topics_iter = client.list_topics(project="projects/{}".format(project_id)) |
| list(list_topics_iter) |
| |
| |
| def test_grpc_request_with_on_demand_jwt_credentials(): |
| credentials, project_id = google.auth.default() |
| credentials = google.auth.jwt.OnDemandCredentials.from_signing_credentials( |
| credentials |
| ) |
| |
| transport = publisher_grpc_transport.PublisherGrpcTransport( |
| address=publisher_client.PublisherClient.SERVICE_ADDRESS, |
| credentials=credentials, |
| ) |
| |
| # Create a pub/sub client. |
| client = pubsub_v1.PublisherClient(transport=transport) |
| |
| # list the topics and drain the iterator to test that an authorized API |
| # call works. |
| list_topics_iter = client.list_topics(project="projects/{}".format(project_id)) |
| list(list_topics_iter) |