Commit e8d91cb4 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 1c7cc6d1
......@@ -29,36 +29,38 @@ request_body = commonFuc().get_business_data(module, "payload6")
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
order_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取订单欠货信息
demand_code = result["data"]["list"][order_random]["demandCode"]
product_code = result["data"]["list"][order_random]["productList"][0]["productCode"]
# 判断是否获取到欠货信息
if result["data"]["list"]:
# 生成随机数
order_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取订单欠货信息
demand_code = result["data"]["list"][order_random]["demandCode"]
product_code = result["data"]["list"][order_random]["productList"][0]["productCode"]
# 第三步获取商品行信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url8")
request_body = commonFuc().get_business_data(module, "payload8", demand_code)
# 第三步获取商品行信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url8")
request_body = commonFuc().get_business_data(module, "payload8", demand_code)
"""
场景: 获取欠货商品行信息
用例名称:获取欠货商品行信息
输出:{"productCode":"%s"}
"""
"""
场景: 获取欠货商品行信息
用例名称:获取欠货商品行信息
输出:{"productCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
# print(result)
# print(result)
# 获取商品行信息中商品信息
result = {"productCode": result["data"][0]["productCode"]}
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict8", product_code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 获取商品行信息中商品信息
result = {"productCode": result["data"][0]["productCode"]}
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict8", product_code)
# 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