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
d0d4472b
Commit
d0d4472b
authored
Jan 22, 2024
by
liguangyu06
Browse files
用例新增:查看站点资料变更详情
parent
b46c7533
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_31st/查看站点资料变更详情.air/查看站点资料变更详情.py
0 → 100644
View file @
d0d4472b
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc查看站点资料变更详情,31,31-3,sit,be
主数据平台:后台运营系统查看站点资料变更详情接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
random
import
json
module
=
"cmdc_31st"
# 第一步登录后台运营系统获取token
username
=
commonFuc
().
get_business_data
(
module
,
"username1_be"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password1_be"
)
# 获取登录后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
,
"url1"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload1"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成随机数
site_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取站点信息
tripartite_id
=
result
[
"data"
][
"list"
][
site_random
][
"tripartiteId"
]
# 第三步查询站点资料变更详情
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url4"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload4"
,
tripartite_id
)
"""
场景: 查询站点资料变更详情
用例名称:查询站点资料变更详情
输出:{"tripartiteId":"%s"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取详情页中tripartiteId
result
=
json
.
loads
(
result
.
content
)
result
=
{
"tripartiteId"
:
result
[
"data"
][
"tripartiteId"
]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict4"
,
tripartite_id
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_31st/data
View file @
d0d4472b
...
...
@@ -56,7 +56,11 @@ checkDict2: {"applyNo":"%s"}
checkDict3: {"userName":"%s"}
#测试场景四:查询站点资料变更详情
"url4": "/user/tripartiteChange/queryTripartiteChangeDetail"
"payload4": {"tripartiteId":"%s"}
#预期结果
checkDict4: {"tripartiteId":"%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