def test_update_device_registry(self): # Setup Expected Response id_ = 'id3355' name = 'name3373707' expected_response = {'id': id_, 'name': name} expected_response = resources_pb2.DeviceRegistry(**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 device_registry = {} update_mask = {} response = client.update_device_registry(device_registry, update_mask) assert expected_response == response assert len(channel.requests) == 1 expected_request = device_manager_pb2.UpdateDeviceRegistryRequest( device_registry=device_registry, update_mask=update_mask) actual_request = channel.requests[0][1] assert expected_request == actual_request
def test_update_device_registry(self): # Setup Expected Response id_ = 'id3355' name = 'name3373707' expected_response = {'id': id_, 'name': name} expected_response = resources_pb2.DeviceRegistry(**expected_response) # Mock the API response channel = ChannelStub(responses=[expected_response]) client = iot_v1.DeviceManagerClient(channel=channel) # Setup Request device_registry = {} update_mask = {} response = client.update_device_registry(device_registry, update_mask) assert expected_response == response assert len(channel.requests) == 1 expected_request = device_manager_pb2.UpdateDeviceRegistryRequest( device_registry=device_registry, update_mask=update_mask) actual_request = channel.requests[0][1] assert expected_request == actual_request