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
63eb1df4
Commit
63eb1df4
authored
Nov 08, 2023
by
liguangyu06
Browse files
新增获取特殊套包详情用例
parent
8eb93620
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_special_fresenius_group/获取特殊套包详情.air/获取特殊套包详情.py
0 → 100644
View file @
63eb1df4
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc获取特殊套包详情,2264,2264-69,sit,bs
主数据平台:后台运营系统获取特殊套包详情接口
"""
from
common.common_func
import
commonFuc
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
,
"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
,
"url38"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload38"
)
"""
场景:获取特殊套包详情
用例名称:获取特殊套包详情
输出:{"productCode":"10056821"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
result
=
{
"productCode"
:
result
[
"data"
][
0
][
"productCode"
]}
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict38"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_special_fresenius_group/data
View file @
63eb1df4
...
...
@@ -232,6 +232,28 @@ checkDict31: {"groupCode": "%s"}
"url37": "/order/public/enableOrDisablePrice"
#测试场景:获取特殊套包详情
#获取特殊套包详情接口信息
"url38": "/order/public/getDetailFreseniusGroup"
"payload38": {"productCode":"10056821","companyCode":"00111"}
#预期结果
checkDict38: {"productCode": "10056821"}
#切换站点信息
"url_website": "/user/mall/switchWebsite"
"payload_website": {"companyId":6,"companyCode":"00111"}
...
...
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