コード例 #1
0
    def test_list_sources(self):
        # Setup Expected Response
        next_page_token = ""
        sources_element = {}
        sources = [sources_element]
        expected_response = {
            "next_page_token": next_page_token,
            "sources": sources
        }
        expected_response = securitycenter_service_pb2.ListSourcesResponse(
            **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 = securitycenter_v1beta1.SecurityCenterClient()

        # Setup Request
        parent = client.organization_path("[ORGANIZATION]")

        paged_list_response = client.list_sources(parent)
        resources = list(paged_list_response)
        assert len(resources) == 1

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

        assert len(channel.requests) == 1
        expected_request = securitycenter_service_pb2.ListSourcesRequest(
            parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
コード例 #2
0
    def test_list_sources(self):
        # Setup Expected Response
        next_page_token = ''
        sources_element = {}
        sources = [sources_element]
        expected_response = {
            'next_page_token': next_page_token,
            'sources': sources
        }
        expected_response = securitycenter_service_pb2.ListSourcesResponse(
            **expected_response)

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

        # Setup Request
        parent = client.organization_path('[ORGANIZATION]')

        paged_list_response = client.list_sources(parent)
        resources = list(paged_list_response)
        assert len(resources) == 1

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

        assert len(channel.requests) == 1
        expected_request = securitycenter_service_pb2.ListSourcesRequest(
            parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request