Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
backend_auto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
邓莹莹
backend_auto
Commits
93b5915a
Commit
93b5915a
authored
Aug 13, 2021
by
张伟男
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'common_dev' into zwn_dev
parents
6a3c57f3
78458597
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
503 additions
and
32 deletions
+503
-32
.gitignore
.gitignore
+5
-2
user_request.py
all_backend_api/user_request.py
+30
-21
user_request.yaml
all_backend_api/user_request.yaml
+32
-2
achelous_request.py
all_om_api/achelous_request.py
+55
-3
achelous_request.yaml
all_om_api/achelous_request.yaml
+74
-2
path_setting.py
path_setting.py
+23
-0
test_base_sign_data.py
test_backend_case/user_case/test_base_sign_data.py
+27
-0
test_sign_calendar.py
test_backend_case/user_case/test_sign_calendar.py
+17
-0
test_sign_exchanged.py
test_backend_case/user_case/test_sign_exchanged.py
+21
-0
topic_reply_create.yaml
test_backend_data/topic_data/topic_reply_create.yaml
+1
-1
base_sign_data.yaml
test_backend_data/user_data/base_sign_data.yaml
+5
-0
sign_calendar.yaml
test_backend_data/user_data/sign_calendar.yaml
+5
-0
sign_exchanged.yaml
test_backend_data/user_data/sign_exchanged.yaml
+5
-0
test_page_edit.py
test_om_case/achelous_case/test_page_edit.py
+26
-0
test_special_delete.py
test_om_case/achelous_case/test_special_delete.py
+25
-0
test_special_edit.py
test_om_case/achelous_case/test_special_edit.py
+25
-0
test_special_list.py
test_om_case/achelous_case/test_special_list.py
+22
-0
test_unit_update.py
test_om_case/achelous_case/test_unit_update.py
+31
-0
test_delete_related_bc.py
test_om_case/beautycard_case/test_delete_related_bc.py
+2
-1
page_edit.yaml
test_om_data/achelous_data/page_edit.yaml
+10
-0
special_delete.yaml
test_om_data/achelous_data/special_delete.yaml
+7
-0
special_edit.yaml
test_om_data/achelous_data/special_edit.yaml
+16
-0
special_list.yaml
test_om_data/achelous_data/special_list.yaml
+19
-0
unit_update.yaml
test_om_data/achelous_data/unit_update.yaml
+20
-0
No files found.
.gitignore
View file @
93b5915a
...
...
@@ -106,4 +106,7 @@ venv.bak/
host.yaml
.DS_Store
*/.DS_Store
\ No newline at end of file
*/.DS_Store
# docmentatiion path
test_backend_data/topic_data/topic_reply_create.yaml
\ No newline at end of file
all_backend_api/user_request.py
View file @
93b5915a
...
...
@@ -23,10 +23,11 @@ class user_request(BaseRequest):
def
__init__
(
self
):
self
.
data
=
self
.
api_load
(
path_setting
.
TOPIC_FAVOR_CONFIG
)
#日记贴帖子相关-收藏
#
日记贴帖子相关-收藏
def
topic_favor
(
self
):
return
self
.
api_send
(
self
.
data
[
"favor"
])
#日记贴取消收藏
# 日记贴取消收藏
def
topic_canclefavor
(
self
):
return
self
.
api_send
(
self
.
data
[
"canclefavor"
])
...
...
@@ -36,7 +37,7 @@ class user_request(BaseRequest):
self
.
params
[
"from_live"
]
=
from_live
return
self
.
api_send
(
self
.
data
[
'follow_add'
])
#取消关注
#
取消关注
def
follow_del
(
self
,
uid
,
from_live
):
self
.
params
[
"uid"
]
=
uid
self
.
params
[
"from_live"
]
=
from_live
...
...
@@ -45,17 +46,15 @@ class user_request(BaseRequest):
#我的-日记
#
我的-日记
def
my_diary_v2
(
self
,
start_num
,
count
):
self
.
params
[
"start_num"
]
=
start_num
self
.
params
[
"count"
]
=
count
return
self
.
api_send
(
self
.
data
[
"my_diary_v2"
])
# 我的-帖子-我发布的
# 我的-帖子-我发布的
def
user_tractate
(
self
,
page
,
count
):
self
.
params
[
"page"
]
=
page
...
...
@@ -64,7 +63,7 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"user_tractate"
])
# 我的-帖子-我回复的
# 我的-帖子-我回复的
def
reply_tractate
(
self
,
page
,
count
,
version
):
self
.
params
[
"page"
]
=
page
...
...
@@ -75,7 +74,7 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"reply_tractate"
])
# 我的-问题-提问
# 我的-问题-提问
def
my_question
(
self
,
start_num
,
count
):
self
.
params
[
"start_num"
]
=
start_num
...
...
@@ -84,7 +83,7 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"my_question"
])
# 我的-收藏-商品
# 我的-收藏-商品
def
favors_services
(
self
,
start_num
,
count
,
current_city_id
,
device_id
,
version
):
self
.
params
[
"start_num"
]
=
start_num
...
...
@@ -95,7 +94,7 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"favors_services"
])
# 我的-问题-回答
# 我的-问题-回答
def
my_answer
(
self
,
start_num
,
count
):
self
.
params
[
"start_num"
]
=
start_num
...
...
@@ -103,7 +102,7 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"my_answer"
])
# 我的-收藏-日记本
# 我的-收藏-日记本
def
favors_diaries
(
self
,
start_num
,
count
):
self
.
params
[
"start_num"
]
=
start_num
...
...
@@ -111,7 +110,7 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"favors_diaries"
])
# 我的-收藏-日记贴
# 我的-收藏-日记贴
def
favors_topics
(
self
,
start_num
,
count
):
self
.
params
[
"start_num"
]
=
start_num
...
...
@@ -119,7 +118,21 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"favors_topics"
])
# 我的-收藏-帖子
# 签到--签到基础信息
def
base_sign_data
(
self
):
return
self
.
api_send
(
self
.
data
[
"base_sign_data"
])
# 签到--签到兑换记录
def
sign_exchanged
(
self
):
return
self
.
api_send
(
self
.
data
[
"sign_exchanged"
])
# 签到--日历
def
sign_calendar
(
self
,
year
=
'2021'
,
month
=
'8'
):
self
.
params
[
"year"
]
=
year
self
.
params
[
"month"
]
=
month
return
self
.
api_send
(
self
.
data
[
"sign_calendar"
])
# 我的-收藏-帖子
def
favors_tractate
(
self
,
page
,
count
):
self
.
params
[
"page"
]
=
page
...
...
@@ -127,7 +140,7 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"favors_tractate"
])
# 我的-收藏-回答
# 我的-收藏-回答
def
favors_answers
(
self
,
page
,
count
):
self
.
params
[
"page"
]
=
page
...
...
@@ -137,6 +150,8 @@ class user_request(BaseRequest):
if
__name__
==
'__main__'
:
#个人中心
print
(
user_request
()
.
personal_center
())
...
...
@@ -173,12 +188,6 @@ if __name__ == '__main__':
# 我的-收藏-日记贴
print
(
user_request
()
.
favors_topics
(
0
,
10
))
# 我的-收藏-帖子
print
(
user_request
()
.
favors_tractate
(
1
,
10
))
# 我的-收藏-帖子
print
(
user_request
()
.
favors_answers
(
1
,
10
))
all_backend_api/user_request.yaml
View file @
93b5915a
...
...
@@ -157,6 +157,37 @@ favors_topics:
isLogin
:
1
#签到--基础信息
base_sign_data
:
method
:
GET
url
:
/api/user/base_sign_data
params
:
data
:
{}
json
:
{}
isLogin
:
1
#签到--奖品兑换记录
sign_exchanged
:
method
:
GET
url
:
/api/user/sign_exchanged
params
:
data
:
{}
json
:
{}
isLogin
:
1
#签到--日历
sign_calendar
:
method
:
GET
url
:
/api/user/sign_calendar
params
:
year
:
${year}
month
:
${month}
data
:
{}
json
:
{}
isLogin
:
1
# 我的-收藏-帖子
favors_tractate
:
method
:
GET
...
...
@@ -178,4 +209,4 @@ favors_answers:
count
:
${count}
data
:
{}
json
:
{}
isLogin
:
1
\ No newline at end of file
isLogin
:
1
all_om_api/achelous_request.py
View file @
93b5915a
...
...
@@ -15,6 +15,58 @@ class achelous_request(BaseRequest):
# self.params["service_item_ids"] = service_item_ids
# return self.api_send(self.data["batch_add_service"])
#OM后台-自定义专题搜索
def
special_list
(
self
,
page_index
,
page_capacity
,
page_id
,
name
,
creator_name
,
create_time_gt
,
create_time_lt
,
is_online
,
status
,
start_time
,
end_time
):
self
.
params
[
"page_index"
]
=
page_index
self
.
params
[
"page_capacity"
]
=
page_capacity
self
.
params
[
"page_id"
]
=
page_id
self
.
params
[
"name"
]
=
name
self
.
params
[
"creator_name"
]
=
creator_name
self
.
params
[
"create_time_gt"
]
=
create_time_gt
self
.
params
[
"create_time_lt"
]
=
create_time_lt
self
.
params
[
"is_online"
]
=
is_online
self
.
params
[
"status"
]
=
status
self
.
params
[
"start_time"
]
=
start_time
self
.
params
[
"end_time"
]
=
end_time
return
self
.
api_send
(
self
.
data
[
"special_list"
])
#OM后台-自定义专题创建
def
special_edit
(
self
,
user_id
,
name
,
id
,
start_time
,
end_time
,
is_online
,
share_title
,
share_content
,
share_pic
):
self
.
params
[
"user_id"
]
=
user_id
self
.
params
[
"name"
]
=
name
self
.
params
[
"id"
]
=
id
self
.
params
[
"start_time"
]
=
start_time
self
.
params
[
"end_time"
]
=
end_time
self
.
params
[
"is_online"
]
=
is_online
self
.
params
[
"share_title"
]
=
share_title
self
.
params
[
"share_content"
]
=
share_content
self
.
params
[
"share_pic"
]
=
share_pic
return
self
.
api_send
(
self
.
data
[
"special_edit"
])
#OM后台-自定义专题删除
def
special_delete
(
self
,
ids
):
self
.
params
[
"ids"
]
=
ids
print
(
'*'
*
100
)
return
self
.
api_send
(
self
.
data
[
"special_delete"
])
#OM后台-组件库创建保存/更新保存
def
page_edit
(
self
,
visualpage_id
,
name
,
visual_info
):
self
.
params
[
"visualpage_id"
]
=
visualpage_id
self
.
params
[
"name"
]
=
name
self
.
params
[
"visual_info"
]
=
visual_info
return
self
.
api_send
(
self
.
data
[
"page_edit"
])
#OM后台-自定义专题组件创建保存/更新保存
def
unit_update
(
self
,
page_id
,
order
,
unit
):
self
.
params
[
"page_id"
]
=
page_id
self
.
params
[
"order"
]
=
order
self
.
params
[
"unit"
]
=
unit
return
self
.
api_send
(
self
.
data
[
"unit_update"
])
if
__name__
==
"__main__"
:
print
(
achelous_request
()
.
batch_add_service
(
"4176"
,
"73809,23508,33823"
))
# print(achelous_request().batch_del_service("4176","7312,7311"))
\ No newline at end of file
# print(achelous_request().batch_add_service("4176", "73809,23508,33823"))
# print(achelous_request().batch_del_service("4176","7312,7311"))
# print(achelous_request().special_edit("32244157","自定义专题创建1","0","2021-08-01 00:00:00","2021-09-30 00:00:00","1","自定义专题创建1","自定义专题创建1","https://heras.igengmei.com/4d5eef0a-78dd-43b3-98b7-137d2341f106-1628565831259"))
print
(
achelous_request
()
.
special_list
(
'1'
,
'10'
,
''
,
''
,
''
,
''
,
''
,
'1'
,
'0'
,
''
,
''
))
\ No newline at end of file
all_om_api/achelous_request.yaml
View file @
93b5915a
...
...
@@ -17,4 +17,76 @@ batch_add_service:
# stream_id: ${stream_id}
#service_item_ids: ${service_item_ids}
#json: {}
#isLogin: 1
\ No newline at end of file
#isLogin: 1
#OM后台-自定义专题搜索
special_list
:
method
:
GET
url
:
/achelous/visual/special_list
params
:
page_index
:
${page_index}
page_capacity
:
${page_capacity}
page_id
:
${page_id}
name
:
${name}
creator_name
:
${creator_name}
create_time_gt
:
${create_time_gt}
create_time_lt
:
${create_time_lt}
is_online
:
${is_online}
status
:
${status}
start_time
:
${start_time}
end_time
:
${end_time}
data
:
{}
json
:
{}
isLogin
:
1
#OM后台-自定义专题创建
special_edit
:
method
:
POST
url
:
/achelous/visual/special_edit
params
:
{}
data
:
user_id
:
${stream_id}
name
:
${name}
id
:
${id}
start_time
:
${start_time}
end_time
:
${end_time}
is_online
:
${is_online}
share_title
:
${share_title}
share_content
:
${share_content}
share_pic
:
${share_pic}
json
:
{}
isLogin
:
1
#OM后台-自定义专题删除
special_delete
:
method
:
POST
url
:
/achelous/visual/special_delete
params
:
{}
data
:
ids
:
${ids}
json
:
{}
isLogin
:
1
#OM后台-自定义专题组件库创建保存/更新保存
page_edit
:
method
:
POST
url
:
/achelous/visual/page_edit
params
:
{}
data
:
visualpage_id
:
${visualpage_id}
name
:
${name}
visual_info
:
${visual_info}
json
:
{}
isLogin
:
1
#OM后台-自定义专题组件创建保存/更新保存
unit_update
:
method
:
POST
url
:
/achelous/visual/unit_update
params
:
{}
data
:
page_id
:
${page_id}
order
:
${order}
unit
:
${unit}
json
:
{}
isLogin
:
1
\ No newline at end of file
path_setting.py
View file @
93b5915a
...
...
@@ -148,6 +148,14 @@ FEED_TAB_SERVICE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/janus_
FEED_TAB_SERVICE_DOCTORS
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/service_data"
,
"home_feed.yaml"
)
# 签到接口
SIGN
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"base_sign_data.yaml"
)
# 签到兑换记录
SIGN_EXCHANGED
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"sign_exchanged.yaml"
)
# 签到日历
SIGN_CALENDAR
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"sign_calendar.yaml"
)
#搜索首页-热门搜索
KEYWORDS_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"search_request.yaml"
)
KEYWORDS
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/search_data"
,
"keywords.yaml"
)
...
...
@@ -550,6 +558,21 @@ SETTLEMENTDELETE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/settle
OMLOGIN_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_om_api"
,
"login_request.yaml"
)
OMLOGIN
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_om_data/om_login_data"
,
"om_login.yaml"
)
#OM后台-自定义专题搜索
SPECIAL_LIST
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_om_data/achelous_data"
,
"special_list.yaml"
)
#OM后台-自定义专题创建
SPECIAL_EDIT
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_om_data/achelous_data"
,
"special_edit.yaml"
)
#OM后台-自定义专题删除
SPECIAL_DELETE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_om_data/achelous_data"
,
"special_delete.yaml"
)
#OM后台-自定义专题组件库创建保存/更新保存
PAGE_EDIT
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_om_data/achelous_data"
,
"page_edit.yaml"
)
#OM后台-自定义专题组件创建保存/更新保存
UNIT_UPDATE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_om_data/achelous_data"
,
"unit_update.yaml"
)
#更美次卡-获取已添加页面次卡spu/sku列表
GET_RELATED_BC_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_om_api"
,
"beautycard_request.yaml"
)
GET_RELATED_BC
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_om_data/beautycard_data"
,
"get_related_bc.yaml"
)
...
...
test_backend_case/user_case/test_base_sign_data.py
0 → 100644
View file @
93b5915a
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.user_request
import
user_request
class
TestBaseSignData
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SIGN
)
base_sign_data_case
,
base_sign_data_data
=
get_ids
(
data
,
"base_sign_data"
)
@pytest.mark.parametrize
(
"param"
,
base_sign_data_data
,
ids
=
base_sign_data_case
)
def
test_favors_diaries
(
self
,
param
):
r
=
user_request
()
.
base_sign_data
()
assert
r
[
"error"
]
==
param
[
"assert"
]
# 校验字段是否存在
# print(r["data"])
assert
r
[
"data"
][
"wait_time"
]
is
not
None
and
r
[
"data"
][
"wait_time"
]
is
not
""
# 是否关注
assert
r
[
"data"
][
"new_user"
]
is
not
None
and
r
[
"data"
][
"new_user"
]
is
not
""
# 是否关注
assert
r
[
"data"
][
"sign_status"
]
is
not
None
and
r
[
"data"
][
"sign_status"
]
is
not
""
# 是否关注
assert
r
[
"data"
][
"user_id"
]
is
not
None
and
r
[
"data"
][
"user_id"
]
is
not
""
# 是否关注
assert
r
[
"data"
][
"days_to_gift"
]
is
not
None
and
r
[
"data"
][
"days_to_gift"
]
is
not
""
# 是否关注
# assert r["data"] is True
test_backend_case/user_case/test_sign_calendar.py
0 → 100644
View file @
93b5915a
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.user_request
import
user_request
class
TestSignCalendar
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SIGN_CALENDAR
)
sign_calendar_case
,
sign_calendar_data
=
get_ids
(
data
,
"sign_calendar"
)
@pytest.mark.parametrize
(
"param"
,
sign_calendar_data
,
ids
=
sign_calendar_case
)
def
test_favors_diaries
(
self
,
param
):
r
=
user_request
()
.
sign_calendar
()
assert
r
[
"error"
]
==
param
[
"assert"
]
assert
r
[
"data"
][
"user_id"
]
is
not
None
and
r
[
"data"
][
"user_id"
]
is
not
""
# 判断用户名是否为空
test_backend_case/user_case/test_sign_exchanged.py
0 → 100644
View file @
93b5915a
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.user_request
import
user_request
class
TestSignExchanged
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SIGN_EXCHANGED
)
sign_exchanged_case
,
sign_exchanged_data
=
get_ids
(
data
,
"sign_exchanged"
)
@pytest.mark.parametrize
(
"param"
,
sign_exchanged_data
,
ids
=
sign_exchanged_case
)
def
test_favors_diaries
(
self
,
param
):
r
=
user_request
()
.
sign_exchanged
()
assert
r
[
"error"
]
==
param
[
"assert"
]
# 校验字段是否存在
# assert r["data"] is True
test_backend_data/topic_data/topic_reply_create.yaml
View file @
93b5915a
...
...
@@ -3,7 +3,7 @@ reply_create:
beuzhu
:
'
#
备注:
这个文件有冲突的话,那个版本都行不会影响,回退/接受当前版本都行,因为每次运行content都会改变'
case
:
日记贴一级评论创建--正常校验&创建二级评论--正常校验
channel
:
benzhan
content
:
ces测试+2021-08-
03 15:01:46
content
:
ces测试+2021-08-
13 15:36:32
message
:
请勿回复重复内容
message1
:
回复成功
message2
:
你的回复有点频繁,稍后再来
...
...
test_backend_data/user_data/base_sign_data.yaml
0 → 100644
View file @
93b5915a
base_sign_data
:
#签到基础信息
-
case
:
"
签到基础信息"
assert
:
0
\ No newline at end of file
test_backend_data/user_data/sign_calendar.yaml
0 → 100644
View file @
93b5915a
sign_calendar
:
#签到日历
-
case
:
"
签到日历"
assert
:
0
\ No newline at end of file
test_backend_data/user_data/sign_exchanged.yaml
0 → 100644
View file @
93b5915a
sign_exchanged
:
#签到奖品兑换记录
-
case
:
"
签到奖品兑换记录"
assert
:
0
\ No newline at end of file
test_om_case/achelous_case/test_page_edit.py
0 → 100644
View file @
93b5915a
import
pytest
import
path_setting
from
all_om_api.achelous_request
import
achelous_request
from
ids_list
import
get_ids
from
in_common.base_request
import
BaseRequest
class
TestPageEdit
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
PAGE_EDIT
)
page_edit_case
,
page_edit_data
=
get_ids
(
data
,
'page_edit'
)
@pytest.mark.parametrize
(
"param"
,
page_edit_data
,
ids
=
page_edit_case
)
def
test_page_edit
(
self
,
param
):
edit
=
achelous_request
()
.
special_edit
(
"32244157"
,
"aha自定义专题创建"
,
"0"
,
"2021-08-01 00:00:00"
,
"2021-09-30 00:00:00"
,
"1"
,
"啊哈自定义专题创建标题"
,
"啊哈自定义专题创建分享语"
,
"https://heras.igengmei.com/4d5eef0a-78dd-43b3-98b7-137d2341f106-1628565831259"
)
list
=
achelous_request
()
.
special_list
(
'1'
,
'10'
,
''
,
''
,
''
,
''
,
''
,
'1'
,
'0'
,
''
,
''
)
param
[
'visualpage_id'
]
=
list
[
'data'
][
'info_list'
][
0
][
'page_id'
]
param
[
'name'
]
=
edit
[
'data'
][
'name'
]
r
=
achelous_request
()
.
page_edit
(
param
[
'visualpage_id'
],
param
[
'name'
],
param
[
'visual_info'
])
if
r
[
'msg'
]
==
'success'
:
assert
r
[
'data'
][
'visualgroup_id'
]
==
param
[
'assert'
]
print
(
'自定义专题组件库成功保存,啦啦啦'
)
else
:
assert
r
[
'code'
]
==
param
[
'assert_error'
]
print
(
'自定义专题组件库保存失败,呜呜呜'
)
\ No newline at end of file
test_om_case/achelous_case/test_special_delete.py
0 → 100644
View file @
93b5915a
import
pytest
import
path_setting
from
all_om_api.achelous_request
import
achelous_request
from
ids_list
import
get_ids
from
in_common.base_request
import
BaseRequest
class
TestSpecialDelete
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SPECIAL_DELETE
)
special_delete_case
,
special_delete_data
=
get_ids
(
data
,
"special_delete"
)
@pytest.mark.parametrize
(
"param"
,
special_delete_data
,
ids
=
special_delete_case
)
def
test_special_delete
(
self
,
param
):
edit
=
achelous_request
()
.
special_edit
(
"32244157"
,
"aha自定义专题创建"
,
"0"
,
"2021-08-01 00:00:00"
,
"2021-09-30 00:00:00"
,
"1"
,
"啊哈自定义专题创建标题"
,
"啊哈自定义专题创建分享语"
,
"https://heras.igengmei.com/4d5eef0a-78dd-43b3-98b7-137d2341f106-1628565831259"
)
param
[
'ids'
]
=
edit
[
'data'
][
'id'
]
r
=
achelous_request
()
.
special_delete
(
param
[
'ids'
])
if
r
[
'message'
]
==
'success'
:
print
(
"自定义专题删除了"
)
else
:
print
(
"自定义专题无法删除"
)
test_om_case/achelous_case/test_special_edit.py
0 → 100644
View file @
93b5915a
import
pytest
import
path_setting
from
all_om_api.achelous_request
import
achelous_request
from
ids_list
import
get_ids
from
in_common.base_request
import
BaseRequest
class
TestSpecialEdit
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SPECIAL_EDIT
)
special_edit_case
,
special_edit_data
=
get_ids
(
data
,
"special_edit"
)
@pytest.mark.parametrize
(
"param"
,
special_edit_data
,
ids
=
special_edit_case
)
def
test_special_edit
(
self
,
param
):
r
=
achelous_request
()
.
special_edit
(
param
[
'user_id'
],
param
[
'name'
],
param
[
'id'
],
param
[
'start_time'
],
param
[
'end_time'
],
param
[
'is_online'
],
param
[
'share_title'
],
param
[
'share_content'
],
param
[
'share_pic'
])
if
r
[
'message'
]
==
'success'
:
assert
r
[
"data"
][
"name"
]
==
param
[
"assert"
]
print
(
"自定义专题创建成功~"
)
else
:
assert
r
[
'code'
]
==
param
[
'assert_error'
]
print
(
"自定义专题创建失败,呜呜呜"
)
test_om_case/achelous_case/test_special_list.py
0 → 100644
View file @
93b5915a
import
pytest
import
path_setting
from
all_om_api.achelous_request
import
achelous_request
from
ids_list
import
get_ids
from
in_common.base_request
import
BaseRequest
class
TestSpecialList
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SPECIAL_LIST
)
special_list_case
,
special_list_data
=
get_ids
(
data
,
'special_list'
)
@pytest.mark.parametrize
(
"param"
,
special_list_data
,
ids
=
special_list_case
)
def
test_special_list
(
self
,
param
):
r
=
achelous_request
()
.
special_list
(
param
[
'page_index'
],
param
[
'page_capacity'
],
param
[
'page_id'
],
param
[
'name'
],
param
[
'creator_name'
],
param
[
'create_time_gt'
],
param
[
'create_time_lt'
],
param
[
'is_online'
],
param
[
'status'
],
param
[
'start_time'
],
param
[
'end_time'
])
if
r
[
'msg'
]
==
'success'
:
assert
r
[
'data'
][
'page_index'
]
==
param
[
'assert'
]
print
(
'搜索自定义专题成功啦~~~'
)
else
:
assert
r
[
'code'
]
==
param
[
'assert_error'
]
print
(
'自定义专题搜索失败了!!!'
)
test_om_case/achelous_case/test_unit_update.py
0 → 100644
View file @
93b5915a
import
pytest
import
path_setting
from
all_om_api.achelous_request
import
achelous_request
from
ids_list
import
get_ids
from
in_common.base_request
import
BaseRequest
class
TestUnitUpdate
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
UNIT_UPDATE
)
unit_update_case
,
unit_update_data
=
get_ids
(
data
,
"unit_update"
)
@pytest.mark.parametrize
(
"param"
,
unit_update_data
,
ids
=
unit_update_case
)
def
test_unit_update
(
self
,
param
):
edit
=
achelous_request
()
.
special_edit
(
"32244157"
,
"aha自定义专题创建"
,
"0"
,
"2021-08-01 00:00:00"
,
"2021-09-30 00:00:00"
,
"1"
,
"啊哈自定义专题创建标题"
,
"啊哈自定义专题创建分享语"
,
"https://heras.igengmei.com/4d5eef0a-78dd-43b3-98b7-137d2341f106-1628565831259"
)
list
=
achelous_request
()
.
special_list
(
'1'
,
'10'
,
''
,
''
,
''
,
''
,
''
,
'1'
,
'0'
,
''
,
''
)
param
[
'page_id'
]
=
list
[
'data'
][
'info_list'
][
0
][
'page_id'
]
param
[
'name'
]
=
edit
[
'data'
][
'name'
]
r
=
achelous_request
()
.
unit_update
(
param
[
'page_id'
],
param
[
'order'
],
param
[
'unit'
])
if
r
[
'msg'
]
==
'success'
:
assert
r
[
'data'
][
'unit'
][
'module_name'
]
==
param
[
'assert'
]
print
(
'组件成功保存啦,啦啦啦'
)
else
:
assert
r
[
'code'
]
==
param
[
'assert_error'
]
print
(
'组件保存失败了,呜呜呜'
)
#调用组件库保存接口
achelous_request
()
.
page_edit
(
"param['page_id']"
,
"param['name']"
,
"r['data']['unit']"
)
test_om_case/beautycard_case/test_delete_related_bc.py
View file @
93b5915a
...
...
@@ -14,7 +14,7 @@ class TestDeleteRelatedBc:
def
test_delete_related_bc
(
self
,
param
):
r
=
beautycard_request
()
.
delete_related_bc
(
param
[
"unit_id"
],
param
[
"bc_sku_ids"
],
param
[
"bc_spu_ids"
],
param
[
"related_type"
])
if
r
[
"code"
]
==
0
:
print
(
"成功删除已添加页面次卡"
)
assert
r
[
"data"
]
==
param
[
"assert"
]
print
(
"成功删除已添加页面次卡"
)
if
r
[
"code"
]
==
1
:
print
(
"未删除已添加页面次卡"
)
\ No newline at end of file
test_om_data/achelous_data/page_edit.yaml
0 → 100644
View file @
93b5915a
#OM后台-组件库创建保存/更新保存
page_edit
:
#空组件库保存成功了
-
case
:
'
空组件库保存成功了'
visualpage_id
:
'
'
#此字段为自定义专题的专题ID,取自自定义专题搜索接口的返参:page_id
name
:
'
'
#此字段取值无用
visual_info
:
'
[]'
assert
:
0
assert_error
:
999
test_om_data/achelous_data/special_delete.yaml
0 → 100644
View file @
93b5915a
#OM后台-自定义专题删除
special_delete
:
#自定义专题成功删除
-
case
:
'
自定义专题成功删除'
ids
:
'
'
#该字段取值用不到
\ No newline at end of file
test_om_data/achelous_data/special_edit.yaml
0 → 100644
View file @
93b5915a
#OM后台-自定义专题创建
special_edit
:
#成功创建自定义专题~
-
case
:
"
成功创建自定义专题~"
user_id
:
'
32244157'
name
:
aha创建自定义专题
id
:
0
start_time
:
'
2021-08-10
00:00:00'
end_time
:
'
2022-08-10
00:00:00'
is_online
:
1
share_title
:
啊哈创建自定义专题分享标题
share_content
:
啊哈创建自定义专题分享文案
share_pic
:
https://heras.igengmei.com/4d5eef0a-78dd-43b3-98b7-137d2341f106-1628565831259
assert
:
aha创建自定义专题
assert_error
:
999
test_om_data/achelous_data/special_list.yaml
0 → 100644
View file @
93b5915a
#OM后台-自定义专题搜索
special_list
:
#自定义专题-无条件-搜索
-
case
:
'
自定义专题-无条件-搜索'
page_index
:
1
page_capacity
:
10
page_id
:
'
'
name
:
'
'
creator_name
:
'
'
create_time_gt
:
'
'
create_time_lt
:
'
'
is_online
:
1
status
:
0
start_time
:
'
'
end_time
:
'
'
assert
:
1
aseert_error
:
999
\ No newline at end of file
test_om_data/achelous_data/unit_update.yaml
0 → 100644
View file @
93b5915a
#OM后台-自定义专题组件创建保存/更新保存
unit_update
:
#平滑式轮播图组件新增保存成功
-
case
:
'
平滑式轮播图组件新增保存成功'
page_id
:
'
'
#此字段为自定义专题的专题ID,取自自定义专题搜索接口的返参:page_id
order
:
'
0'
unit
:
'
{"component_type":1,"module_name":"啊哈-平滑式轮播图","template_type":1,"images":[{"url":"https://heras.igengmei.com/105a2aa3-71a2-4e21-80b6-2de26da017ed-1628672528151","link_type":"45","link_id":"888","width":500,"height":313}],"component_style":{"background_image":{"url":"","width":0,"height":0}},"links":[{"url":"https://heras.igengmei.com/105a2aa3-71a2-4e21-80b6-2de26da017ed-1628672528151","link_type":"45","link_id":"888","width":500,"height":313}],"hash":"c2e1c300fa8211ebbe29738d54d50408"}'
assert
:
啊哈-平滑式轮播图
assert_error
:
999
#堆叠式轮播图组件新增保存成功
-
case
:
'
堆叠式轮播图组件新增保存成功'
page_id
:
'
'
#此字段为自定义专题的专题ID,取自自定义专题搜索接口的返参:page_id
order
:
'
0'
unit
:
'
{"component_type":1,"module_name":"啊哈-堆叠式轮播图","template_type":2,"images":[{"url":"https://heras.igengmei.com/105a2aa3-71a2-4e21-80b6-2de26da017ed-1628672528151","link_type":"45","link_id":"888","width":500,"height":313}],"component_style":{"background_image":{"url":"","width":0,"height":0}},"links":[{"url":"https://heras.igengmei.com/105a2aa3-71a2-4e21-80b6-2de26da017ed-1628672528151","link_type":"45","link_id":"888","width":500,"height":313}],"hash":"c2e1c300fa8211ebbe29738d54d50408"}'
assert
:
啊哈-堆叠式轮播图
assert_error
:
999
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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