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
1ad42910
Commit
1ad42910
authored
Nov 20, 2023
by
liguangyu06
Browse files
新增返利发放批量导入接口用例
parent
0418a880
Changes
4
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_rebate/批量导入商品_返利发放管理.air/批量导入商品_返利发放管理.py
View file @
1ad42910
...
...
@@ -41,7 +41,7 @@ product_random = random.randint(0, len(result["data"]["list"]) - 1)
product_name
=
result
[
"data"
][
"list"
][
product_random
][
"relevanceName"
]
product_code
=
result
[
"data"
][
"list"
][
product_random
][
"relevanceCode"
]
# 将
客户
信息写入导入模板中
# 将
商品
信息写入导入模板中
excel
=
HandleExcel
(
file_path
,
"Sheet1"
)
excel
.
write_data
(
row
=
2
,
column
=
1
,
value
=
product_code
)
excel
.
write_data
(
row
=
2
,
column
=
2
,
value
=
product_name
)
...
...
air_case/cmdc_rebate/批量导入客户验证_返利发放管理.air/批量导入客户验证_返利发放管理.py
0 → 100644
View file @
1ad42910
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc批量导入客户验证_返利发放管理,2271,2271-37,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
module
=
"cmdc_rebate"
# 第一步登录后台运营平台获取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_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
,
"url31"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload31"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成一个随机数字,用于后续随机选择三方用户信息
user_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取三方用户信息
customer_name
=
result
[
"data"
][
"list"
][
user_random
][
"customerName"
]
customer_code
=
result
[
"data"
][
"list"
][
user_random
][
"customerCode"
]
# customer_code = "1017911"
# 生成返利金额
amount
=
float
(
random
.
randint
(
1
,
1000
))
# 将客户信息写入导入模板中
excel
=
HandleExcel
(
file_path
,
"Sheet1"
)
excel
.
write_data
(
row
=
2
,
column
=
1
,
value
=
customer_code
)
excel
.
write_data
(
row
=
2
,
column
=
2
,
value
=
customer_name
)
excel
.
write_data
(
row
=
2
,
column
=
3
,
value
=
amount
)
excel
.
write_data
(
row
=
2
,
column
=
4
,
value
=
"批量导入客户验证"
)
# 第四步,进行文件导入操作
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url40"
)
# 获取文件
file
=
open
(
file_path
,
"rb"
)
files
=
{
"file"
:
file
}
"""
场景: 批量导入客户验证_返利发放管理
用例名称:批量导入客户验证_返利发放管理
输出:{"customerCode":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
files
=
files
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
print
(
result
)
file
.
close
()
if
result
[
"success"
]:
# 导入成功
result
=
{
"customerCode"
:
result
[
"data"
][
0
][
"customerCode"
]}
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict40"
,
customer_code
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
else
:
# 客户编码未与此站点首营
result
=
{
"message"
:
result
[
"message"
]}
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict40_1"
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_files/批量导入用户模板.xlsx
0 → 100644
View file @
1ad42910
File added
data/cmdc_rebate/data
View file @
1ad42910
...
...
@@ -305,7 +305,12 @@ checkDict38: {"customerCode":"%s"}
checkDict39: {"productCode":"%s"}
#测试场景四十二:批量导入客户验证_返利发放管理
"url40": "/order/public/uploadCusRebateExcel"
#预期结果
checkDict40: {"customerCode":"%s"}
#客户编码未与此站点首营
checkDict40_1: {"message":"第2行客户编码未与此站点首营"}
...
...
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