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
87e8a5ac
Commit
87e8a5ac
authored
Mar 25, 2024
by
liguangyu06
Browse files
用例新增:商品包装批量新增验证
parent
dc3b5e78
Changes
2
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_33st/c_商品包装批量新增验证.air/c_商品包装批量新增验证.py
0 → 100644
View file @
87e8a5ac
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc商品包装批量新增验证,33,33-9,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
,
"url9"
)
# 获取文件
file
=
open
(
file_path
,
"rb"
)
files
=
{
"file"
:
file
}
"""
场景:商品包装批量新增验证
用例名称:商品包装批量新增验证
输出:{"success":true,"code":"200","message":null,"data":null,"freshToken":null}
"""
# 发送请求
result
=
requests
.
post
(
url
,
files
=
files
,
headers
=
headers
)
# 获取接口响应时间
api_time
=
float
(
result
.
elapsed
.
total_seconds
())
# 将接口响应时间添加至result
result
=
json
.
loads
(
result
.
content
)
result
[
"api_time"
]
=
api_time
file
.
close
()
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict9"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_33st/data
View file @
87e8a5ac
...
@@ -108,13 +108,25 @@ checkDict8: {"message":"模板下载成功"}
...
@@ -108,13 +108,25 @@ checkDict8: {"message":"模板下载成功"}
#预期结果
#预期结果
checkDict11: {"message":"模板下载成功"}
checkDict11: {"message":"模板下载成功"}
#测试场景9:商品包装批量新增验证
"url9": "/product/packagingManage/importInsert"
#预期结果
checkDict9: {"success":true,"code":"200","message":null,"data":null,"freshToken":null}
#测试场景10:导入日志获取
"url10": "/product/public/excelLog/list"
"payload10": {"sheetName":"批量新增包装管理","pageStart":1,"pageSize":10,"total":null}
#预期结果
checkDict10: {"status":2}
#测试场景12:按条件删除商品包装功能验证
"url12": "/product/packagingManage/importLogicDelete"
#预期结果
checkDict12: {"success":true,"code":"200","message":null,"data":null,"freshToken":null}
...
...
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