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
e7b54153
Commit
e7b54153
authored
Jul 01, 2024
by
liguangyu06
Browse files
用例优化
parent
9ba4a4dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_demand_mall/查询条件验证_需求单列表.air/查询条件验证_需求单列表.py
View file @
e7b54153
...
...
@@ -31,50 +31,52 @@ result = requests.post(url, json=request_body, headers=headers)
result
=
json
.
loads
(
result
.
content
)
# 此函数用于当x为none时,进行空字符串替换
def
func
(
x
):
if
x
is
None
:
x
=
""
return
x
else
:
return
x
# 判断是否获取到需求单信息
if
result
[
"data"
][
"list"
]:
# 此函数用于当x为none时,进行空字符串替换
def
func
(
x
):
if
x
is
None
:
x
=
""
return
x
else
:
return
x
# 生成随机数
random_demand
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取需求单信息
seller_company_code
=
result
[
"data"
][
"list"
][
random_demand
][
"sellerCompanyCode"
]
startTime
=
result
[
"data"
][
"list"
][
random_demand
][
"createTime"
]
endTime
=
datetime
.
datetime
.
now
().
strftime
(
"%Y-%m-%d %H:%M:%S"
)
product_code
=
func
(
result
[
"data"
][
"list"
][
random_demand
][
"productCode"
])
product_info_value
=
func
(
result
[
"data"
][
"list"
][
random_demand
][
"productName"
])
order_num
=
result
[
"data"
][
"list"
][
random_demand
][
"demandCode"
]
payment_type
=
result
[
"data"
][
"list"
][
random_demand
][
"paymentType"
]
preference_type
=
result
[
"data"
][
"list"
][
random_demand
][
"preferenceType"
]
# 生成随机数
random_demand
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取需求单信息
seller_company_code
=
result
[
"data"
][
"list"
][
random_demand
][
"sellerCompanyCode"
]
startTime
=
result
[
"data"
][
"list"
][
random_demand
][
"createTime"
]
endTime
=
datetime
.
datetime
.
now
().
strftime
(
"%Y-%m-%d %H:%M:%S"
)
product_code
=
func
(
result
[
"data"
][
"list"
][
random_demand
][
"productCode"
])
product_info_value
=
func
(
result
[
"data"
][
"list"
][
random_demand
][
"productName"
])
order_num
=
result
[
"data"
][
"list"
][
random_demand
][
"demandCode"
]
payment_type
=
result
[
"data"
][
"list"
][
random_demand
][
"paymentType"
]
preference_type
=
result
[
"data"
][
"list"
][
random_demand
][
"preferenceType"
]
# 第三步在需求单列表进行需求单查询操作
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url2"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload2"
,
seller_company_code
,
startTime
,
endTime
,
product_code
,
product_info_value
,
order_num
,
payment_type
,
preference_type
)
# print(request_body)
"""
场景: 验证需求单列表查询条件正确性
用例名称:查询条件验证_需求单列表
输出:{"orderNum":"%s"}
"""
# 第三步在需求单列表进行需求单查询操作
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url2"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload2"
,
seller_company_code
,
startTime
,
endTime
,
product_code
,
product_info_value
,
order_num
,
payment_type
,
preference_type
)
# print(request_body)
"""
场景: 验证需求单列表查询条件正确性
用例名称:查询条件验证_需求单列表
输出:{"orderNum":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
result
.
elapsed
.
total_seconds
()
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取查询结果中订单编号
result
=
{
"orderNum"
:
result
[
"data"
][
"list"
][
0
][
"demandCode"
]}
result
[
"api_time"
]
=
api_time
# print(result)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict2"
,
order_num
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
result
.
elapsed
.
total_seconds
()
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取查询结果中订单编号
result
=
{
"orderNum"
:
result
[
"data"
][
"list"
][
0
][
"demandCode"
]}
result
[
"api_time"
]
=
api_time
# print(result)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict2"
,
order_num
)
# 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