Commit b595e23d authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 68d6e3d2
......@@ -29,44 +29,46 @@ request_body = commonFuc().get_business_data(module, "payload74")
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
red_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取红票明细信息
demandParentCode = result["data"]["list"][red_random]["demandParentCode"]
demandCode = result["data"]["list"][red_random]["demandCode"]
customerName = result["data"]["list"][red_random]["customerName"]
orderStatus = result["data"]["list"][red_random]["orderStatus"]
startTime = result["data"]["list"][red_random]["auditTime"][:10] + " 00:00:00"
endTime = str(datetime.datetime.now().strftime("%Y-%m-%d")) + " 23:59:59"
startTime = ""
endTime = ""
# 判断是否获取到红票明细
if result["data"]["list"]:
# 生成随机数
red_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取红票明细信息
demandParentCode = result["data"]["list"][red_random]["demandParentCode"]
demandCode = result["data"]["list"][red_random]["demandCode"]
customerName = result["data"]["list"][red_random]["customerName"]
orderStatus = result["data"]["list"][red_random]["orderStatus"]
startTime = result["data"]["list"][red_random]["auditTime"][:10] + " 00:00:00"
endTime = str(datetime.datetime.now().strftime("%Y-%m-%d")) + " 23:59:59"
startTime = ""
endTime = ""
# 第三步进行列表查询条件验证
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url75")
request_body = commonFuc().get_business_data(module, "payload75", demandParentCode, demandCode, customerName,
orderStatus,
startTime, endTime)
# print(request_body)
"""
场景: 列表查询条件验证_红票明细列表
用例名称:列表查询条件验证_红票明细列表
输出:{"demandCode":"%s"}
"""
# 第三步进行列表查询条件验证
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url75")
request_body = commonFuc().get_business_data(module, "payload75", demandParentCode, demandCode, customerName,
orderStatus,
startTime, endTime)
# print(request_body)
"""
场景: 列表查询条件验证_红票明细列表
用例名称:列表查询条件验证_红票明细列表
输出:{"demandCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取查询结果中红票明细信息
result = json.loads(result.content)
# print(result)
result = {"demandCode": result["data"]["list"][0]["demandCode"]}
# 将接口响应时间添加至结果中
result["api_time"] = api_time
# 获取查询结果中红票明细信息
result = json.loads(result.content)
# print(result)
result = {"demandCode": result["data"]["list"][0]["demandCode"]}
# 将接口响应时间添加至结果中
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict75", demandCode)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict75", 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