Exemple #1
0
    def test_list_device_states(self):
        # Setup Expected Response
        expected_response = {}
        expected_response = device_manager_pb2.ListDeviceStatesResponse(
            **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_states(name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = device_manager_pb2.ListDeviceStatesRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_list_device_states(self):
        # Setup Expected Response
        expected_response = {}
        expected_response = device_manager_pb2.ListDeviceStatesResponse(
            **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_states(name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = device_manager_pb2.ListDeviceStatesRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request