示例#1
0
    def test_list_group_stats(self):
        # Setup Expected Response
        next_page_token = ""
        error_group_stats_element = {}
        error_group_stats = [error_group_stats_element]
        expected_response = {
            "next_page_token": next_page_token,
            "error_group_stats": error_group_stats,
        }
        expected_response = error_stats_service_pb2.ListGroupStatsResponse(
            **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 = errorreporting_v1beta1.ErrorStatsServiceClient()

        # Setup Request
        project_name = client.project_path("[PROJECT]")
        time_range = {}

        paged_list_response = client.list_group_stats(project_name, time_range)
        resources = list(paged_list_response)
        assert len(resources) == 1

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

        assert len(channel.requests) == 1
        expected_request = error_stats_service_pb2.ListGroupStatsRequest(
            project_name=project_name, time_range=time_range)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
示例#2
0
    def test_list_group_stats(self):
        # Setup Expected Response
        next_page_token = ''
        error_group_stats_element = {}
        error_group_stats = [error_group_stats_element]
        expected_response = {
            'next_page_token': next_page_token,
            'error_group_stats': error_group_stats
        }
        expected_response = error_stats_service_pb2.ListGroupStatsResponse(
            **expected_response)

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

        # Setup Request
        project_name = client.project_path('[PROJECT]')
        time_range = {}

        paged_list_response = client.list_group_stats(project_name, time_range)
        resources = list(paged_list_response)
        assert len(resources) == 1

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

        assert len(channel.requests) == 1
        expected_request = error_stats_service_pb2.ListGroupStatsRequest(
            project_name=project_name, time_range=time_range)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
示例#3
0
    def test_list_events(self):
        # Setup Expected Response
        next_page_token = ''
        error_events_element = {}
        error_events = [error_events_element]
        expected_response = {
            'next_page_token': next_page_token,
            'error_events': error_events
        }
        expected_response = error_stats_service_pb2.ListEventsResponse(
            **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 = errorreporting_v1beta1.ErrorStatsServiceClient()

        # Setup Request
        project_name = client.project_path('[PROJECT]')
        group_id = 'groupId506361563'

        paged_list_response = client.list_events(project_name, group_id)
        resources = list(paged_list_response)
        assert len(resources) == 1

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

        assert len(channel.requests) == 1
        expected_request = error_stats_service_pb2.ListEventsRequest(
            project_name=project_name, group_id=group_id)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
示例#4
0
    def test_delete_events_exception(self):
        # Mock the API response
        channel = ChannelStub(responses=[CustomException()])
        client = errorreporting_v1beta1.ErrorStatsServiceClient(
            channel=channel)

        # Setup request
        project_name = client.project_path('[PROJECT]')

        with pytest.raises(CustomException):
            client.delete_events(project_name)
示例#5
0
    def test_list_group_stats_exception(self):
        channel = ChannelStub(responses=[CustomException()])
        client = errorreporting_v1beta1.ErrorStatsServiceClient(
            channel=channel)

        # Setup request
        project_name = client.project_path('[PROJECT]')
        time_range = {}

        paged_list_response = client.list_group_stats(project_name, time_range)
        with pytest.raises(CustomException):
            list(paged_list_response)
示例#6
0
    def test_list_events_exception(self):
        channel = ChannelStub(responses=[CustomException()])
        client = errorreporting_v1beta1.ErrorStatsServiceClient(
            channel=channel)

        # Setup request
        project_name = client.project_path('[PROJECT]')
        group_id = 'groupId506361563'

        paged_list_response = client.list_events(project_name, group_id)
        with pytest.raises(CustomException):
            list(paged_list_response)
示例#7
0
    def test_delete_events_exception(self):
        # Mock the API response
        channel = ChannelStub(responses=[CustomException()])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = errorreporting_v1beta1.ErrorStatsServiceClient()

        # Setup request
        project_name = client.project_path("[PROJECT]")

        with pytest.raises(CustomException):
            client.delete_events(project_name)
示例#8
0
    def test_list_group_stats_exception(self):
        channel = ChannelStub(responses=[CustomException()])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = errorreporting_v1beta1.ErrorStatsServiceClient()

        # Setup request
        project_name = client.project_path("[PROJECT]")
        time_range = {}

        paged_list_response = client.list_group_stats(project_name, time_range)
        with pytest.raises(CustomException):
            list(paged_list_response)
示例#9
0
    def test_list_events_exception(self):
        channel = ChannelStub(responses=[CustomException()])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = errorreporting_v1beta1.ErrorStatsServiceClient()

        # Setup request
        project_name = client.project_path('[PROJECT]')
        group_id = 'groupId506361563'

        paged_list_response = client.list_events(project_name, group_id)
        with pytest.raises(CustomException):
            list(paged_list_response)
示例#10
0
    def test_delete_events(self):
        # Setup Expected Response
        expected_response = {}
        expected_response = error_stats_service_pb2.DeleteEventsResponse(
            **expected_response)

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

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

        response = client.delete_events(project_name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = error_stats_service_pb2.DeleteEventsRequest(
            project_name=project_name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
示例#11
0
    def test_delete_events(self):
        # Setup Expected Response
        expected_response = {}
        expected_response = error_stats_service_pb2.DeleteEventsResponse(
            **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 = errorreporting_v1beta1.ErrorStatsServiceClient()

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

        response = client.delete_events(project_name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = error_stats_service_pb2.DeleteEventsRequest(
            project_name=project_name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request