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
fc511884
Commit
fc511884
authored
1 year ago
by
liguangyu06
Browse files
Options
Download
Email Patches
Plain Diff
用例新增:cmdc按条件删除商品包装功能验证
parent
ac306b71
master
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
air_case/cmdc_33st/e_按条件删除商品包装功能验证.air/e_按条件删除商品包装功能验证.py
+57
-0
air_case/cmdc_33st/e_按条件删除商品包装功能验证.air/e_按条件删除商品包装功能验证.py
data/cmdc_33st/data
+1
-1
data/cmdc_33st/data
with
58 additions
and
1 deletion
+58
-1
air_case/cmdc_33st/e_按条件删除商品包装功能验证.air/e_按条件删除商品包装功能验证.py
0 → 100644
+
57
-
0
View file @
fc511884
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc按条件删除商品包装功能验证,33,33-12,sit,be
主数据平台:后台运营系统按条件删除商品包装接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
import
os
module
=
"cmdc_33st"
# 第一步登录后台运营系统获取token
username
=
commonFuc
().
get_business_data
(
module
,
"username_do_be"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password_do_be"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers_file"
,
cmdc_access_token
)
# 获取文件
BASE_DIR
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))))
file_path
=
BASE_DIR
+
"/data/cmdc_files/商品包装管理批量删除导入模板_导入成功.xlsx"
# 第二步批量删除商品包装信息
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url12"
)
# 获取文件
file
=
open
(
file_path
,
"rb"
)
files
=
{
"file"
:
file
}
"""
场景:按条件删除商品包装功能验证
用例名称:按条件删除商品包装功能验证
输出:{"productCode":"10145928"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
files
=
files
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 获取删除商品信息
result
=
json
.
loads
(
result
.
content
)
result
=
{
"productCode"
:
result
[
"data"
][
0
][
"productCode"
]}
# 将接口响应时间添加至result
result
[
"api_time"
]
=
api_time
file
.
close
()
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict12"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
This diff is collapsed.
Click to expand it.
data/cmdc_33st/data
+
1
-
1
View file @
fc511884
...
...
@@ -126,7 +126,7 @@ checkDict10: {"status":2,"date":"%s"}
"url12": "/product/packagingManage/importLogicDelete"
#预期结果
checkDict12: {"
success":true,"code":"200","message":null,"data":null,"freshToken":null
}
checkDict12: {"
productCode":"10145928"
}
...
...
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