Commit abb044d6 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 9574eba3
......@@ -27,27 +27,30 @@ request_body = commonFuc().get_business_data(module, "payload50")
# 发送请求
result = requests.post(url1, json=request_body, headers=headers)
result = json.loads(result.content)
# 获取需求单信息
demand_parent_id = result["data"]["list"][0]["demandParentId"]
demand_id = result["data"]["list"][0]["demandId"]
# 获取需求单进行客户确认操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5")
request_body = commonFuc().get_business_data(module, "payload5", demand_parent_id, demand_id)
"""
场景:需求单列表进行客户确认操作
用例名称:需求单客户确认操作
输出:{"success":true,"code":"200","message":"ok","data":null,"freshToken":null}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = result.elapsed.total_seconds()
result = json.loads(result.content)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict5")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 判断是否获取到待确认需求单信息
if result["data"]["list"]:
# 获取需求单信息
demand_parent_id = result["data"]["list"][0]["demandParentId"]
demand_id = result["data"]["list"][0]["demandId"]
# 获取需求单进行客户确认操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5")
request_body = commonFuc().get_business_data(module, "payload5", demand_parent_id, demand_id)
"""
场景:需求单列表进行客户确认操作
用例名称:需求单客户确认操作
输出:{"success":true,"code":"200","message":"ok","data":null,"freshToken":null}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = result.elapsed.total_seconds()
result = json.loads(result.content)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict5")
# 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