mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-13 03:49:56 +08:00
1, variable marker: ${var} => $var;
2, function marker: {'func': 'gen_random_string', 'args': [5]} => ${gen_random_string(5).
77 lines
2.5 KiB
Python
77 lines
2.5 KiB
Python
import re
|
|
from ate.exception import ParamsError
|
|
|
|
|
|
def parse_content_with_variables(content, variables_binds):
|
|
""" replace variables with bind value
|
|
"""
|
|
# check if content includes $variable
|
|
matched = re.match(r"^(.*)\$(\w+)(.*)$", content)
|
|
if matched:
|
|
# this is a variable, and will replace with its bind value
|
|
variable_name = matched.group(2)
|
|
value = variables_binds.get(variable_name)
|
|
if value is None:
|
|
raise ParamsError(
|
|
"%s is not defined in bind variables!" % variable_name)
|
|
if matched.group(1) or matched.group(3):
|
|
# e.g. /api/users/$uid
|
|
return content.replace("$%s" % variable_name, value)
|
|
|
|
return value
|
|
|
|
return content
|
|
|
|
def parse_template(testcase_template, variables_binds):
|
|
""" parse testcase_template, replace all variables with bind value.
|
|
variables marker: $variable.
|
|
@param (dict) testcase_template
|
|
{
|
|
"url": "http://127.0.0.1:5000/api/users/$uid",
|
|
"method": "POST",
|
|
"headers": {
|
|
"Content-Type": "application/json",
|
|
"authorization": "$authorization",
|
|
"random": "$random"
|
|
},
|
|
"body": "$data"
|
|
}
|
|
@param (dict) variables binds mapping
|
|
{
|
|
"authorization": "a83de0ff8d2e896dbd8efb81ba14e17d",
|
|
"random": "A2dEx",
|
|
"data": '{"name": "user", "password": "123456"}'
|
|
}
|
|
@return (dict) parsed testcase with bind variable values
|
|
{
|
|
"url": "http://127.0.0.1:5000/api/users/1000",
|
|
"method": "POST",
|
|
"headers": {
|
|
"Content-Type": "application/json",
|
|
"authorization": "a83de0ff8d2e896dbd8efb81ba14e17d",
|
|
"random": "A2dEx"
|
|
},
|
|
"body": '{"name": "user", "password": "123456"}'
|
|
}
|
|
"""
|
|
|
|
def substitute(content):
|
|
""" substitute content recursively, each variable will be replaced with bind value.
|
|
"""
|
|
if isinstance(content, str):
|
|
return parse_content_with_variables(content, variables_binds)
|
|
|
|
if isinstance(content, list):
|
|
return [substitute(item) for item in content]
|
|
|
|
if isinstance(content, dict):
|
|
parsed_content = {}
|
|
for key, value in content.items():
|
|
parsed_content[key] = substitute(value)
|
|
|
|
return parsed_content
|
|
|
|
return content
|
|
|
|
return substitute(testcase_template)
|