Skip to content
GitLab
Explore
Projects
Groups
Snippets
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
92dd1aa3
Commit
92dd1aa3
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
优化
parent
80f445a0
main
master
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
air_case/cmdc_demand_audit/需求单审核通过_代客下单.air/需求单审核通过_代客下单.py
+17
-16
air_case/cmdc_demand_audit/需求单审核通过_代客下单.air/需求单审核通过_代客下单.py
air_case/cmdc_demand_audit/需求单审核通过_快速下单.air/需求单审核通过_快速下单.py
+13
-17
air_case/cmdc_demand_audit/需求单审核通过_快速下单.air/需求单审核通过_快速下单.py
data/cmdc_demand_audit/data
+4
-0
data/cmdc_demand_audit/data
with
34 additions
and
33 deletions
+34
-33
air_case/cmdc_demand_audit/需求单审核通过_代客下单.air/需求单审核通过_代客下单.py
+
17
-
16
View file @
92dd1aa3
...
...
@@ -19,32 +19,28 @@ username = commonFuc().get_business_data(module, "username")
password
=
commonFuc
().
get_business_data
(
module
,
"password"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
# print(cmdc_access_token)
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
# print(headers)
# 第二步提交创建需求单(代客下单)
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url1"
)
# print(url)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload1"
)
# print(request_body)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 第三步在需求单列表查询到已创建的需求单
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url2"
)
# print(url)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload2"
)
# print(request_body)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 第四步审核刚刚创建的需求单
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url3"
)
# print(url)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload3"
)
# print(request_body)
"""
场景:通过代客下单提交创建需求单,并完成审核
用例名称:需求单审核通过
...
...
@@ -53,9 +49,14 @@ request_body = commonFuc().get_business_data(module, "payload3")
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict2"
)
print
(
check_dict
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
print
(
result
)
if
result
[
"success"
]:
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict2"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
else
:
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict_401"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
air_case/cmdc_demand_audit/需求单审核通过_快速下单.air/需求单审核通过_快速下单.py
+
13
-
17
View file @
92dd1aa3
...
...
@@ -20,18 +20,14 @@ username = commonFuc().get_business_data(module, "username1")
password
=
commonFuc
().
get_business_data
(
module
,
"password1"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcMaiiLogin
(
username
,
password
).
get_token
()
# print(cmdc_access_token)
headers1
=
commonFuc
().
get_business_data
(
module
,
"json_headers1"
,
cmdc_access_token
)
# print(headers1)
# 第二步创建并提交需求单
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url4"
)
# print(url)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload4"
)
#
print(request_body)
#
发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers1
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 第三步登录后台管理系统
# 获取登录所需账号密码
...
...
@@ -39,25 +35,20 @@ username = commonFuc().get_business_data(module, "username")
password
=
commonFuc
().
get_business_data
(
module
,
"password"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
# print(cmdc_access_token)
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
# print(headers)
# 第四步在需求单列表查询刚刚创建的需求单
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url2"
)
# print(url)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload2"
)
print
(
request_body
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 第五步进行需求单审核处理
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url3"
)
# print(url)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload3"
)
# print(request_body)
"""
场景:通过快速下单入口提交创建需求单,并进行审核通过操作
用例名称:通过快速下单入口提交创建并审核需求单
...
...
@@ -67,8 +58,13 @@ request_body = commonFuc().get_business_data(module, "payload3")
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict2"
)
print
(
check_dict
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
if
result
[
"success"
]:
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict2"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
else
:
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict_401"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
data/cmdc_demand_audit/data
+
4
-
0
View file @
92dd1aa3
This diff is collapsed.
Click to expand it.
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
Menu
Explore
Projects
Groups
Snippets