import os import random import requests from ate import utils from ate import exception from .base import ApiServerUnittest class TestUtils(ApiServerUnittest): def test_load_testcases_bad_filepath(self): testcase_file_path = os.path.join(os.getcwd(), 'test/data/demo') with self.assertRaises(exception.ParamsError): utils.load_testcases(testcase_file_path) def test_load_json_testcases(self): testcase_file_path = os.path.join( os.getcwd(), 'test/data/simple_demo_no_auth.json') testcases = utils.load_testcases(testcase_file_path) self.assertEqual(len(testcases), 2) self.assertIn('name', testcases[0]) self.assertIn('request', testcases[0]) self.assertIn('response', testcases[0]) self.assertIn('url', testcases[0]['request']) self.assertIn('method', testcases[0]['request']) def test_load_yaml_testcases(self): testcase_file_path = os.path.join( os.getcwd(), 'test/data/simple_demo_no_auth.yml') testcases = utils.load_testcases(testcase_file_path) self.assertEqual(len(testcases), 2) self.assertIn('name', testcases[0]) self.assertIn('request', testcases[0]) self.assertIn('response', testcases[0]) self.assertIn('url', testcases[0]['request']) self.assertIn('method', testcases[0]['request']) def test_parse_response_object_json(self): url = "http://127.0.0.1:5000/api/users" resp_obj = requests.get(url) parse_result = utils.parse_response_object(resp_obj) self.assertIn('status_code', parse_result) self.assertIn('headers', parse_result) self.assertIn('body', parse_result) self.assertIn('Content-Type', parse_result['headers']) self.assertIn('Content-Length', parse_result['headers']) self.assertIn('success', parse_result['body']) def test_parse_response_object_text(self): url = "http://127.0.0.1:5000/" resp_obj = requests.get(url) parse_result = utils.parse_response_object(resp_obj) self.assertIn('status_code', parse_result) self.assertIn('headers', parse_result) self.assertIn('body', parse_result) self.assertIn('Content-Type', parse_result['headers']) self.assertIn('Content-Length', parse_result['headers']) self.assertTrue(str, type(parse_result['body'])) def test_diff_response_status_code_equal(self): status_code = random.randint(200, 511) resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'status_code': status_code, } ) expected_resp_json = { 'status_code': status_code } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertFalse(diff_content) def test_diff_response_status_code_not_equal(self): status_code = random.randint(200, 511) resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'status_code': status_code, } ) expected_resp_json = { 'status_code': 512 } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertIn('value', diff_content['status_code']) self.assertIn('expected', diff_content['status_code']) self.assertEqual(diff_content['status_code']['value'], status_code) self.assertEqual(diff_content['status_code']['expected'], 512) def test_diff_response_headers_equal(self): resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'headers': { 'abc': 123, 'def': 456 } } ) expected_resp_json = { 'headers': { 'abc': 123, 'def': '456' } } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertFalse(diff_content) def test_diff_response_headers_not_equal(self): resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'headers': { 'a': 123, 'b': '456', 'c': '789' } } ) expected_resp_json = { 'headers': { 'a': '123', 'b': '457', 'd': 890 } } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertEqual( diff_content['headers'], { 'b': {'expected': '457', 'value': '456'}, 'd': {'expected': 890, 'value': None} } ) def test_diff_response_body_equal(self): resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'body': { 'success': True, 'count': 10 } } ) # expected response body is not specified expected_resp_json = {} diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertFalse(diff_content) # response body is the same as expected response body expected_resp_json = { 'body': { 'success': True, 'count': '10' } } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertFalse(diff_content) def test_diff_response_body_not_equal_type_unmatch(self): resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'body': { 'success': True, 'count': 10 } } ) # response body content type not match expected_resp_json = { 'body': "ok" } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertEqual( diff_content['body'], { 'value': {'success': True, 'count': 10}, 'expected': 'ok' } ) def test_diff_response_body_not_equal_string_unmatch(self): resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'body': "success" } ) # response body content type matched to be string, while value unmatch expected_resp_json = { 'body': "ok" } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertEqual( diff_content['body'], { 'value': 'success', 'expected': 'ok' } ) def test_diff_response_body_not_equal_json_unmatch(self): resp_obj = requests.post( url="http://127.0.0.1:5000/customize-response", json={ 'body': { 'success': False } } ) # response body is the same as expected response body expected_resp_json = { 'body': { 'success': True, 'count': 10 } } diff_content = utils.diff_response(resp_obj, expected_resp_json) self.assertEqual( diff_content['body'], { 'success': { 'value': False, 'expected': True }, 'count': { 'value': None, 'expected': 10 } } )