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
fb71251c
Commit
fb71251c
authored
Mar 28, 2024
by
liguangyu06
Browse files
用例新增:展示最新修改信息_原始清单
parent
c3c8e303
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_33st/m_展示最新修改信息_原始清单.air/m_展示最新修改信息_原始清单.py
0 → 100644
View file @
fb71251c
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc展示最新修改信息_原始清单,33,33-46,sit,be
主数据平台:多采商城需求单原始清单接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.多采商城登录.多采商城登录
import
CmdcMaiiLogin
import
requests
import
json
module
=
"cmdc_33st"
# 第一步登录多采商城获取token
username
=
commonFuc
().
get_business_data
(
module
,
"username_be"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password_be"
)
# 获取登录后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
,
"url46_1"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload46_1"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取需求单信息
demandCode
=
result
[
"data"
][
"list"
][
0
][
"demandCode"
]
# 第四步获取需求单原始清单信息
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url46"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload46"
,
demandCode
)
"""
场景: 展示最新修改信息_原始清单
用例名称:展示最新修改信息_原始清单
输出:{"quantity":2.0000}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取需求单信息
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"quantity"
:
result
[
"data"
][
"demandSkuList"
][
"list"
][
0
][
"quantity"
]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict46"
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_33st/data
View file @
fb71251c
...
@@ -318,8 +318,14 @@ checkDict44: ["contractAgreementName"]
...
@@ -318,8 +318,14 @@ checkDict44: ["contractAgreementName"]
#预期结果
#预期结果
checkDict45: {"quantity":2.0000}
checkDict45: {"quantity":2.0000}
#测试场景46:展示最新修改信息_原始清单
"url46": "/order/demandOrg/public/getChangeDemand"
"payload46": {"demandCode":"%s"}
#预期结果
checkDict46: {"quantity":2.0000}
#获取待审核需求单列表
"url46_1": "/order/public/ownListDemand"
"payload46_1": {"sellerCompanyCodes":[],"materialCode":"","productCode":"","productInfoValue":"","manufacturerList":null,"orderNum":"","paymentType":null,"preferenceType":null,"changeSign":null,"mainOrderStatus":2,"shipmentType":null,"stayStatus":null,"closeState":null,"orderSource":null,"pageStart":1,"pageSize":10}
...
...
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