def test_list_crawled_urls(self): # Setup Expected Response next_page_token = "" crawled_urls_element = {} crawled_urls = [crawled_urls_element] expected_response = { "next_page_token": next_page_token, "crawled_urls": crawled_urls, } expected_response = web_security_scanner_pb2.ListCrawledUrlsResponse( **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 = websecurityscanner_v1alpha.WebSecurityScannerClient() # Setup Request parent = client.scan_run_path("[PROJECT]", "[SCAN_CONFIG]", "[SCAN_RUN]") paged_list_response = client.list_crawled_urls(parent) resources = list(paged_list_response) assert len(resources) == 1 assert expected_response.crawled_urls[0] == resources[0] assert len(channel.requests) == 1 expected_request = web_security_scanner_pb2.ListCrawledUrlsRequest( parent=parent) actual_request = channel.requests[0][1] assert expected_request == actual_request
def test_list_crawled_urls(self): # Setup Expected Response next_page_token = '' crawled_urls_element = {} crawled_urls = [crawled_urls_element] expected_response = { 'next_page_token': next_page_token, 'crawled_urls': crawled_urls } expected_response = web_security_scanner_pb2.ListCrawledUrlsResponse( **expected_response) # Mock the API response channel = ChannelStub(responses=[expected_response]) client = websecurityscanner_v1alpha.WebSecurityScannerClient( channel=channel) # Setup Request parent = client.scan_run_path('[PROJECT]', '[SCAN_CONFIG]', '[SCAN_RUN]') paged_list_response = client.list_crawled_urls(parent) resources = list(paged_list_response) assert len(resources) == 1 assert expected_response.crawled_urls[0] == resources[0] assert len(channel.requests) == 1 expected_request = web_security_scanner_pb2.ListCrawledUrlsRequest( parent=parent) actual_request = channel.requests[0][1] assert expected_request == actual_request