Commit 3caea16f authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:获取产品备注列表

parent ed605d67
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取产品备注列表,2256,2256-19,sit,bs
主数据平台:后台运营系统获取产品备注列表接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
from common.db.db import mySql
import requests
import json
module = "cmdc_website"
# 第一步登录后台运营系统获取token
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token)
# 第三步获取产品备注列表
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url19")
request_body = commonFuc().get_business_data(module, "payload19")
"""
场景: 获取产品备注列表
用例名称:获取产品备注列表
输出:{"total":"%s"}
"""
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取产品线备注信息
result = json.loads(result.content)
# print(result)
result = {"total": len(result["data"])}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库中产品线备注信息
sql = "SELECT count(t.id) FROM `cmdc-cms`.cms_line_remark t WHERE companyCode = 00102"
total = mysql_handle.selectSql(host, port, user, pwd, "cmdc-cms", sql)[0][0]
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict19", total)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -49,7 +49,7 @@ result = requests.post(url, json=request_body, headers=headers) ...@@ -49,7 +49,7 @@ 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 = {"total": len(result["data"]["resultList"])} result = {"total": len(result["data"]["resultList"])}
...@@ -62,7 +62,7 @@ mysql_handle = mySql() ...@@ -62,7 +62,7 @@ mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息 # 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db") host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库中子站点数量 # 查询数据库中备注信息
sql = "SELECT count(t.remarksConfigManageId) FROM `cmdc-user`.cmdc_remarks_config_manage t " \ sql = "SELECT count(t.remarksConfigManageId) FROM `cmdc-user`.cmdc_remarks_config_manage t " \
"WHERE deleteSign = 0 and companyId = {}".format(companyId) "WHERE deleteSign = 0 and companyId = {}".format(companyId)
total = mysql_handle.selectSql(host, port, user, pwd, "cmdc-user", sql)[0][0] total = mysql_handle.selectSql(host, port, user, pwd, "cmdc-user", sql)[0][0]
......
...@@ -130,7 +130,11 @@ checkDict16: {"success":true,"code":"200","message":"OK","data":["DS-电商专 ...@@ -130,7 +130,11 @@ checkDict16: {"success":true,"code":"200","message":"OK","data":["DS-电商专
#预期结果 #预期结果
checkDict17: {"total":"%s"} checkDict17: {"total":"%s"}
#测试场景19:获取产品备注列表
"url19": "/cms/public/lineRemark/getLineRemarkList"
"payload19": {}
#预期结果
checkDict19: {"total":"%s"}
......
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