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-spd
Commits
8a01cbd8
Commit
8a01cbd8
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
客户查询接口
parent
ad1ca50f
master
core_flow
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
air_case/cmdc_purchase_list/采购单查询.air/采购单查询.py
+1
-1
air_case/cmdc_purchase_list/采购单查询.air/采购单查询.py
air_case/cmdc_query_customer/客户查询.air/客户查询.py
+42
-0
air_case/cmdc_query_customer/客户查询.air/客户查询.py
data/cmdc_query_customer/data
+16
-0
data/cmdc_query_customer/data
with
59 additions
and
1 deletion
+59
-1
air_case/cmdc_purchase_list/采购单查询.air/采购单查询.py
+
1
-
1
View file @
8a01cbd8
...
...
@@ -28,7 +28,7 @@ request_body = commonFuc().get_business_data(module, "payload1")
print
(
request_body
)
"""
场景:传入正确参数,获取到采购单列表
用例名称:获取
需求
列表
用例名称:获取
采购单
列表
输出:{"success":true,"code":"200","message":null}
"""
# 发送请求
...
...
This diff is collapsed.
Click to expand it.
air_case/cmdc_query_customer/客户查询.air/客户查询.py
0 → 100644
+
42
-
0
View file @
8a01cbd8
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:api,cmdc客户查询,用例集id2250,sit,bs
主数据平台:运营后台管理系统客户接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_query_customer"
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url"
)
print
(
url
)
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
"admin2"
,
"FFtmods@365y"
).
get_token
()
print
(
cmdc_access_token
)
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers1"
,
cmdc_access_token
)
print
(
headers
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload1"
)
print
(
request_body
)
"""
场景:传入正确参数,获取到客户列表
用例名称:获取客户列表
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
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
)
This diff is collapsed.
Click to expand it.
data/cmdc_query_customer/data
0 → 100644
+
16
-
0
View file @
8a01cbd8
#采购单查询接口
"url": "/user/querySubCustomerPage"
# 后台运营管理系统登录信息
"username": "admin2"
"password": "FFtmods@365y"
json_headers1: {
"Content-Type": "application/json",
"Cmdc_access_token": "%s"
}
"payload1": {"disableSign":0,"status":3,"telephone":"","userNo":"","userName":"","customerCompanyName":"","pageSize":10,"pageStart":1,"total":0}
#预期结果
checkDict2: {"success":true,"code":"200","message":"OK"}
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