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
f665b36b
Commit
f665b36b
authored
Jan 05, 2024
by
liguangyu06
Browse files
用例新增:商品限购删除功能验证
parent
1e2a2bc1
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_product/n_商品限购删除功能验证.air/n_商品限购删除功能验证.py
0 → 100644
View file @
f665b36b
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc商品限购删除功能验证,2293,2293-048,sit,bs
主数据平台:运营后台管理系统获取商品限购删除接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_product"
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username1"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password1"
)
# 获取登录后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
,
"url41"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload47_1"
)
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取商品限购信息
id
=
result
[
"data"
][
"list"
][
0
][
"id"
]
# 进行商品限购删除操作
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url47"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload47"
,
id
)
"""
场景: 查询条件验证_商品限购列表
用例名称:查询条件验证_商品限购列表
输出:{"success":true,"code":"200","message":"OK","data":True}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
print
(
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict47"
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_product/data
View file @
f665b36b
...
...
@@ -330,7 +330,13 @@ checkDict45: {"productCode":"%s"}
checkDict46: {"success":true,"code":"200","message":"OK"}
#测试场景四十七:商品限购删除功能验证
"url47": "/product/productLimitBuy/del"
"payload47": {"ids":"%s"}
# 查询指定商品限购规则请求报文
"payload47_1": {"pageNum":1,"pageSize":8,"total":1,"productCode":"12364265"}
#预期结果
checkDict47: {"success":true,"code":"200","message":"OK","data":True}
...
...
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