def test_list_device_config_versions(self): # Setup Expected Response expected_response = {} expected_response = device_manager_pb2.ListDeviceConfigVersionsResponse( **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 = iot_v1.DeviceManagerClient() # Setup Request name = client.device_path('[PROJECT]', '[LOCATION]', '[REGISTRY]', '[DEVICE]') response = client.list_device_config_versions(name) assert expected_response == response assert len(channel.requests) == 1 expected_request = device_manager_pb2.ListDeviceConfigVersionsRequest( name=name) actual_request = channel.requests[0][1] assert expected_request == actual_request
def test_list_device_config_versions(self): # Setup Expected Response expected_response = {} expected_response = device_manager_pb2.ListDeviceConfigVersionsResponse( **expected_response) # Mock the API response channel = ChannelStub(responses=[expected_response]) client = iot_v1.DeviceManagerClient(channel=channel) # Setup Request name = client.device_path('[PROJECT]', '[LOCATION]', '[REGISTRY]', '[DEVICE]') response = client.list_device_config_versions(name) assert expected_response == response assert len(channel.requests) == 1 expected_request = device_manager_pb2.ListDeviceConfigVersionsRequest( name=name) actual_request = channel.requests[0][1] assert expected_request == actual_request