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
23259773
Commit
23259773
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
用例新增:参数必填性校验_站点产品线备注设置删除
parent
8c3fc5b1
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
+48
-0
...dc_website/参数必填性校验_站点产品线备注设置删除.air/参数必填性校验_站点产品线备注设置删除.py
data/cmdc_website/data
+5
-1
data/cmdc_website/data
with
53 additions
and
1 deletion
+53
-1
air_case/cmdc_website/参数必填性校验_站点产品线备注设置删除.air/参数必填性校验_站点产品线备注设置删除.py
0 → 100644
+
48
-
0
View file @
23259773
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc参数必填性校验_站点产品线备注设置删除,2256,2256-24,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
,
"url24"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload24"
)
# print(request_body)
"""
场景: 参数必填性校验_站点产品线备注设置删除
用例名称:参数必填性校验_站点产品线备注设置删除
输出:{"success":false,"code":"ERROR","message":"找不到配置","data":null,"freshToken":null}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 将接口响应时间添加至result
result
=
json
.
loads
(
result
.
content
)
result
[
"api_time"
]
=
api_time
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict24"
)
# 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 @
23259773
...
...
@@ -173,7 +173,11 @@ checkDict22_1: {"success":false,"code":"ERROR","message":"找不到配置","data
#预期结果
checkDict23: {"success":true,"code":"200","message":"OK"}
#测试场景24:参数必填性校验_站点产品线备注设置删除
"url24": "/cms/public/lineRemark/deleteLineRemark"
"payload24": {"id":""}
#预期结果
checkDict24: {"success":false,"code":"ERROR","message":"找不到配置","data":null,"freshToken":null}
...
...
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