示例#1
0
    def test_create_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
        parent = client.location_path('[PROJECT]', '[LOCATION]')
        device_registry = {}

        response = client.create_device_registry(parent, device_registry)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = device_manager_pb2.CreateDeviceRegistryRequest(
            parent=parent, device_registry=device_registry)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
示例#2
0
    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
示例#3
0
    def test_get_device_registry(self):
        # Setup Expected Response
        id_ = 'id3355'
        name_2 = 'name2-1052831874'
        expected_response = {'id': id_, 'name': name_2}
        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
        name = client.registry_path('[PROJECT]', '[LOCATION]', '[REGISTRY]')

        response = client.get_device_registry(name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = device_manager_pb2.GetDeviceRegistryRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_get_device_registry(self):
        # Setup Expected Response
        id_ = 'id3355'
        name_2 = 'name2-1052831874'
        expected_response = {'id': id_, 'name': name_2}
        expected_response = resources_pb2.DeviceRegistry(**expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        client = iot_v1.DeviceManagerClient(channel=channel)

        # Setup Request
        name = client.registry_path('[PROJECT]', '[LOCATION]', '[REGISTRY]')

        response = client.get_device_registry(name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = device_manager_pb2.GetDeviceRegistryRequest(
            name=name)
        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