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
002289b4
Commit
002289b4
authored
Nov 02, 2023
by
liguangyu06
Browse files
新增批量新增_套包商品管理用例
parent
38f4d82f
Changes
3
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_special_fresenius_group/批量新增_套包商品管理.air/批量新增_套包商品管理.py
0 → 100644
View file @
002289b4
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc批量新增_套包商品管理,2264,2264-47,sit,bs
主数据平台:运营后台管理系统套包批量新增接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
from
common.handle_excel
import
HandleExcel
import
requests
import
json
import
os
import
random
import
uuid
module
=
"cmdc_special_fresenius_group"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username1"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password1"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers2"
,
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
,
"product_list"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"product_payload"
)
result
=
requests
.
post
(
url
,
headers
=
headers
,
json
=
request_body
)
result
=
json
.
loads
(
result
.
content
)
# 随机获取不相同两个商品信息
product_id_a
=
random
.
randint
(
1
,
len
(
result
[
"data"
][
"list"
])
-
2
)
print
(
product_id_a
)
product_code_a
=
result
[
"data"
][
"list"
][
product_id_a
][
"productCode"
]
product_name_a
=
result
[
"data"
][
"list"
][
product_id_a
][
"productName"
]
product_id_b
=
random
.
randint
(
product_id_a
,
len
(
result
[
"data"
][
"list"
])
-
1
)
print
(
product_id_b
)
product_code_b
=
result
[
"data"
][
"list"
][
product_id_b
][
"productCode"
]
product_name_b
=
result
[
"data"
][
"list"
][
product_id_b
][
"productName"
]
# 随机生成套包名称
group_name
=
"测试套包%s"
%
uuid
.
uuid4
()
print
(
group_name
)
# 随机生成商品数量
product_num
=
random
.
randint
(
1
,
1000
)
# 将商品信息写入文件中
excel
=
HandleExcel
(
file_path
,
"Sheet1"
)
excel
.
write_data
(
row
=
2
,
column
=
1
,
value
=
group_name
)
excel
.
write_data
(
row
=
3
,
column
=
1
,
value
=
group_name
)
excel
.
write_data
(
row
=
2
,
column
=
2
,
value
=
product_code_a
)
excel
.
write_data
(
row
=
2
,
column
=
3
,
value
=
product_name_a
)
excel
.
write_data
(
row
=
2
,
column
=
4
,
value
=
product_num
)
excel
.
write_data
(
row
=
3
,
column
=
2
,
value
=
product_code_b
)
excel
.
write_data
(
row
=
3
,
column
=
3
,
value
=
product_name_b
)
excel
.
write_data
(
row
=
3
,
column
=
4
,
value
=
product_num
)
# 第二步批量新增套包
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"import_url"
)
# 获取文件
file
=
open
(
file_path
,
"rb"
)
files
=
{
"file"
:
file
}
"""
场景:批量新增_套包商品管理
用例名称:批量新增_套包商品管理
输出:{"success":true,"code":"200","message":"OK","data":{"success":true},"freshToken":null}
"""
# 发送请求
result
=
requests
.
post
(
url
,
files
=
files
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
file
.
close
()
print
(
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict12"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_files/套包商品批量维护模板套包商品管理.xlsx
0 → 100644
View file @
002289b4
File added
data/cmdc_special_fresenius_group/data
View file @
002289b4
...
...
@@ -100,10 +100,14 @@ checkDict11: {"errList":["%s"]}
#测试场景十二:验证使用按条件启用功能,是否可以启用已经是停用状态下的套包
#批量新增功能_套包商品管理功能验证
#商品列表接口地址和报文
"product_list": "/product/public/productGroupList"
"product_payload": {"productCode":"","productName":"","materialCode":"","specifications":"","productLineName":"麦迪康","userNo":"","companyCode":"00111","pageSize":10,"pageNum":1}
#批量导入url
"import_url": "/order/public/importFreseniusGroup"
#预期结果
checkDict12: {"success":true,"code":"200","message":"OK","data":{"success":true},"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