def test_search_command_using_contains_operator_without_filter(requests_mock): """ Given: - "Contains" operator, value to search. When - Searching an object that contains the specified value. Then - returns Demisto outputs. """ from DeHashed import Client, dehashed_search_command test_data = load_test_data("test_data/search.json") expected_result = { "DeHashed.Search(val.Id==obj.Id)": test_data["expected_results"][ "full_results" ], "DeHashed.LastQuery(true)": { "ResultsFrom": 1, "ResultsTo": 2, "DisplayedResults": 2, "TotalResults": 2, "PageNumber": 1 }, } url_params = {"query": "testgamil.co"} encoded = urllib.parse.urlencode(url_params) requests_mock.get(f"{DEHASHED_URL}search?{encoded}", json=test_data["api_response"]) client = Client(base_url=f"{DEHASHED_URL}", email='', api_key='') client._headers = {} markdown, context, raw = dehashed_search_command( client, test_data["contains_op_single"] ) assert expected_result == context
def test_search_command_using_regex_operator_with_filter_and_change_result_range( requests_mock, ): """ Given: - "Regex" operator, value to search, "vin" as a filter and a range of results amount to return. When - Searching an object that contains the specified value. Then - returns Demisto outputs. """ from DeHashed import Client, dehashed_search_command test_data = load_test_data("test_data/search.json") expected_result = { "DeHashed.Search(val.Id==obj.Id)": test_data["expected_results_range"]["full_results"], "DeHashed.LastQuery(true)": { "ResultsFrom": 1, "ResultsTo": 1, "DisplayedResults": 1, "TotalResults": 2, "PageNumber": 1 }, } url_params = {"query": "vin:/joh?n(ath[oa]n)/ /joh?n11(ath[oa]n)/"} encoded = urllib.parse.urlencode(url_params) requests_mock.get(f"{DEHASHED_URL}search?{encoded}", json=test_data["api_response"]) client = Client(base_url=f"{DEHASHED_URL}") client._headers = {} markdown, context, raw = dehashed_search_command( client, test_data["regex_op_multi_range"]) assert expected_result == context
def test_module_command(requests_mock): """ Given: - Performs a basic GET request to check if the API is reachable and authentication is successful. When - Setting a new instance of the integration. Then - returns "ok". """ from DeHashed import Client, test_module test_data = load_test_data("test_data/search.json") url_params = {"query": 'vin:"test" "test1"'} encoded = urllib.parse.urlencode(url_params) requests_mock.get(f"{DEHASHED_URL}search?{encoded}", json=test_data["api_response"]) client = Client(base_url=f"{DEHASHED_URL}", email='', api_key='') client._headers = {} res = test_module(client) assert res == "ok"