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
bfc4e12d
Commit
bfc4e12d
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
用例新增:根据id查询站点信息
parent
ec7deb3e
main
master
1 merge request
!6
Master|代码更新归档
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
air_case/cmdc_order_list/根据id查询站点信息.air/根据id查询站点信息.py
+48
-0
air_case/cmdc_order_list/根据id查询站点信息.air/根据id查询站点信息.py
data/cmdc_order_list/data
+5
-1
data/cmdc_order_list/data
with
53 additions
and
1 deletion
+53
-1
air_case/cmdc_order_list/根据id查询站点信息.air/根据id查询站点信息.py
0 → 100644
+
48
-
0
View file @
bfc4e12d
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc根据id查询站点信息,2295,2295-77,sit,bs
主数据平台:后台运营系统根据id查询站点信息接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_order_list"
# # 第一步登录后台运营系统获取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)
# 第一步根据父id获取省市信息
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url77"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload77"
)
# print(request_body)
"""
场景: 根据id查询站点信息
用例名称:根据id查询站点信息
输出:{"success":true,"code":"200","message":"操作成功"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 将接口响应时间添加至result
result
=
json
.
loads
(
result
.
content
)
# print(result)
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict77"
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
data/cmdc_order_list/data
+
5
-
1
View file @
bfc4e12d
...
...
@@ -525,7 +525,11 @@ checkDict75: {"demandCode":"%s"}
#预期结果
checkDict76: {"demandParentCode":"%s"}
#测试场景七十七:根据id查询站点信息
"url77": "/cms/public/website/queryWebsiteByCompanyId"
"payload77": {"companyId":7}
#预期结果
checkDict77: {"success":true,"code":"200","message":"操作成功"}
...
...
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