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
edb74744
Commit
edb74744
authored
Jan 09, 2024
by
liguangyu06
Browse files
用例新增:获取欠货商品行信息
parent
23c6fd13
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_trade/获取欠货商品行信息.air/获取欠货商品行信息.py
0 → 100644
View file @
edb74744
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc获取欠货商品行信息,2294,2294-8,sit,bs
主数据平台:多采商城获获取欠货商品行信息接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.多采商城登录.多采商城登录
import
CmdcMaiiLogin
import
random
import
requests
import
json
module
=
"cmdc_trade"
# 第一步获取登录多采商城所需账号密码
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
,
"url6"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload6"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成随机数
order_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取订单欠货信息
demand_code
=
result
[
"data"
][
"list"
][
order_random
][
"demandCode"
]
product_code
=
result
[
"data"
][
"list"
][
order_random
][
"productList"
][
0
][
"productCode"
]
# 第三步获取商品行信息
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url8"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload8"
,
demand_code
)
"""
场景: 获取欠货商品行信息
用例名称:获取欠货商品行信息
输出:{"productCode":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取商品行信息中商品信息
result
=
{
"productCode"
:
result
[
"data"
][
0
][
"productCode"
]}
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict8"
,
product_code
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_trade/data
View file @
edb74744
...
@@ -67,7 +67,11 @@ checkDict6: {"success":true,"code":"200","message":"OK"}
...
@@ -67,7 +67,11 @@ checkDict6: {"success":true,"code":"200","message":"OK"}
#预期结果
#预期结果
checkDict7: {"demandCode":"%s"}
checkDict7: {"demandCode":"%s"}
#测试场景八:获取欠货商品行信息
"url8": "/order/mall/queryDebtDetail"
"payload8": {"demandCode":"%s","materialCodes":[],"productCode":"","isDebt":1}
#预期结果
checkDict8: {"productCode":"%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