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
788c9773
Commit
788c9773
authored
Jan 23, 2024
by
liguangyu06
Browse files
用例新增:获取所属站点列表_采购计划
parent
b06d61b5
Changes
3
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_trade/库存信息修改功能验证.air/库存信息修改功能验证.py
View file @
788c9773
...
...
@@ -60,7 +60,7 @@ mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host
,
port
,
user
,
pwd
=
mysql_handle
.
getConf
(
db
=
"cmdc_db_be"
)
# 查询数据库中
站点对应的站点资料变更记录
数量
# 查询数据库中
库存信息对应的库存
数量
sql
=
"SELECT t.inventoryCostAmount FROM `cmdc-cms`.cms_statistic_invreport t WHERE statisticInvReportId = {}"
.
format
(
statistic_inv_report_id
)
amount
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-cms"
,
sql
)[
0
][
0
]
...
...
air_case/cmdc_trade/获取所属站点列表_采购计划.air/获取所属站点列表_采购计划.py
0 → 100644
View file @
788c9773
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc获取所属站点列表_采购计划,2294,2294-45,sit,be
主数据平台:多采商城获取所属站点列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.多采商城登录.多采商城登录
import
CmdcMaiiLogin
from
common.db.db
import
mySql
import
requests
import
json
module
=
"cmdc_trade"
# 第一步获取登录多采商城所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username_be"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password_be"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcMaiiLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers1"
,
cmdc_access_token
)
# 第二步获取所属站点列表
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url42"
)
# request_body = commonFuc().get_business_data(module, "payload42")
# print(request_body)
"""
场景: 获取所属站点列表_采购计划
用例名称:获取所属站点列表_采购计划
输出:{"total":"%s"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取站点数量
result
=
json
.
loads
(
result
.
content
)
result
=
{
"total"
:
len
(
result
[
"data"
][
"procurements"
])}
# 数据库操作
mysql_handle
=
mySql
()
# 获取conf.ini文件中配置的数据库信息
host
,
port
,
user
,
pwd
=
mysql_handle
.
getConf
(
db
=
"cmdc_db_be"
)
# 查询数据库中站点数量
sql
=
"SELECT count(distinct t.companyName) FROM `cmdc-order`.tc_procurement t"
total
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-cms"
,
sql
)[
0
][
0
]
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict42"
,
total
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_trade/data
View file @
788c9773
...
...
@@ -277,7 +277,10 @@ checkDict40: {"inventoryCostAmount":"%s"}
"payload41": {"hospInfo":"","source":"","statisticYear":"%s","statisticMonth":"","invoiceCode":"","pageStart":1,"pageSize":10,"type":"10"}
checkDict41: {"statisticYear":"%s"}
#测试场景四十二:获取所属站点列表_采购计划
"url42": "/order/public/procurement/customerWebsiteList"
"payload42": {}
checkDict42: {"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