Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
test
autotest-airtest-web-cmdc
Commits
87f64248
Commit
87f64248
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
用例新增:获取角色信息
parent
609e9ebb
master
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
air_case/cmdc_area/获取角色信息.air/获取角色信息.py
+58
-0
air_case/cmdc_area/获取角色信息.air/获取角色信息.py
data/cmdc_area/data
+8
-2
data/cmdc_area/data
with
66 additions
and
2 deletions
+66
-2
air_case/cmdc_area/获取角色信息.air/获取角色信息.py
0 → 100644
+
58
-
0
View file @
87f64248
# -*- 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
)
This diff is collapsed.
Click to expand it.
data/cmdc_area/data
+
8
-
2
View file @
87f64248
...
...
@@ -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"}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets