Commit Graph
100 Commits
Author SHA1 Message Date
httprunner 541037be80 Convert README from Chinese to English. 2017-07-23 11:55:23 +08:00
httprunner 0674d6ab33 update demo testset: change position of variable binds 2017-07-23 11:29:48 +08:00
httprunner 16307e2ebe refactor mock server:
1, remove authentication switcher;
2, change authentication method: from verify request data's md5 to get token at the beginning.
2017-07-22 15:15:05 +08:00
httprunner 5e59951e73 bugfix: testset_shared_variables_mapping should be OrderedDict 2017-07-21 17:04:27 +08:00
httprunner 68a00bcc0d change context variable name 2017-07-21 09:26:33 +08:00
httprunner 4849a25ea2 refactor variable context:
1, variable context has two level, testset and testcase;
2, testset level variables can be used in whole test suite, while testcase level variables can only be used in testcase;
3, when variable binds with functions, the funtions will be called and the result will be set to the variable.
2017-07-20 22:43:18 +08:00
httprunner da04c8793e bugfix: variable name and function name could have _ 2017-07-20 12:24:44 +08:00
httprunner 95649800e1 rename test folder to tests 2017-07-20 11:18:09 +08:00
httprunner 7f88efd866 add FAQ for installing 2017-07-20 11:08:59 +08:00
httprunner f30ea4ae83 remove testcases folder 2017-07-20 10:49:58 +08:00
httprunner 43bb240da9 make custom module importable anywhere 2017-07-20 10:32:58 +08:00
httprunner 031727c613 change method to specify testset path 2017-07-19 23:29:29 +08:00
httprunner 2652362185 add command argument: show version 2017-07-19 21:24:37 +08:00
httprunner 15c337f201 : 2017-07-19 19:18:02 +08:00
httprunner aaeffeb14f add setup 2017-07-19 19:10:11 +08:00
httprunner e3f4249f53 change with PyUnitReport 2017-07-19 19:06:02 +08:00
httprunner 4d1c78354f split ate/main.py to ate/cli.py and ate/task.py 2017-07-19 15:49:15 +08:00
httprunner d5bd14c4bc update README 2017-07-18 12:24:51 +08:00
httprunner e0c00ca326 add report_name argument to specify report name, if not specified, use current time as default 2017-07-17 18:36:23 +08:00
httprunner fa4b542763 change HtmlTestRunner to PyUnitReport 2017-07-14 18:22:03 +08:00
httprunner a99d1aeb37 set testcase filename as output folder name 2017-07-14 17:34:05 +08:00
httprunner 1faff11de4 Merge branch 'master' of https://github.com/debugtalk/ApiTestEngine 2017-07-14 15:42:40 +08:00
httprunner 7109911ad9 bugfix: make compatible with None field in testcase 2017-07-14 15:41:44 +08:00
httprunner 318f5b4130 add custom functions: gen_urlencode_str, get_timestamp 2017-07-14 15:16:47 +08:00
httprunner 7f5bb322fb Merge pull request #6 from debugtalk/test-report
generate html test report with HtmlTestRunner
2017-07-14 12:49:46 +08:00
httprunner a06c61a883 generate html test report with HtmlTestRunner 2017-07-14 12:44:44 +08:00
httprunner 37d08ac2f9 update README 2017-07-11 17:24:10 +08:00
httprunner 3c95c7dc16 update README 2017-07-10 12:26:10 +08:00
httprunner 952d682dbb optimize Runner initialization 2017-07-07 14:49:17 +08:00
httprunner fc6e4c8eef add match method: startswith 2017-07-05 15:14:10 +08:00
httprunner af09573119 bugfix: update testset request config with testcase request config recursively 2017-07-04 18:29:24 +08:00
httprunner 3e8647e5fd deep_update_dict: update origin dict with override dict recursively 2017-07-04 18:28:08 +08:00
httprunner 99e5430206 bugfix: initialize context before each test 2017-07-04 17:37:47 +08:00
httprunner 8707b9c110 bugfix: correct kwargs key name 2017-07-04 17:05:17 +08:00
httprunner 17bf07f012 change variable marker and function marker:
1, variable marker: ${var} => $var;
2, function marker: {'func': 'gen_random_string', 'args': [5]} => ${gen_random_string(5).
2017-07-04 16:45:18 +08:00
httprunner d941f3a3d5 parse functions: add support for variable argument 2017-07-04 15:17:45 +08:00
httprunner f80ebdc511 add helpers to parse variable and functions 2017-07-04 14:45:03 +08:00
httprunner afff81ab6d fix testcase name 2017-07-03 23:50:01 +08:00
httprunner b294107bcb specify logging level from CLI 2017-07-03 16:40:59 +08:00
httprunner 4bb6d3f526 set base_url in testset config.request 2017-07-03 16:33:44 +08:00
httprunner efb3890973 change class name, TestRunner -> Runner 2017-07-03 16:03:37 +08:00
httprunner e57e5d547c change method name 2017-07-03 16:02:16 +08:00
httprunner 3c60bbfac3 HttpSession can be called with full url or with only path 2017-07-03 12:48:18 +08:00
httprunner 7fd0f715ca move HttpNtlmAuth from runner to client 2017-07-03 12:13:56 +08:00
httprunner 9586915322 create HttpSession as wrapper of requests.Session, in order to log more information of request and response 2017-07-03 12:07:40 +08:00
httprunner 562a028129 add test for get_eval_value 2017-07-01 22:31:49 +08:00
httprunner 7ce4603944 add test for get_parsed_request 2017-07-01 22:08:00 +08:00
httprunner d9ca96aba6 add test for import_module_functions 2017-07-01 21:54:14 +08:00
httprunner 5dc5ca950d refactor context:
1, testset and testcase are in different context level;
2, testset context will be initialized when a file is loaded, and testcase level context initializes when each testcase starts;
3, testcase context should inherit from testset context configs, and the testcase context has high priority.
2017-07-01 21:44:04 +08:00
httprunner 1dbd86efeb add HttpNtlmAuth 2017-06-30 19:56:19 +08:00
httprunner ae151c3b09 match_expected comparator: add len_gt, len_lt, len_ge, len_le, etc. 2017-06-30 17:04:20 +08:00
httprunner 038a5d8aef bugfix: length equal 2017-06-30 16:57:56 +08:00
httprunner 434e82f95e add support for import module custom functions 2017-06-30 13:24:00 +08:00
httprunner 80a775e97e api_server: return JSON format if 403 occurred 2017-06-30 12:01:17 +08:00
httprunner eff16d7232 we can set public filed in testset.config, and each testcase can inherit from it 2017-06-29 19:20:57 +08:00
httprunner 87ef0b3cd6 change validators from dict to list, as there may be several tests on one filed 2017-06-29 18:15:28 +08:00
httprunner d21f041437 match_expected: add comparator str_len/string_length 2017-06-29 17:32:49 +08:00
httprunner 387e5beeab bugfix: match_expected should raise ParamsError when comparator is not supported 2017-06-29 17:27:23 +08:00
httprunner bfa2227d10 do not need to config extract_binds if only want to validate results 2017-06-29 17:19:06 +08:00
httprunner 1bca625f42 validate response: check validators and variables_mapping 2017-06-29 16:36:59 +08:00
httprunner 5da07a1652 add comparators 2017-06-29 16:13:20 +08:00
httprunner a9c4af3a82 change method of checking python version 2017-06-29 15:39:14 +08:00
httprunner 67a5de3575 refactor: add extract_binds and validators 2017-06-29 15:27:26 +08:00
httprunner b139459195 extract_response when initialize ResponseObject 2017-06-28 23:35:56 +08:00
httprunner 895553e158 change method name 2017-06-28 23:25:08 +08:00
httprunner f5705e37f8 create ResponseObject, each test result will be associated with a ResponseObject 2017-06-28 23:08:17 +08:00
httprunner 638733d9b6 add entrance 2017-06-28 22:20:19 +08:00
httprunner a2bf2f6ee1 apiserver: add interface /api/token 2017-06-28 22:19:01 +08:00
httprunner 4f87c14f53 can only use parameter names (sep, maxsplit) in Python 3.x, not supported in Python2.x 2017-06-28 21:47:10 +08:00
httprunner 6438fe653a bind_extractors: Bind named extractors to value within the context. 2017-06-28 21:38:43 +08:00
httprunner fc9218c70c extract_response: extract content from requests.Response, and bind extracted value to context.extractors 2017-06-28 21:35:18 +08:00
httprunner 246bf5e4e1 query_json: Do an xpath-like query with json_content. 2017-06-28 21:25:28 +08:00
httprunner e538a86669 move response relevant code to ate/response.py 2017-06-28 15:29:40 +08:00
httprunner 2391f54d2c update doc string 2017-06-28 11:43:23 +08:00
httprunner 884462a767 add unittest: test_parse_content_with_variables 2017-06-28 00:02:44 +08:00
httprunner 93a9872a6c make variables marker unified to be 2017-06-27 23:56:59 +08:00
httprunner b0e11e6b9b start entrance 2017-06-27 19:29:44 +08:00
httprunner dc1ea46036 load_testcases_by_path: make compatible with none exist path 2017-06-27 19:17:48 +08:00
httprunner db9f427088 change import mode 2017-06-27 18:46:14 +08:00
httprunner 17d6fea218 load_testcases_by_path: ignore file path that is not JSON or YAML 2017-06-27 18:30:09 +08:00
httprunner 9da315620f update function doc strings 2017-06-27 16:14:31 +08:00
httprunner fde4901724 run_test: add doc string 2017-06-27 14:16:26 +08:00
httprunner de218878d7 run_testsets: optimize testsets structure 2017-06-27 12:11:40 +08:00
httprunner 0cdd1d9c1e load_testcases_by_path: testset has a config dict and a testcases list 2017-06-27 11:57:26 +08:00
httprunner e8845ba3ad update coverage 2017-06-27 11:18:52 +08:00
httprunner e9dfb03026 ignore .coverage 2017-06-26 22:12:50 +08:00
httprunner 99a6051c24 update coverage 2017-06-26 22:06:15 +08:00
httprunner f1a2ec1397 coverage: replace codecov with coveralls 2017-06-26 21:47:57 +08:00
httprunner a7155ce22a add codecov 2017-06-26 21:16:26 +08:00
httprunner e7ca4f26fd load_testcases_by_path: return testcase sets list, each testset is corresponding to a file 2017-06-26 20:57:22 +08:00
httprunner f2bc07ada5 load_testcases_by_path 2017-06-26 19:46:23 +08:00
httprunner c31a24d233 remove unused import 2017-06-26 16:22:39 +08:00
httprunner 378147a83b TestRunner: testsets can be configured in public config 2017-06-26 15:47:45 +08:00
httprunner 5ac8491c2d change testcase data structure, in order to distinguish config and test 2017-06-26 15:27:27 +08:00
httprunner 139036dbad TestcaseParser: add update_variables_binds 2017-06-26 14:43:06 +08:00
httprunner 20d173ce9a TestRunner: change method name 2017-06-26 11:58:07 +08:00
httprunner 967f2bbc3f TestRunner: run testcase writen in separate template 2017-06-26 11:51:08 +08:00
httprunner 2fe161f82d TestcaseParser: variable binds of testcase parser instance cat be updated. 2017-06-26 10:55:17 +08:00
httprunner 7396bcd853 Context: Manages binding of variables 2017-06-26 00:57:58 +08:00
httprunner ae9750b4a0 TestcaseParser: parse testcase_template, replace all variables with bind value. 2017-06-25 23:33:49 +08:00