Skip to content
GitLab
Explore
Projects
Groups
Snippets
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
b3fc27f6
Commit
b3fc27f6
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
用例新增:查看发货时间详情
parent
e7c3c9bf
main
master
1 merge request
!5
Master|更新商品模块和订单逆向模块用例
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
air_case/cmdc_product/查看发货时间详情.air/查看发货时间详情.py
+59
-0
air_case/cmdc_product/查看发货时间详情.air/查看发货时间详情.py
air_case/cmdc_product/获取发货时间.air/获取发货时间.py
+43
-0
air_case/cmdc_product/获取发货时间.air/获取发货时间.py
with
102 additions
and
0 deletions
+102
-0
air_case/cmdc_product/查看发货时间详情.air/查看发货时间详情.py
0 → 100644
+
59
-
0
View file @
b3fc27f6
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
import
random
"""
case_tag:cmdc_api,cmdc查看发货时间详情,2293,2293-036,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
,
"url34"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload34"
)
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成随机数
delivery_time_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取发货时间id
delivery_time_id
=
result
[
"data"
][
"list"
][
delivery_time_random
][
"deliveryTimeId"
]
# 获取发货时间详情
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url36"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload36"
,
delivery_time_id
)
"""
场景: 查看发货时间详情
用例名称:查看发货时间详情
输出:{"id":"%s"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取发货时间详情中id
result
=
{
"id"
:
result
[
"data"
][
"deliveryTimeId"
]}
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict36"
,
delivery_time_id
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
air_case/cmdc_product/获取发货时间.air/获取发货时间.py
0 → 100644
+
43
-
0
View file @
b3fc27f6
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc获取发货时间,2293,2293-034,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
,
"url34"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload34"
)
"""
场景: 验证发货时间列表接口连通性
用例名称:获取发货时间
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict34"
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
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
Menu
Explore
Projects
Groups
Snippets