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
a6b133d4
Commit
a6b133d4
authored
Oct 17, 2023
by
liguangyu06
Browse files
新增优惠券相关用例
parent
7e8bd3a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_coupon/优惠券_导入式_用户发放验证.air/优惠券_导入式_用户发放验证.py
0 → 100644
View file @
a6b133d4
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc导入式优惠券用户发放验证,2262,2262-18,sit,bs
涉及接口:多采商城登录、myCoupon等接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.多采商城登录.多采商城登录
import
CmdcMaiiLogin
import
requests
import
json
module
=
"cmdc_coupon"
# 第一步登录多采商城获取cmdc_access_token
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username3"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password3"
)
# 获取登录后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
,
"url12"
)
"""
场景: 导入式优惠券用户发放验证
用例名称:导入式优惠券用户发放验证
输出:{"couponId": 10033}
"""
# 发送请求
result
=
requests
.
get
(
url
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"couponId"
:
result
[
"data"
][
0
][
"couponId"
]}
# print(result)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict11"
)
print
(
check_dict
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
\ No newline at end of file
data/cmdc_coupon/data
View file @
a6b133d4
...
...
@@ -116,6 +116,14 @@ checkDict10: {"couponId": "%s"}
"payload11": {"productId":"%s","companyCode":"%s","productCode":"%s"}
#导入式优惠券用户发放验证
#我的优惠券列表
"url12": "/order/mall/myCoupon?status=101"
#活动客户信息-多采商城
"username3": "BJ0500"
"password3": "Tss12345"
#预期结果
checkDict11: {"couponId": 10033}
...
...
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