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
9efceb76
Commit
9efceb76
authored
Feb 01, 2024
by
liguangyu06
Browse files
用例新增:收件人查询验证_收货地址列表_代客下单
parent
37baeda1
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_order_list/收件人查询验证_收货地址列表_代客下单.air/收件人查询验证_收货地址列表_代客下单.py
0 → 100644
View file @
9efceb76
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc收件人查询验证_收货地址列表_代客下单,2295,2295-37,sit,bs
主数据平台:后台运营系统获取收货地址列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
random
import
json
module
=
"cmdc_order_list"
# 第一步登录后台运营系统获取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
,
"url33"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload33"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成随机数
customer_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取客户信息
user_id
=
result
[
"data"
][
"list"
][
customer_random
][
"userId"
]
company_id
=
"6"
# 第三步获取收货地址列表
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url37"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload37"
,
company_id
,
user_id
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
if
result
[
"data"
][
"addresses"
][
"list"
]:
# 获取收货人姓名
receiver_name
=
result
[
"data"
][
"addresses"
][
"list"
][
0
][
"receiverName"
][:
1
]
# 通过收货人姓名在收货地址列表进行模糊查询
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url38"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload38"
,
company_id
,
user_id
,
receiver_name
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取查询结果中收货地址中收件人姓名
result
=
json
.
loads
(
result
.
content
)
result
=
{
"receiverName"
:
result
[
"data"
][
"addresses"
][
"list"
][
0
][
"receiverName"
][:
1
]}
# 将接口响应时间添加至结果中
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict38"
,
receiver_name
)
"""
场景: 收件人查询验证_收货地址列表_代客下单
用例名称:收件人查询验证_收货地址列表_代客下单
输出:{"receiverName":"%s"}
"""
data/cmdc_order_list/data
View file @
9efceb76
...
...
@@ -270,12 +270,24 @@ checkDict36: {"success":false,"code":"NOUSERID","message":"USERID为空","data":
#预期结果
checkDict37: {"total":"%s"}
#测试场景三十八:收件人查询验证_收货地址列表_代客下单
"url38": "/user/mall/getAddressList"
"payload38": {"companyId":"%s","userId":"%s","pageSize":5,"pageStart":1,"searchKey":1,"searchValue":"%s"}
#预期结果
checkDict38: {"receiverName":"%s"}
#测试场景三十九:手机号查询验证_收货地址列表_代客下单
"url39": "/user/mall/getAddressList"
"payload39": {"companyId":"%s","userId":"%s","pageSize":5,"pageStart":1,"searchKey":2,"searchValue":"%s"}
#预期结果
checkDict39: {"mobile":"%s"}
#测试场景四十:详细地址查询验证_收货地址列表_代客下单
"url40": "/user/mall/getAddressList"
"payload40": {"companyId":"%s","userId":"%s","pageSize":5,"pageStart":1,"searchKey":3,"searchValue":"%s"}
#预期结果
checkDict40: {"address":"%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