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
f4f958cd
Commit
f4f958cd
authored
Apr 24, 2024
by
liguangyu06
Browse files
用例新增:植入审核时间_上报植入筛选
parent
3641cb15
Changes
3
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_special_version/植入上报日期_上报植入筛选.air/植入上报日期_上报植入筛选.py
View file @
f4f958cd
...
...
@@ -72,15 +72,13 @@ if result["data"]["list"][report_random]["reportDateStr"]:
# 获取上报植入信息
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"batchNumber"
:
result
[
"data"
][
"list"
][
0
][
"batchNumber"
]}
#
result = {"batchNumber": result["data"]["list"][0]["batchNumber"]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict33"
,
batchNumber
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
commonFuc
().
check_text_exist
(
batchNumber
,
result
)
else
:
reportDateStart
=
reportDateEnd
=
""
...
...
@@ -98,12 +96,9 @@ else:
# 获取上报植入信息
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"batchNumber"
:
result
[
"data"
][
"list"
][
0
][
"batchNumber"
]}
#
result = {"batchNumber": result["data"]["list"][0]["batchNumber"]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict33"
,
batchNumber
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_
result
(
check_dict
,
result
)
commonFuc
().
check_
text_exist
(
batchNumber
,
result
)
air_case/cmdc_special_version/植入审核时间_上报植入筛选.air/植入审核时间_上报植入筛选.py
0 → 100644
View file @
f4f958cd
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc植入审核时间_上报植入筛选,00,00-60,sit,be
主数据平台:后台运营系统获取上报植入列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
from
common.db.db
import
mySql
import
datetime
import
random
import
requests
import
json
module
=
"cmdc_special_version"
# 第一步登录后台运营系统获取token
username
=
commonFuc
().
get_business_data
(
module
,
"username_admin2"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password_admin2"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
# 数据库操作
mysql_handle
=
mySql
()
# 获取conf.ini文件中配置的数据库信息
host
,
port
,
user
,
pwd
=
mysql_handle
.
getConf
(
db
=
"cmdc_db_be"
)
# 在数据库中已存在的植入上报数据对应的产品线信息
sql
=
"SELECT t.productLineCode, t.companyCode FROM `cmdc-order`.tc_report t where deleteSign = 0"
productLineCode
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-order"
,
sql
)[
0
][
0
]
companyCode
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-order"
,
sql
)[
0
][
1
]
# 第二步获取上报植入列表
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url33"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload33_1"
,
companyCode
,
productLineCode
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 生成随机数
report_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取上报植入信息
batchNumber
=
result
[
"data"
][
"list"
][
report_random
][
"batchNumber"
]
# 判断植入审核时间是否为空
if
result
[
"data"
][
"list"
][
report_random
][
"reportAuditTimeStr"
]:
reportAuditTimeStart
=
result
[
"data"
][
"list"
][
report_random
][
"reportAuditTimeStr"
][:
10
]
+
" 00:00:00"
reportAuditTimeEnd
=
datetime
.
datetime
.
now
().
strftime
(
"%Y-%m-%d"
)
+
" 23:59:59"
# 第三步进行列表查询条件验证
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url60"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload60"
,
companyCode
,
productLineCode
,
reportAuditTimeStart
,
reportAuditTimeEnd
)
# print(request_body)
"""
场景: 植入审核时间_上报植入筛选
用例名称:植入审核时间_上报植入筛选
输出:{"batchNumber":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取上报植入信息
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"batchNumber"
:
result
[
"data"
][
"list"
][
0
][
"batchNumber"
]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_text_exist
(
batchNumber
,
result
)
else
:
reportAuditTimeStart
=
reportAuditTimeEnd
=
""
# 第三步进行列表查询条件验证
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url60"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload60"
,
companyCode
,
productLineCode
,
reportAuditTimeStart
,
reportAuditTimeEnd
)
# print(request_body)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取上报植入信息
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"batchNumber"
:
result
[
"data"
][
"list"
][
0
][
"batchNumber"
]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_text_exist
(
batchNumber
,
result
)
data/cmdc_special_version/data
View file @
f4f958cd
...
...
@@ -395,7 +395,7 @@ checkDict58: {"success":true,"code":"200","message":"OK","data":{"reportBatchLis
"url59": "/order/public/getReportList"
"payload59": {"customerInfo":"","optionStr":"","reportAuditStatus":null,"status":null,"companyCode":"%s","productLineCode":"%s","reportHospitalCode":"","reportHospitalCodeList":[],"deleteSign":"","numberSource":"","invoiceStatus":null,"reportStatus":null,"reportQueryType":0,"pageNum":1,"pageSize":10,"pageStart":1,"reportDateStart":"%s","reportDateEnd":"%s","reportAuditTimeStart":null,"reportAuditTimeEnd":null,"reportManufacturerTimeStart":null,"reportManufacturerTimeEnd":null}
#预期结果
checkDict59: {"
batchNumber":"
%s"}
checkDict59: {"%s"}
#测试场景60:植入审核时间_上报植入筛选
"url60": "/order/public/getReportList"
...
...
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