def test_list_crypto_keys(self): # Setup Expected Response next_page_token = '' total_size = 705419236 crypto_keys_element = {} crypto_keys = [crypto_keys_element] expected_response = { 'next_page_token': next_page_token, 'total_size': total_size, 'crypto_keys': crypto_keys } expected_response = service_pb2.ListCryptoKeysResponse( **expected_response) # Mock the API response channel = ChannelStub(responses=[expected_response]) client = kms_v1.KeyManagementServiceClient(channel=channel) # Setup Request parent = client.key_ring_path('[PROJECT]', '[LOCATION]', '[KEY_RING]') paged_list_response = client.list_crypto_keys(parent) resources = list(paged_list_response) assert len(resources) == 1 assert expected_response.crypto_keys[0] == resources[0] assert len(channel.requests) == 1 expected_request = service_pb2.ListCryptoKeysRequest(parent=parent) actual_request = channel.requests[0][1] assert expected_request == actual_request
def test_list_crypto_keys(self): # Setup Expected Response next_page_token = "" total_size = 705419236 crypto_keys_element = {} crypto_keys = [crypto_keys_element] expected_response = { "next_page_token": next_page_token, "total_size": total_size, "crypto_keys": crypto_keys, } expected_response = service_pb2.ListCryptoKeysResponse( **expected_response) # Mock the API response channel = ChannelStub(responses=[expected_response]) patch = mock.patch("google.api_core.grpc_helpers.create_channel") with patch as create_channel: create_channel.return_value = channel client = kms_v1.KeyManagementServiceClient() # Setup Request parent = client.key_ring_path("[PROJECT]", "[LOCATION]", "[KEY_RING]") paged_list_response = client.list_crypto_keys(parent) resources = list(paged_list_response) assert len(resources) == 1 assert expected_response.crypto_keys[0] == resources[0] assert len(channel.requests) == 1 expected_request = service_pb2.ListCryptoKeysRequest(parent=parent) actual_request = channel.requests[0][1] assert expected_request == actual_request