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
3b7b07ab
Commit
3b7b07ab
authored
Jan 23, 2024
by
liguangyu06
Browse files
用例新增:查询物流信息_发票清单列表
parent
477936c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_trade/查询物流信息_发票清单列表.air/查询物流信息_发票清单列表.py
0 → 100644
View file @
3b7b07ab
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc查询物流信息_发票清单列表,2294,2294-38,sit,be
主数据平台:多采商城获取物流信息接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.多采商城登录.多采商城登录
import
CmdcMaiiLogin
import
random
import
requests
import
datetime
import
json
module
=
"cmdc_trade"
# 第一步获取登录多采商城所需账号密码
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
,
"url35"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload35"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成随机数
invoice_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取发票信息
invoice_no
=
result
[
"data"
][
"list"
][
invoice_random
][
"invoiceNo"
]
# 第三步获取物流信息
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url37"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload37"
,
invoice_no
)
"""
场景: 验证是否可获取到对应的物流信息
用例名称:查询物流信息_发票清单列表
输出:{"success":true,"code":"200","message":"未查询到数据","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
)
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict37"
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_trade/data
View file @
3b7b07ab
...
@@ -252,7 +252,10 @@ checkDict35: {"success":true,"code":"200","message":"操作成功"}
...
@@ -252,7 +252,10 @@ checkDict35: {"success":true,"code":"200","message":"操作成功"}
"payload36": {"companyId":"","demandCode":"","invoiceNo":"%s","invoiceTimeBegin":"%s","invoiceTimeEnd":"%s","pageNumber":1,"pageSize":10,"companyCode":"%s","demandParentCode":"%s"}
"payload36": {"companyId":"","demandCode":"","invoiceNo":"%s","invoiceTimeBegin":"%s","invoiceTimeEnd":"%s","pageNumber":1,"pageSize":10,"companyCode":"%s","demandParentCode":"%s"}
checkDict36: {"invoiceNo":"%s"}
checkDict36: {"invoiceNo":"%s"}
#测试场景三十七:查询物流信息_发票清单列表
"url37": "/order/public/invoice/express"
"payload37": {"invoiceNo":"%s"}
checkDict37: {"success":true,"code":"200","message":"未查询到数据","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