Commit 87f64248 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:获取角色信息

parent 609e9ebb
No related merge requests found
Showing with 66 additions and 2 deletions
+66 -2
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取角色信息,2299,2299-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_area"
# 第一步登录后台运营系统获取token
username = commonFuc().get_business_data(module, "username2")
password = commonFuc().get_business_data(module, "password2")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers", 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)
total = len(result["data"])
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库中角色信息
sql = "SELECT count(t.roleId) FROM `cmdc-user`.cmdc_role t WHERE belong = 2 and deleteSign = 0"
result = {"total": mysql_handle.selectSql(host, port, user, pwd, "cmdc-user", sql)[0][0]}
# print(result)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict19", total)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -155,9 +155,15 @@ checkDict17: {"success":true,"code":"200","message":"OK"}
#预期结果
checkDict18: {"userName":"%s"}
#获取客户信息
"url18": "/user/querySubCustomerPage"
"payload18": {"telephone":"","userName":"","userNo":"","customerCompanyName":"","status":null,"disableSign":null,"pageSize":10,"pageStart":1,"distributionSale":null,"tax":"","platformStatus":"1","jdeStatus":"0"}
#测试场景十九:获取角色信息
"url19": "/user/querySubRoleOptions"
"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