Commit b595e23d authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

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