Skip to content
GitLab
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
1d0747d7
Commit
1d0747d7
authored
Mar 14, 2024
by
liguangyu06
Browse files
用例新增:站点开放白名单导出
parent
4828ecd2
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_area/站点开放白名单导出.air/站点开放白名单导出.py
0 → 100644
View file @
1d0747d7
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc站点开放白名单导出,2299,2299-22,sit,bs
主数据平台:后台运营系统站点开放白名单导出接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
from
common.handle_excel
import
HandleExcel
from
common.db.db
import
mySql
import
requests
import
os
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_file"
,
cmdc_access_token
)
# 第二步进行站点开放白名单导出
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url22"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload22"
)
# print(request_body)
"""
场景: 站点开放白名单导出
用例名称:站点开放白名单导出
输出:{"total":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取文件
BASE_DIR
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))))
file_path
=
BASE_DIR
+
"/data/cmdc_files/白名单列表.xlsx"
# 获取到导出文件存入cmdc_files文件中
with
open
(
file_path
,
'wb'
)
as
f
:
f
.
write
(
result
.
content
)
# 获取导出文件中数量个数
excel
=
HandleExcel
(
file_path
,
"Sheet1"
)
result
=
{
"total"
:
len
(
excel
.
read_data
())}
# 将接口响应时间添加至结果中
result
[
"api_time"
]
=
api_time
# 数据库操作
mysql_handle
=
mySql
()
# 获取conf.ini文件中配置的数据库信息
host
,
port
,
user
,
pwd
=
mysql_handle
.
getConf
(
db
=
"cmdc_db"
)
# 查询数据库中角色信息
sql
=
"SELECT count(t.siteOpenId) FROM `cmdc-user`.cmdc_siteopen t WHERE companyCode = 00102 and source = 2"
total
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-user"
,
sql
)[
0
][
0
]
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict22"
,
total
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_area/data
View file @
1d0747d7
...
@@ -180,7 +180,11 @@ checkDict20: {"companyCode":"00102"}
...
@@ -180,7 +180,11 @@ checkDict20: {"companyCode":"00102"}
checkDict21: {"success":true,"code":"200","message":"OK","data":true,"freshToken":null}
checkDict21: {"success":true,"code":"200","message":"OK","data":true,"freshToken":null}
#测试场景二十二:站点开放白名单导出
"url22": "/user/siteopen/exportSiteWhite"
"payload22": {"fileType":"1"}
#预期结果
checkDict22: {"total":"%s"}
...
...
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