Commit 44d93fb7 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

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