Commit 90c7f847 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent d41231b8
...@@ -28,34 +28,36 @@ request_body = commonFuc().get_business_data(module, "payload3") ...@@ -28,34 +28,36 @@ request_body = commonFuc().get_business_data(module, "payload3")
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)
# 生成随机数 # 判断是否获取到需求单信息
demand_random = random.randint(0, len(result["data"]["list"]) - 1) if result["data"]["list"]:
# 获取三方需求单信息 # 生成随机数
demandCode = result["data"]["list"][demand_random]["demandCode"] demand_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取三方需求单信息
# 第三步进行列表条件查询 demandCode = result["data"]["list"][demand_random]["demandCode"]
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url25")
request_body = commonFuc().get_business_data(module, "payload25", demandCode) # 第三步进行列表条件查询
""" url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url25")
request_body = commonFuc().get_business_data(module, "payload25", demandCode)
场景: 获取原始需求单信息_三方需求单 """
用例名称:获取原始需求单信息_三方需求单
输出:{"demandCode":"%s"} 场景: 获取原始需求单信息_三方需求单
""" 用例名称:获取原始需求单信息_三方需求单
输出:{"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)
result = {"demandCode": result["data"]["demandSkuList"]["list"][0]["demandCode"]} # 获取需求单信息
# 将接口响应时间添加至result result = json.loads(result.content)
result["api_time"] = api_time result = {"demandCode": result["data"]["demandSkuList"]["list"][0]["demandCode"]}
# 将接口响应时间添加至result
# 获取预期结果 result["api_time"] = api_time
check_dict = commonFuc().get_business_data(module, "checkDict25", demandCode)
# print(check_dict) # 获取预期结果
# 断言实际结果中是否包含预期结果的内容 check_dict = commonFuc().get_business_data(module, "checkDict25", demandCode)
commonFuc().check_result(check_dict, result) # 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