Ejemplo n.º 1
0
    def test_list_notification_channel_descriptors(self):
        # Setup Expected Response
        next_page_token = ""
        channel_descriptors_element = {}
        channel_descriptors = [channel_descriptors_element]
        expected_response = {
            "next_page_token": next_page_token,
            "channel_descriptors": channel_descriptors,
        }
        expected_response = notification_service_pb2.ListNotificationChannelDescriptorsResponse(
            **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 = monitoring_v3.NotificationChannelServiceClient()

        # Setup Request
        name = client.project_path("[PROJECT]")

        paged_list_response = client.list_notification_channel_descriptors(
            name)
        resources = list(paged_list_response)
        assert len(resources) == 1

        assert expected_response.channel_descriptors[0] == resources[0]

        assert len(channel.requests) == 1
        expected_request = notification_service_pb2.ListNotificationChannelDescriptorsRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_list_notification_channel_descriptors(self):
        # Setup Expected Response
        next_page_token = ''
        channel_descriptors_element = {}
        channel_descriptors = [channel_descriptors_element]
        expected_response = {
            'next_page_token': next_page_token,
            'channel_descriptors': channel_descriptors
        }
        expected_response = notification_service_pb2.ListNotificationChannelDescriptorsResponse(
            **expected_response)

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

        # Setup Request
        name = client.project_path('[PROJECT]')

        paged_list_response = client.list_notification_channel_descriptors(
            name)
        resources = list(paged_list_response)
        assert len(resources) == 1

        assert expected_response.channel_descriptors[0] == resources[0]

        assert len(channel.requests) == 1
        expected_request = notification_service_pb2.ListNotificationChannelDescriptorsRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request