Commit 90c7f847 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent d41231b8
......@@ -28,34 +28,36 @@ request_body = commonFuc().get_business_data(module, "payload3")
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
demand_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取三方需求单信息
demandCode = result["data"]["list"][demand_random]["demandCode"]
# 第三步进行列表条件查询
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url25")
request_body = commonFuc().get_business_data(module, "payload25", demandCode)
"""
场景: 获取原始需求单信息_三方需求单
用例名称:获取原始需求单信息_三方需求单
输出:{"demandCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取需求单信息
result = json.loads(result.content)
result = {"demandCode": result["data"]["demandSkuList"]["list"][0]["demandCode"]}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict25", demandCode)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 判断是否获取到需求单信息
if result["data"]["list"]:
# 生成随机数
demand_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取三方需求单信息
demandCode = result["data"]["list"][demand_random]["demandCode"]
# 第三步进行列表条件查询
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url25")
request_body = commonFuc().get_business_data(module, "payload25", demandCode)
"""
场景: 获取原始需求单信息_三方需求单
用例名称:获取原始需求单信息_三方需求单
输出:{"demandCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取需求单信息
result = json.loads(result.content)
result = {"demandCode": result["data"]["demandSkuList"]["list"][0]["demandCode"]}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict25", demandCode)
# 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