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
05b970e1
Commit
05b970e1
authored
Sep 20, 2023
by
liguangyu06
Browse files
补充新增跨站商品至购物车列表场景用例
parent
fb44cc75
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_buyercar_list/新增跨站点商品至购物车.air/新增跨站点商品至购物车.py
0 → 100644
View file @
05b970e1
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:api,cmdc新增跨站点商品至购物车,2252,2252-4,sit,bs
主数据平台:多彩商城购物车列表新增商品接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.多彩商城登录.多彩商城登录
import
CmdcMaiiLogin
import
requests
import
json
module
=
"cmdc_buyercar_list"
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url2"
)
print
(
url
)
# 获取登录所需账号密码
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
()
print
(
cmdc_access_token
)
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers1"
,
cmdc_access_token
)
print
(
headers
)
request_body1
=
commonFuc
().
get_business_data
(
module
,
"payload300"
)
print
(
request_body1
)
# 发送请求
result1
=
requests
.
post
(
url
,
json
=
request_body1
,
headers
=
headers
)
result1
=
json
.
loads
(
result1
.
content
)
print
(
result1
)
# 获取预期结果
check_dict1
=
commonFuc
().
get_business_data
(
module
,
"checkDict300"
)
print
(
check_dict1
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict1
,
result1
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload301"
)
print
(
request_body
)
"""
场景:新增跨站点商品至购物车列表
用例名称:新增跨站点商品至购物车列表
输出:{"success":true,"code":"200","message":"OK","data":"ok"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
print
(
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict300"
)
print
(
check_dict
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
\ No newline at end of file
data/cmdc_buyercar_list/data
View file @
05b970e1
...
...
@@ -2,10 +2,14 @@
"username": "Test001"
"password": "Aa123456"
#后台运营管理系统登录信息
#后台运营管理系统登录信息
(子公司)
"username1": "admin2"
"password1": "Aa123456"
#后台运营管理系统登录信息(总公司)
"username2": "admin1"
"password2": "Aa123456"
json_headers: {
"Content-Type": "application/json",
"Cmdc_access_token": "%s"
...
...
@@ -165,3 +169,21 @@ json_headers3: {
#预期结果
checkDict3: {"success":true,"code":"200","message":"OK","data":"ok"}
#新增跨站点商品至购物车
"payload300": {"currentCompanyId":3,"productId":23363,"quantity":1,"agreementPriceId":0,"price":300000,"filialeCode":"00103"}
"payload301": {"currentCompanyId":3,"productId":25769,"quantity":1,"agreementPriceId":0,"price":69,"filialeCode":"00103"}
#预期结果
checkDict300: {"success":true,"code":"200","message":"OK","data":"ok"}
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