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
a84136c2
Commit
a84136c2
authored
Apr 08, 2024
by
liguangyu06
Browse files
用例新增:列表查询条件验证_我的返利
parent
e8ed7e76
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_33st/列表查询条件验证_我的返利.air/列表查询条件验证_我的返利.py
0 → 100644
View file @
a84136c2
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc列表查询条件验证_我的返利,33,33-64,sit,be
主数据平台:多采商城获取我的返利列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.多采商城登录.多采商城登录
import
CmdcMaiiLogin
import
requests
import
random
import
json
module
=
"cmdc_33st"
# 第一步登录后台运营系统获取token
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
,
"url63"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload63"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 生成随机数
rebate_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取返利信息
startTime
=
result
[
"data"
][
"list"
][
rebate_random
][
"createtime"
][:
7
]
# 第三步进行列表条件查询
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url64"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload64"
,
startTime
,
startTime
)
# print(request_body)
"""
场景: 列表查询条件验证_我的返利
用例名称:列表查询条件验证_我的返利
输出:{"startTime":"%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
=
{
"startTime"
:
result
[
"data"
][
"list"
][
0
][
"createtime"
][:
7
]}
print
(
result
)
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict64"
,
startTime
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_33st/data
View file @
a84136c2
...
...
@@ -444,7 +444,11 @@ checkDict62: {"success":false,"code":"5203","message":"验证码失效"}
#预期结果
checkDict63: {"total":"%s"}
#测试场景64:列表查询条件验证_我的返利
"url64": "/order/public/getRebateLedger"
"payload64": {"transactionType":1,"terminalSign":0,"customercode":"","pageNum":1,"pageSize":10,"startTime":"%s","endTime":"%s","userId":7}
#预期结果
checkDict64: {"startTime":"%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