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
e059c4c2
Commit
e059c4c2
authored
Nov 13, 2023
by
liguangyu06
Browse files
补充套包正价相关用例
parent
74c9f0d8
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_demand_create_pc/多采商城需求单创建.air/多采商城需求单创建.py
View file @
e059c4c2
...
...
@@ -2,7 +2,7 @@
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc需求单创建(快速下单),2252
234234
,2252-36,sit,bs
case_tag:cmdc_api,cmdc需求单创建(快速下单),2252,2252-36,sit,bs
主数据平台:多采商城需求单创建接口
"""
...
...
air_case/cmdc_special_fresenius_group/商品详情页_套包正价显示验证.air/商品详情页_套包正价显示验证.py
0 → 100644
View file @
e059c4c2
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc验证商品详情页面套包正价的展示,2252,2252-76,sit,bs
涉及到接口:套包正价列表查询、查询特殊套包详情接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
from
air_case.cmdc_login.多采商城登录.多采商城登录
import
CmdcMaiiLogin
import
requests
import
json
module
=
"cmdc_special_fresenius_group"
# 第一步登录后台运营平台获取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
,
"url2"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload_10056821"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取商品信息
product_code
=
result
[
"data"
][
"list"
][
0
][
"products"
][
0
][
"productCode"
]
company_code
=
result
[
"data"
][
"list"
][
0
][
"companyCode"
]
group_name
=
result
[
"data"
][
"list"
][
0
][
"groupName"
]
group_price
=
result
[
"data"
][
"list"
][
0
][
"groupPrice"
]
# 第三步登录多采商城获取token信息
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password"
)
# 获取登录后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
,
"url_website"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload_website"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 第四步获取商品对应的套包信息
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url47"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload47"
,
product_code
,
company_code
)
"""
场景:验证套包正价中商品详情页套包信息展示是否正确
用例名称:验证商品详情页面套包信息的展示
输出:{"groupPrice":"%d","groupName":"%s"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取商品详情页中套包正价信息
result
=
{
"groupPrice"
:
result
[
"data"
][
1
][
"groupPrice"
],
"groupName"
:
result
[
"data"
][
1
][
"groupName"
]}
print
(
result
)
# # 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict47"
,
group_price
,
group_name
)
# # 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_special_fresenius_group/data
View file @
e059c4c2
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