Commit f4a50c08 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:获取站点信息验证_需求单

parent cf2ae73c
...@@ -12,7 +12,7 @@ import json ...@@ -12,7 +12,7 @@ import json
module = "cmdc_demand_mall" module = "cmdc_demand_mall"
# 第二步获取站点信息 # 获取站点信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5")
""" """
......
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取站点信息验证_需求单,2289,2289-12,sit,bs
涉及到接口:多采商城需求单列表站点信息获取接口
"""
from common.common_func import commonFuc
import requests
import json
module = "cmdc_demand_mall"
# 获取站点信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url11")
request_body = commonFuc().get_business_data(module, "payload11")
"""
场景: 获取站点信息验证_需求单
用例名称:获取站点信息验证_需求单
输出:{"companyId":6}
"""
# 发送请求
result = requests.get(url, params=request_body)
result = json.loads(result.content)
# 获取站点信息中公司id
result = {"companyId": result["data"]["companyId"]}
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict11")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -89,6 +89,11 @@ checkDict9: {"success":true,"code":"200","message":"OK"} ...@@ -89,6 +89,11 @@ checkDict9: {"success":true,"code":"200","message":"OK"}
checkDict10: {"demandCode":"%s"} checkDict10: {"demandCode":"%s"}
#测试场景十一:获取站点信息验证_需求单
"url11": "/cms/public/website/queryWebsiteByCompanyIdNoCode"
"payload11": {"companyId":6}
#预期结果
checkDict11: {"companyId":6}
......
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