mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-14 03:19:41 +08:00
- feat: implement global hooks `setup_testcase/teardown_testcase`, called before/after each testcase - feat: implement global hooks `setup_teststep/teardown_teststep`, called before/after each teststep **Changed** - remove default header `HRUN-Request-ID`, implement the same function with global hooks
67 lines
2.6 KiB
Python
67 lines
2.6 KiB
Python
import copy
|
|
|
|
from httprunner import parser, utils
|
|
|
|
|
|
class SessionContext(object):
|
|
""" HttpRunner session, store runtime variables.
|
|
|
|
Examples:
|
|
>>> variables = {"SECRET_KEY": "DebugTalk"}
|
|
>>> context = SessionContext(variables)
|
|
|
|
Equivalent to:
|
|
>>> context = SessionContext()
|
|
>>> context.update_session_variables(variables)
|
|
|
|
"""
|
|
|
|
def __init__(self, variables=None):
|
|
variables_mapping = utils.ensure_mapping_format(variables or {})
|
|
self.session_variables_mapping = parser.parse_variables_mapping(variables_mapping)
|
|
self.test_variables_mapping = {}
|
|
self.init_test_variables()
|
|
|
|
def init_test_variables(self, variables_mapping=None):
|
|
""" init test variables, called when each test(api) starts.
|
|
variables_mapping will be evaluated first.
|
|
|
|
Args:
|
|
variables_mapping (dict)
|
|
{
|
|
"random": "${gen_random_string(5)}",
|
|
"authorization": "${gen_md5($TOKEN, $data, $random)}",
|
|
"data": '{"name": "user", "password": "123456"}',
|
|
"TOKEN": "debugtalk",
|
|
}
|
|
|
|
"""
|
|
variables_mapping = copy.deepcopy(variables_mapping or {})
|
|
variables_mapping = utils.ensure_mapping_format(variables_mapping)
|
|
variables_mapping.update(self.session_variables_mapping)
|
|
parsed_variables_mapping = parser.parse_variables_mapping(variables_mapping)
|
|
|
|
self.test_variables_mapping = {}
|
|
# priority: extracted variable > teststep variable
|
|
self.test_variables_mapping.update(parsed_variables_mapping)
|
|
self.test_variables_mapping.update(self.session_variables_mapping)
|
|
|
|
def update_test_variables(self, variable_name, variable_value):
|
|
""" update test variables, these variables are only valid in the current test.
|
|
"""
|
|
self.test_variables_mapping[variable_name] = variable_value
|
|
|
|
def update_session_variables(self, variables_mapping):
|
|
""" update session with extracted variables mapping.
|
|
these variables are valid in the whole running session.
|
|
"""
|
|
variables_mapping = utils.ensure_mapping_format(variables_mapping)
|
|
self.session_variables_mapping.update(variables_mapping)
|
|
self.test_variables_mapping.update(self.session_variables_mapping)
|
|
|
|
def eval_content(self, content):
|
|
""" evaluate content recursively, take effect on each variable and function in content.
|
|
content may be in any data structure, include dict, list, tuple, number, string, etc.
|
|
"""
|
|
return parser.parse_lazy_data(content, self.test_variables_mapping)
|