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
2f8b0da1
Commit
2f8b0da1
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
用例新增:查询站点变更记录详情
parent
8a973ad3
main
master
1 merge request
!6
Master|代码更新归档
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
air_case/cmdc_website/查询站点变更记录详情.air/查询站点变更记录详情.py
+60
-0
air_case/cmdc_website/查询站点变更记录详情.air/查询站点变更记录详情.py
data/cmdc_website/data
+5
-1
data/cmdc_website/data
with
65 additions
and
1 deletion
+65
-1
air_case/cmdc_website/查询站点变更记录详情.air/查询站点变更记录详情.py
0 → 100644
+
60
-
0
View file @
2f8b0da1
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc查询站点变更记录详情,2256,2256-26,sit,bs
主数据平台:后台运营系统查询站点变更记录详情接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_website"
# 第一步登录后台运营系统获取token
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
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers1"
,
cmdc_access_token
)
# 第二步获取三方站点详细信息
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url23"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload23"
)
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 获取站点信息
tripartiteId
=
result
[
"data"
][
"tripartiteId"
]
# 第三步查询站点变更记录详情
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url26"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload26"
,
tripartiteId
)
"""
场景: 查询站点变更记录详情
用例名称:查询站点变更记录详情
输出:{"tripartiteId":"%s"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取站点信息
result
=
json
.
loads
(
result
.
content
)
result
=
{
"tripartiteId"
:
result
[
"data"
][
"tripartiteId"
]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict26"
,
tripartiteId
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
data/cmdc_website/data
+
5
-
1
View file @
2f8b0da1
...
...
@@ -185,7 +185,11 @@ checkDict24: {"success":false,"code":"ERROR","message":"找不到配置","data":
#预期结果
checkDict25: {"companyId":"7"}
#测试场景26:查询站点变更记录详情
"url26": "/user/tripartiteChange/queryTripartiteChangeDetail"
"payload26": {"tripartiteId":"%s"}
#预期结果
checkDict26: {"tripartiteId":"%s"}
...
...
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