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
44f3b5c2
Commit
44f3b5c2
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
用例新增:宽限期批量新增导入日志查询
parent
664c4444
master
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
air_case/cmdc_hospital/cd_宽限期批量新增导入日志查询.air/cd_宽限期批量新增导入日志查询.py
+49
-0
...se/cmdc_hospital/cd_宽限期批量新增导入日志查询.air/cd_宽限期批量新增导入日志查询.py
data/cmdc_hospital/data
+4
-0
data/cmdc_hospital/data
with
53 additions
and
0 deletions
+53
-0
air_case/cmdc_hospital/cd_宽限期批量新增导入日志查询.air/cd_宽限期批量新增导入日志查询.py
0 → 100644
+
49
-
0
View file @
44f3b5c2
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc宽限期批量新增导入日志查询,2298,2298-23,sit,bs
主数据平台:后台运营系统宽限期批量新增导入日志查询接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_hospital"
# 第一步登录后台运营系统获取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
,
"url30"
)
"""
场景: 宽限期批量新增导入日志查询
用例名称:宽限期批量新增导入日志查询
输出:{"status":2}
"""
# 发送请求
result
=
requests
.
get
(
url
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取导入记录状态
result
=
json
.
loads
(
result
.
content
)
result
=
{
"status"
:
result
[
"data"
][
"list"
][
0
][
"status"
]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict30"
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
data/cmdc_hospital/data
+
4
-
0
View file @
44f3b5c2
...
...
@@ -228,3 +228,7 @@ checkDict28: {"success":true,"code":"200","message":"OK","data":"success","fresh
#预期结果
checkDict29: {"success":true,"code":"200","message":"OK"}
#测试场景三十:宽限期批量新增导入日志查询
"url30": "/order/public//excelLog/list?sheetName=hospitalGrace&pageStart=1&pageSize=10&total="
#预期结果
checkDict30: {"status": 2}
\ No newline at end of file
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