Commit a7eeed42 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 28d89b94
...@@ -28,39 +28,41 @@ request_body = commonFuc().get_business_data(module, "payload7") ...@@ -28,39 +28,41 @@ request_body = commonFuc().get_business_data(module, "payload7")
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)
# print(result) # print(result)
# 生成随机数 # 判断是否获取到站点信息
website_random = random.randint(0, len(result["data"]["list"]) - 1) if result["data"]["list"]:
# 获取站点信息 # 生成随机数
website_name = result["data"]["list"][website_random]["websiteName"] website_random = random.randint(0, len(result["data"]["list"]) - 1)
order_apportion_principle = result["data"]["list"][website_random]["orderApportionPrinciple"] # 获取站点信息
company_name = result["data"]["list"][website_random]["companyName"] website_name = result["data"]["list"][website_random]["websiteName"]
company_type = result["data"]["list"][website_random]["companyType"] order_apportion_principle = result["data"]["list"][website_random]["orderApportionPrinciple"]
company_name = result["data"]["list"][website_random]["companyName"]
company_type = result["data"]["list"][website_random]["companyType"]
# 第三步进行条件查询 # 第三步进行条件查询
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url8") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url8")
request_body = commonFuc().get_business_data(module, "payload8", website_name, order_apportion_principle, company_name, request_body = commonFuc().get_business_data(module, "payload8", website_name, order_apportion_principle, company_name,
company_type) company_type)
""" """
场景: 验证站点管理列表查询条件可使用性 场景: 验证站点管理列表查询条件可使用性
用例名称:查询条件验证_站点管理 用例名称:查询条件验证_站点管理
输出:{"websiteName":"%s"} 输出:{"websiteName":"%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())
# 获取查询结果中websiteName # 获取查询结果中websiteName
result = json.loads(result.content) result = json.loads(result.content)
result = {"websiteName": result["data"]["list"][0]["websiteName"]} result = {"websiteName": result["data"]["list"][0]["websiteName"]}
# 将接口响应时间添加至result # 将接口响应时间添加至result
result["api_time"] = api_time result["api_time"] = api_time
# 获取预期结果 # 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict8",website_name) check_dict = commonFuc().get_business_data(module, "checkDict8",website_name)
# 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