Commit 4e650a9f authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 1bcc2d84
......@@ -29,45 +29,47 @@ request_body = commonFuc().get_business_data(module, "payload22")
result = requests.get(url, params=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
code_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取退货单信息
jde_refund_code = result["data"]["list"][code_random]["jdeRefundCode"]
customer_name = result["data"]["list"][code_random]["customerName"]
manufacturer = result["data"]["list"][code_random]["manufacturer"]
material_code = result["data"]["list"][code_random]["materialCode"]
demand_parent_code = result["data"]["list"][code_random]["demandParentCode"]
start_time = result["data"]["list"][code_random]["submitTime"]
end_time = datetime.datetime.now().strftime("%Y-%m-%d")
# 判断是否获取到退货单信息
if result["data"]["list"]:
# 生成随机数
code_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取退货单信息
jde_refund_code = result["data"]["list"][code_random]["jdeRefundCode"]
customer_name = result["data"]["list"][code_random]["customerName"]
manufacturer = result["data"]["list"][code_random]["manufacturer"]
material_code = result["data"]["list"][code_random]["materialCode"]
demand_parent_code = result["data"]["list"][code_random]["demandParentCode"]
start_time = result["data"]["list"][code_random]["submitTime"]
end_time = datetime.datetime.now().strftime("%Y-%m-%d")
# 第三步获取退货单详情
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url23")
request_body = commonFuc().get_business_data(module, "payload23", jde_refund_code,
customer_name, manufacturer, material_code, demand_parent_code, start_time,
end_time)
# 第三步获取退货单详情
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url23")
request_body = commonFuc().get_business_data(module, "payload23", jde_refund_code,
customer_name, manufacturer, material_code, demand_parent_code, start_time,
end_time)
"""
场景: 查询条件验证_退货单管理
用例名称:查询条件验证_退货单管理
输出:{"jdeRefundCode":"%s"}
"""
"""
场景: 查询条件验证_退货单管理
用例名称:查询条件验证_退货单管理
输出:{"jdeRefundCode":"%s"}
"""
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取详情页中的jdeRefundCode
result = json.loads(result.content)
result = {"jdeRefundCode": result["data"]["list"][0]["jdeRefundCode"]}
# 获取详情页中的jdeRefundCode
result = json.loads(result.content)
result = {"jdeRefundCode": result["data"]["list"][0]["jdeRefundCode"]}
# 将接口响应时间添加到result
result["api_time"] = api_time
# print(result)
# 将接口响应时间添加到result
result["api_time"] = api_time
# print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict23", jde_refund_code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict23", jde_refund_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