예제 #1
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