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
94aadca8
Commit
94aadca8
authored
Jul 22, 2021
by
aha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zhubo finish
parent
6292c508
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
4 deletions
+52
-4
live_request.py
all_backend_api/live_request.py
+9
-2
live_request.yaml
all_backend_api/live_request.yaml
+13
-2
path_setting.py
path_setting.py
+4
-0
test_finish.py
test_backend_case/live_case/test_finish.py
+18
-0
finish.yaml
test_backend_data/live_data/finish.yaml
+8
-0
No files found.
all_backend_api/live_request.py
View file @
94aadca8
...
...
@@ -34,8 +34,15 @@ class living_request(BaseRequest):
self
.
params
[
"version"
]
=
version
return
self
.
api_send
(
self
.
data
[
"leave"
])
#直播结束-主播下播
def
finish
(
self
,
channel_id
,
version
,
device_id
=
"97B6764B-2135-4761-9911-701C38CBC272"
):
self
.
params
[
"channel_id"
]
=
channel_id
self
.
params
[
"version"
]
=
version
return
self
.
api_send
(
self
.
data
[
"finish"
])
if
__name__
==
'__main__'
:
(
living_request
()
.
danmu_v2
(
"739"
,
"1"
))
(
living_request
()
.
pushlive_info
(
"小冤家"
,
"2021/04/22/1003/cef471cff5e6"
,
""
,
"1"
,
"1"
,
"1"
))
\ No newline at end of file
(
living_request
()
.
pushlive_info
(
"小冤家"
,
"2021/04/22/1003/cef471cff5e6"
,
""
,
"1"
,
"1"
,
"1"
))
print
(
living_request
()
.
finish
(
"745"
,
"746.0"
))
\ No newline at end of file
all_backend_api/live_request.yaml
View file @
94aadca8
...
...
@@ -26,7 +26,7 @@ pushlive_info:
#观众进入直播间
enter
:
method
:
get
method
:
GET
url
:
/api/live/enter
params
:
channel_id
:
${channel_id}
...
...
@@ -38,7 +38,7 @@ enter:
#观众离开直播间
leave
:
method
:
get
method
:
GET
url
:
/api/live/leave
params
:
channel_id
:
${channel_id}
...
...
@@ -47,4 +47,15 @@ leave:
json
:
{}
isLogin
:
1
#直播结束-主播下播
finish
:
method
:
POST
url
:
/api/live/finish
params
:
version
:
${version}
data
:
channel_id
:
${channel_id}
json
:
{}
isLogin
:
1
path_setting.py
View file @
94aadca8
...
...
@@ -587,6 +587,10 @@ ENTER = os.path.join(BASE_DIR, "backend_auto/test_backend_data/live_data", "ente
LEAVE_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"live_request.yaml"
)
LEAVE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/live_data"
,
"leave.yaml"
)
#直播结束-主播下播
FINISH_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"live_request.yaml"
)
FINISH
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/live_data"
,
"finish.yaml"
)
#主播标记讲解商品+取消标记
MARK_LIVE_SERVICE_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"janus_live_request.yaml"
)
MARK_LIVE_SERVICE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/janus_live_data"
,
"mark_live_service.yaml"
)
...
...
test_backend_case/live_case/test_finish.py
0 → 100644
View file @
94aadca8
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.live_request
import
living_request
class
TestFinish
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
FINISH
)
finish_case
,
finish_data
=
get_ids
(
data
,
"finish"
)
@pytest.mark.parametrize
(
"param"
,
finish_data
,
ids
=
finish_case
)
def
test_finish
(
self
,
param
):
r
=
living_request
()
.
finish
(
param
[
"channel_id"
],
param
[
"version"
])
print
(
"主播下播了,呜呜呜"
)
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert"
]
\ No newline at end of file
test_backend_data/live_data/finish.yaml
0 → 100644
View file @
94aadca8
finish
:
#主播下播了,呜呜呜
-
case
:
"
主播下播了,呜呜呜"
channel_id
:
"
745"
version
:
"
7.45.0"
assert
:
0
\ 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