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
4a9dfc99
Commit
4a9dfc99
authored
Dec 29, 2023
by
liguangyu06
Browse files
接口用例新增:商品属性单个新增功能验证
parent
6ee28d8f
Changes
3
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_product/商品属性单个新增功能验证.air/商品属性单个新增功能验证.py
0 → 100644
View file @
4a9dfc99
# -*- encoding=utf8 -*-
__author__
=
"liguangyu"
"""
case_tag:cmdc_api,cmdc商品属性单个新增功能验证,2293,2293-006,sit,bs
主数据平台:后台运营系统商品属性单个新增接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
from
common.db.db
import
mySql
import
requests
import
random
import
json
module
=
"cmdc_product"
# 第一步登录后台运营平台获取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"
,
cmdc_access_token
)
# 数据库操作
mysql_handle
=
mySql
()
# 获取conf.ini文件中配置的数据库信息
host
,
port
,
user
,
pwd
=
mysql_handle
.
getConf
(
db
=
"cmdc_db"
)
# 第二步获取商品列表
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url3"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload3"
)
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# 生成一个随机数字,用于后续随机选择某一条商品信息
rebate_random
=
random
.
randint
(
0
,
len
(
result
[
"data"
][
"list"
])
-
1
)
# 获取商品信息
product_id
=
result
[
"data"
][
"list"
][
rebate_random
][
"productId"
]
product_name
=
result
[
"data"
][
"list"
][
rebate_random
][
"productName"
]
# 第三步进行商品属性新增
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url6"
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload6"
,
product_id
,
rebate_random
,
rebate_random
,
rebate_random
,
product_name
)
# print(request_body)
"""
场景: 商品属性单个新增功能验证
用例名称:商品属性单个新增功能验证
输出:{"data":"%s"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
result
=
json
.
loads
(
result
.
content
)
# print(result)
# 获取查询结果中商品code
result
=
{
"data"
:
result
[
"data"
]}
# 查询数据库中对应公司对应的商品属性id
sql
=
"SELECT t.propertyId FROM `cmdc-product`.ic_product_properties t WHERE companyCode = 00111 and deleteSign = 0 and productId ={}"
.
format
(
product_id
)
total
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-product"
,
sql
)[
0
][
0
]
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict6"
,
total
)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
air_case/cmdc_product/获取商品属性列表.air/获取商品属性列表.py
View file @
4a9dfc99
...
@@ -44,7 +44,7 @@ result = json.loads(result.content)
...
@@ -44,7 +44,7 @@ result = json.loads(result.content)
result
=
{
"total"
:
result
[
"data"
][
"total"
]}
result
=
{
"total"
:
result
[
"data"
][
"total"
]}
# print(result)
# print(result)
# 查询数据库中对应公司对应的商品属性数量
# 查询数据库中对应公司对应的商品属性数量
sql
=
"SELECT count(t.productId) FROM `cmdc-product`.ic_product_properties t WHERE companyCode = 00111"
sql
=
"SELECT count(t.productId) FROM `cmdc-product`.ic_product_properties t WHERE companyCode = 00111
and deleteSign = 0
"
total
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-product"
,
sql
)[
0
][
0
]
total
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-product"
,
sql
)[
0
][
0
]
# 获取预期结果
# 获取预期结果
...
...
data/cmdc_product/data
View file @
4a9dfc99
...
@@ -56,7 +56,11 @@ checkDict4: {"productCode":"%s"}
...
@@ -56,7 +56,11 @@ checkDict4: {"productCode":"%s"}
#预期结果
#预期结果
checkDict5: {"data":"%s"}
checkDict5: {"data":"%s"}
#测试场景六:商品属性单个新增功能验证
"url6": "/product/productProperties/addOrUpdate"
"payload6": {"productId":"%s","propertyId":"","propertyName":"%s","propertyNote":"%s","propertyVal":"%s","productNameStr":"%s"}
#预期结果
checkDict6: {"data":"%s"}
...
...
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