Commit a7eeed42 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 28d89b94
......@@ -28,39 +28,41 @@ request_body = commonFuc().get_business_data(module, "payload7")
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 生成随机数
website_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取站点信息
website_name = result["data"]["list"][website_random]["websiteName"]
order_apportion_principle = result["data"]["list"][website_random]["orderApportionPrinciple"]
company_name = result["data"]["list"][website_random]["companyName"]
company_type = result["data"]["list"][website_random]["companyType"]
# 判断是否获取到站点信息
if result["data"]["list"]:
# 生成随机数
website_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取站点信息
website_name = result["data"]["list"][website_random]["websiteName"]
order_apportion_principle = result["data"]["list"][website_random]["orderApportionPrinciple"]
company_name = result["data"]["list"][website_random]["companyName"]
company_type = result["data"]["list"][website_random]["companyType"]
# 第三步进行条件查询
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url8")
request_body = commonFuc().get_business_data(module, "payload8", website_name, order_apportion_principle, company_name,
company_type)
# 第三步进行条件查询
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url8")
request_body = commonFuc().get_business_data(module, "payload8", website_name, order_apportion_principle, company_name,
company_type)
"""
场景: 验证站点管理列表查询条件可使用性
用例名称:查询条件验证_站点管理
输出:{"websiteName":"%s"}
"""
"""
场景: 验证站点管理列表查询条件可使用性
用例名称:查询条件验证_站点管理
输出:{"websiteName":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取查询结果中websiteName
result = json.loads(result.content)
result = {"websiteName": result["data"]["list"][0]["websiteName"]}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取查询结果中websiteName
result = json.loads(result.content)
result = {"websiteName": result["data"]["list"][0]["websiteName"]}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict8",website_name)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict8",website_name)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment