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
342cde12
Commit
342cde12
authored
Nov 03, 2023
by
liguangyu06
Browse files
新增客户列表相关用例
parent
66633206
Changes
3
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_special_fresenius_group/列表查询条件验证_客户列表.air/列表查询条件验证_客户列表.py
0 → 100644
View file @
342cde12
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc列表查询条件验证_客户列表,2264,2264-55,sit,bs
主数据平台:后台运营系统客户列表查询接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_special_fresenius_group"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username1"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password1"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
# 第二步客户列表获取
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"customer_list_url"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"customer_payload"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取客户信息
customer_code
=
result
[
"data"
][
"list"
][
0
][
"customerCode"
]
customer_name
=
result
[
"data"
][
"list"
][
0
][
"customerName"
]
# 第三步进行查询条件验证
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"customer_list_url"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload16"
,
customer_code
,
customer_name
)
"""
场景: 列表查询条件验证_客户列表
用例名称:列表查询条件验证_客户列表
输出:{"customerCode":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取客户信息
result
=
{
"customerCode"
:
result
[
"data"
][
"list"
][
0
][
"customerCode"
]}
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict16"
,
customer_code
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
air_case/cmdc_special_fresenius_group/获取客户列表.air/获取客户列表.py
0 → 100644
View file @
342cde12
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc获取客户列表,2264,2264-54,sit,bs
主数据平台:后台运营系统获取客户列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_special_fresenius_group"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username1"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password1"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
# 第二步获取客户列表
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"customer_list_url"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"customer_payload"
)
"""
场景:获取客户列表
用例名称:获取客户列表
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict15"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_special_fresenius_group/data
View file @
342cde12
...
...
@@ -128,9 +128,20 @@ checkDict13: {"groupCode":"%s"}
#预期结果
checkDict14: {"productCode":"%s"}
#测试场景:获取客户列表
"customer_list_url": "/user/queryUserForControlSalesByPage"
"customer_payload": {"customerCode":null,"customerName":null,"pageSize":10,"pageNum":1}
#预期结果
checkDict15: {"success":true,"code":"200","message":"OK"}
#测试场景:获取客户列表-查询条件验证
"payload16": {"customerCode":"%s","customerName":"%s","pageSize":10,"pageNum":1}
#预期结果
checkDict16: {"customerCode":"%s"}
...
...
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