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
2a07750e
Commit
2a07750e
authored
Jul 09, 2021
by
edz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
直播-关注/取消关注
parent
e1fadf88
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
103 additions
and
7 deletions
+103
-7
user_request.py
all_backend_api/user_request.py
+15
-3
user_request.yaml
all_backend_api/user_request.yaml
+22
-0
path_setting.py
path_setting.py
+4
-3
test_follow_add.py
test_backend_case/user_case/test_follow_add.py
+22
-0
test_follow_del.py
test_backend_case/user_case/test_follow_del.py
+17
-0
topic_reply_create.yaml
test_backend_data/topic_data/topic_reply_create.yaml
+1
-1
follow_add.yaml
test_backend_data/user_data/follow_add.yaml
+15
-0
follow_del.yaml
test_backend_data/user_data/follow_del.yaml
+7
-0
No files found.
all_backend_api/user_request.py
View file @
2a07750e
...
@@ -12,8 +12,6 @@ class user_request(BaseRequest):
...
@@ -12,8 +12,6 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"personal_center"
])
return
self
.
api_send
(
self
.
data
[
"personal_center"
])
def
__init__
(
self
):
def
__init__
(
self
):
self
.
data
=
self
.
api_load
(
path_setting
.
USER_ANSWER_CONFIG
)
self
.
data
=
self
.
api_load
(
path_setting
.
USER_ANSWER_CONFIG
)
...
@@ -32,6 +30,20 @@ class user_request(BaseRequest):
...
@@ -32,6 +30,20 @@ class user_request(BaseRequest):
def
topic_canclefavor
(
self
):
def
topic_canclefavor
(
self
):
return
self
.
api_send
(
self
.
data
[
"canclefavor"
])
return
self
.
api_send
(
self
.
data
[
"canclefavor"
])
#关注主播
def
follow_add
(
self
,
uid
,
from_live
):
self
.
params
[
"uid"
]
=
uid
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
return
self
.
api_send
(
self
.
data
[
"follow_del"
])
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
@@ -45,6 +57,6 @@ if __name__ == '__main__':
...
@@ -45,6 +57,6 @@ if __name__ == '__main__':
# 日记贴收藏&取消收藏
# 日记贴收藏&取消收藏
# print(user_request().topic_favor())
# print(user_request().topic_favor())
# print(user_request().topic_canclefavor())
# print(user_request().topic_canclefavor())
print
(
user_request
()
.
follow_del
(
"33909625"
,
"4196"
))
all_backend_api/user_request.yaml
View file @
2a07750e
...
@@ -38,3 +38,25 @@ canclefavor:
...
@@ -38,3 +38,25 @@ canclefavor:
json
:
{}
json
:
{}
isLogin
:
1
isLogin
:
1
#直播-关注主播
follow_add
:
method
:
post
url
:
/api/user/follow/add
params
:
{}
data
:
uid
:
${uid}
from_live
:
${from_live}
json
:
{}
isLogin
:
1
#直播-取消关注
follow_del
:
method
:
post
url
:
/api/user/follow/del
params
:
{}
data
:
uid
:
${uid}
from_live
:
${from_live}
json
:
{}
isLogin
:
1
path_setting.py
View file @
2a07750e
...
@@ -527,6 +527,6 @@ PAGE_RULES = os.path.join(BASE_DIR, "backend_auto/test_backend_data/janus_data",
...
@@ -527,6 +527,6 @@ PAGE_RULES = os.path.join(BASE_DIR, "backend_auto/test_backend_data/janus_data",
#直播polling循环
#直播polling循环
POLLING_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"janus_request.yaml"
)
POLLING_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"janus_request.yaml"
)
POLLING
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/janus_data"
,
"polling.yaml"
)
POLLING
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/janus_data"
,
"polling.yaml"
)
#直播关注/取关主播
if
__name__
==
'__main__'
:
FOLLOW_ADD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"follow_add.yaml"
)
print
(
"=========="
,
LIVEYAML_CONFIG
)
FOLLOW_DEL
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"follow_del.yaml"
)
\ No newline at end of file
test_backend_case/user_case/test_follow_add.py
View file @
2a07750e
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
import
json
class
TestFollowAdd
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
FOLLOW_ADD
)
follow_add_case
,
follow_add_data
=
get_ids
(
data
,
"follow_add"
)
@pytest.mark.parametrize
(
"param"
,
follow_add_data
,
ids
=
follow_add_case
)
def
test_follow_add
(
self
,
param
):
r
=
user_request
()
.
follow_add
(
param
[
"uid"
],
param
[
"from_live"
])
# r=json.loads(r)
# print("---------",r,type(r))
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert"
]
if
r
[
"error"
]
==
1
:
assert
r
[
"message"
]
==
param
[
"assert1"
]
\ No newline at end of file
test_backend_case/user_case/test_follow_del.py
View file @
2a07750e
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
TestFollowDel
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
FOLLOW_DEL
)
follow_del_case
,
follow_del_data
=
get_ids
(
data
,
"follow_del"
)
@pytest.mark.parametrize
(
"param"
,
follow_del_data
,
ids
=
follow_del_case
)
def
test_follow_del
(
self
,
param
):
r
=
user_request
()
.
follow_del
(
param
[
"uid"
],
param
[
"from_live"
])
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert"
]
\ No newline at end of file
test_backend_data/topic_data/topic_reply_create.yaml
View file @
2a07750e
...
@@ -3,7 +3,7 @@ reply_create:
...
@@ -3,7 +3,7 @@ reply_create:
beuzhu
:
'
#
备注:
这个文件有冲突的话,那个版本都行不会影响,回退/接受当前版本都行,因为每次运行content都会改变'
beuzhu
:
'
#
备注:
这个文件有冲突的话,那个版本都行不会影响,回退/接受当前版本都行,因为每次运行content都会改变'
case
:
日记贴一级评论创建--正常校验&创建二级评论--正常校验
case
:
日记贴一级评论创建--正常校验&创建二级评论--正常校验
channel
:
benzhan
channel
:
benzhan
content
:
ces测试+2021-0
6-28 16:25:2
5
content
:
ces测试+2021-0
7-09 19:39:0
5
message
:
请勿回复重复内容
message
:
请勿回复重复内容
message1
:
回复成功
message1
:
回复成功
message2
:
你的回复有点频繁,稍后再来
message2
:
你的回复有点频繁,稍后再来
...
...
test_backend_data/user_data/follow_add.yaml
View file @
2a07750e
follow_add
:
#关注
-
case
:
"
关注主播"
uid
:
33909625
from_live
:
4196
assert
:
0
assert1
:
请登录后再试
#未登录
# -
# case: "未登录"
# uid: 33909625
# from_live: 4196
#assert1: 请登录后再试
test_backend_data/user_data/follow_del.yaml
View file @
2a07750e
follow_del
:
#取消关注
-
case
:
"
取消关注"
uid
:
33909625
from_live
:
4196
assert
:
0
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