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
0cc5a28b
Commit
0cc5a28b
authored
Jan 22, 2024
by
liguangyu06
Browse files
用例新增:发货同步_发货单管理
parent
aedb5e02
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_trade/发货同步_发货单管理.air/发货同步_发货单管理.py
0 → 100644
View file @
0cc5a28b
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc发货同步_发货单管理,2294,2294-32,sit,bs
主数据平台:后台运营系统发货同步接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
random
import
json
module
=
"cmdc_trade"
# 第一步登录后台运营系统获取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
,
"url30"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload30"
)
# print(request_body)
"""
场景: 验证发货同步接口连通性
用例名称:发货同步_发货单管理
输出:{"success":true,"code":"200","message":null,"data":null,"freshToken":null}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 将获取到接口响应时间添加至result中
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict30"
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_trade/data
View file @
0cc5a28b
...
...
@@ -215,7 +215,11 @@ checkDict29: {"demandCode":"%s"}
checkDict30: {"demandCode":"%s"}
#测试场景三十一:发货同步_发货单管理
"url30": "/order/public/getFlowSync"
"payload30": {"companyCode":"00111"}
#预期结果
checkDict30: {"success":true,"code":"200","message":null,"data":null,"freshToken":null}
...
...
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