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
2248fd83
Commit
2248fd83
authored
Aug 03, 2021
by
aha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
直播回放-进入直播间
parent
7363daf8
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
54 additions
and
6 deletions
+54
-6
live_request.py
all_backend_api/live_request.py
+13
-6
live_request.yaml
all_backend_api/live_request.yaml
+11
-0
path_setting.py
path_setting.py
+4
-0
test_replay_info.py
test_backend_case/live_case/test_replay_info.py
+18
-0
replay_info.yaml
test_backend_data/live_data/replay_info.yaml
+8
-0
No files found.
all_backend_api/live_request.py
View file @
2248fd83
...
...
@@ -46,6 +46,12 @@ class living_request(BaseRequest):
self
.
params
[
"version"
]
=
version
return
self
.
api_send
(
self
.
data
[
"finish"
])
#直播回放-进入直播间
def
replay_info
(
self
,
topic_id
,
version
,
device_id
=
"97B6764B-2135-4761-9911-701C38CBC272"
):
self
.
params
[
"topic_id"
]
=
topic_id
self
.
params
[
"version"
]
=
version
return
self
.
api_send
(
self
.
data
[
"replay_info"
])
#主播-分享按钮的点击
def
get_live_info_audience
(
self
,
channel_id
,
version
,
device_id
=
"97B6764B-2135-4761-9911-701C38CBC272"
):
self
.
params
[
"channel_id"
]
=
channel_id
...
...
@@ -56,8 +62,9 @@ class living_request(BaseRequest):
if
__name__
==
'__main__'
:
(
living_request
()
.
danmu_v2
(
"739"
,
"1"
))
(
living_request
()
.
pushlive_info
(
"小冤家"
,
"2021/04/22/1003/cef471cff5e6"
,
""
,
"1"
,
"1"
,
"1"
))
print
(
living_request
()
.
sendmsg
(
"739"
,
"你好"
))
print
(
living_request
()
.
finish
(
"745"
,
"746.0"
))
print
(
living_request
()
.
get_live_info_audience
(
"745"
,
"7.46.0"
))
\ No newline at end of file
# (living_request().danmu_v2("739", "1"))
# (living_request().pushlive_info("小冤家", "2021/04/22/1003/cef471cff5e6", "", "1", "1", "1"))
# print (living_request().sendmsg("739","你好"))
# print(living_request().finish("745", "746.0"))
# print(living_request().get_live_info_audience("745", "7.46.0"))
print
(
living_request
()
.
replay_info
(
"123456978"
,
"746.0"
))
\ No newline at end of file
all_backend_api/live_request.yaml
View file @
2248fd83
...
...
@@ -69,6 +69,17 @@ finish:
json
:
{}
isLogin
:
1
#直播回放-进入直播间
replay_info
:
method
:
GET
url
:
/api/live/replay_info
params
:
topic_id
:
${topic_id}
version
:
${version}
data
:
{}
json
:
{}
isLogin
:
1
#主播-分享按钮的点击
get_live_info_audience
:
method
:
GET
...
...
path_setting.py
View file @
2248fd83
...
...
@@ -655,6 +655,10 @@ LEAVE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/live_data", "leav
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"
)
#直播结束-主播下播
REPLAY_INFO_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"live_request.yaml"
)
REPLAY_INFO
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/live_data"
,
"replay_info.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_replay_info.py
0 → 100644
View file @
2248fd83
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
TestReplayInfo
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
REPLAY_INFO
)
replay_info_case
,
replay_info_data
=
get_ids
(
data
,
"replay_info"
)
@pytest.mark.parametrize
(
"param"
,
replay_info_data
,
ids
=
replay_info_case
)
def
test_replay_info
(
self
,
param
):
r
=
living_request
()
.
replay_info
(
param
[
"topic_id"
],
param
[
"version"
])
print
(
"看看直播回放咯"
)
if
r
[
"error"
]
==
0
:
assert
r
[
"data"
][
"topic_id"
]
==
param
[
"assert"
]
\ No newline at end of file
test_backend_data/live_data/replay_info.yaml
0 → 100644
View file @
2248fd83
replay_info
:
#看看直播回放咯
-
case
:
"
看看直播回放咯"
topic_id
:
"
123456978"
version
:
"
7.45.0"
assert
:
123456978
\ 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