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
199ac144
Commit
199ac144
authored
Nov 17, 2023
by
liguangyu06
Browse files
新增客户返利编辑接口用例
parent
7fcf835c
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_rebate/客户发放返利编辑功能验证.air/客户发放返利编辑功能验证.py
0 → 100644
View file @
199ac144
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc客户发放返利编辑功能验证,2271,2271-31,sit,bs
主数据平台:后台运营系统客户发放返利新增接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
random
import
json
module
=
"cmdc_rebate"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
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
,
"url5"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload5"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取客户发放返利信息
customer_code
=
result
[
"data"
][
"list"
][
0
][
"customerCode"
]
rebate_id
=
result
[
"data"
][
"list"
][
0
][
"rebateId"
]
amount
=
random
.
randint
(
1
,
10000
)
# 第三步进行返利编辑
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url30"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload6"
,
rebate_id
,
amount
,
customer_code
)
"""
场景: 客户发放返利编辑功能验证
用例名称:客户发放返利编辑功能验证
输出:{"success":true,"code":"200"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
print
(
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict30"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_rebate/data
View file @
199ac144
...
@@ -236,7 +236,8 @@ checkDict29: {"success":true,"code":"200","message":"OK"}
...
@@ -236,7 +236,8 @@ checkDict29: {"success":true,"code":"200","message":"OK"}
checkDict30: {"success":true,"code":"200"}
checkDict30: {"success":true,"code":"200"}
#测试场景三十二:客户发放返利编辑功能验证
同上
...
...
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