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
b595e23d
Commit
b595e23d
authored
Jun 24, 2024
by
liguangyu06
Browse files
用例优化
parent
68d6e3d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_order_list/列表查询条件验证_红票明细列表.air/列表查询条件验证_红票明细列表.py
View file @
b595e23d
...
...
@@ -29,44 +29,46 @@ request_body = commonFuc().get_business_data(module, "payload74")
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成随机数
red_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取红票明细信息
demandParentCode
=
result
[
"data"
][
"list"
][
red_random
][
"demandParentCode"
]
demandCode
=
result
[
"data"
][
"list"
][
red_random
][
"demandCode"
]
customerName
=
result
[
"data"
][
"list"
][
red_random
][
"customerName"
]
orderStatus
=
result
[
"data"
][
"list"
][
red_random
][
"orderStatus"
]
startTime
=
result
[
"data"
][
"list"
][
red_random
][
"auditTime"
][:
10
]
+
" 00:00:00"
endTime
=
str
(
datetime
.
datetime
.
now
().
strftime
(
"%Y-%m-%d"
))
+
" 23:59:59"
startTime
=
""
endTime
=
""
# 判断是否获取到红票明细
if
result
[
"data"
][
"list"
]:
# 生成随机数
red_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取红票明细信息
demandParentCode
=
result
[
"data"
][
"list"
][
red_random
][
"demandParentCode"
]
demandCode
=
result
[
"data"
][
"list"
][
red_random
][
"demandCode"
]
customerName
=
result
[
"data"
][
"list"
][
red_random
][
"customerName"
]
orderStatus
=
result
[
"data"
][
"list"
][
red_random
][
"orderStatus"
]
startTime
=
result
[
"data"
][
"list"
][
red_random
][
"auditTime"
][:
10
]
+
" 00:00:00"
endTime
=
str
(
datetime
.
datetime
.
now
().
strftime
(
"%Y-%m-%d"
))
+
" 23:59:59"
startTime
=
""
endTime
=
""
# 第三步进行列表查询条件验证
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url75"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload75"
,
demandParentCode
,
demandCode
,
customerName
,
orderStatus
,
startTime
,
endTime
)
# print(request_body)
"""
场景: 列表查询条件验证_红票明细列表
用例名称:列表查询条件验证_红票明细列表
输出:{"demandCode":"%s"}
"""
# 第三步进行列表查询条件验证
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url75"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload75"
,
demandParentCode
,
demandCode
,
customerName
,
orderStatus
,
startTime
,
endTime
)
# print(request_body)
"""
场景: 列表查询条件验证_红票明细列表
用例名称:列表查询条件验证_红票明细列表
输出:{"demandCode":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取查询结果中红票明细信息
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"demandCode"
:
result
[
"data"
][
"list"
][
0
][
"demandCode"
]}
# 将接口响应时间添加至结果中
result
[
"api_time"
]
=
api_time
# 获取查询结果中红票明细信息
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
=
{
"demandCode"
:
result
[
"data"
][
"list"
][
0
][
"demandCode"
]}
# 将接口响应时间添加至结果中
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict75"
,
demandCode
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict75"
,
demandCode
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
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