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

用例优化

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