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
2986b311
Commit
2986b311
authored
Jun 29, 2021
by
edz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
直播polling循环
parent
0f73d12f
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
0 deletions
+55
-0
janus_request.py
all_backend_api/janus_request.py
+11
-0
janus_request.yaml
all_backend_api/janus_request.yaml
+12
-0
path_setting.py
path_setting.py
+4
-0
test_polling.py
test_backend_case/janus_case/test_polling.py
+19
-0
polling.yaml
test_backend_data/janus_data/polling.yaml
+9
-0
No files found.
all_backend_api/janus_request.py
View file @
2986b311
...
...
@@ -22,6 +22,9 @@ class janus_request(BaseRequest):
#次卡商详页
self
.
data
=
self
.
api_load
(
path_setting
.
BEAUTY_CARD_DETAIL_CONFIG
)
#直播polling循环
self
.
data
=
self
.
api_load
(
path_setting
.
POLLING_CONFIG
)
#搜索结果页-综合/百科tab
def
content_v7
(
self
,
query
,
device_id
,
current_city_id
,
version
,
is_first
,
tab_type
,
offset
):
#搜索词
...
...
@@ -230,6 +233,13 @@ class janus_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"page_rules"
])
#直播poling循环
def
polling
(
self
,
stream_id
,
is_first
):
self
.
params
[
"stream_id"
]
=
stream_id
self
.
params
[
"is_first"
]
=
is_first
return
self
.
api_send
(
self
.
data
[
"polling"
])
if
__name__
==
'__main__'
:
...
...
@@ -303,6 +313,7 @@ if __name__ == '__main__':
# print(janus_request().beauty_card_refund_submit("102813852173916", 3, "个人身体原因", 0))
print
(
janus_request
()
.
beauty_card_order_detail
(
102247770691611
))
# print(janus_request().product_my_list(0, 0))
#直播-点击【设置封面】
print
(
"直播-点击【设置封面】"
)
print
(
janus_request
()
.
page_rules
(
"744.2"
,
"beijing"
,
"post_add_pic"
))
...
...
all_backend_api/janus_request.yaml
View file @
2986b311
...
...
@@ -312,3 +312,15 @@ feed_service:
data
:
{}
json
:
{}
isLogin
:
0
#直播polling循环
polling
:
method
:
get
url
:
/api/janus/live/polling
params
:
stream_id
:
${stream_id}
is_first
:
${is_first}
data
:
{}
json
:
{}
path_setting.py
View file @
2986b311
...
...
@@ -524,5 +524,9 @@ FREE_RECRUIT_LIST = os.path.join(BASE_DIR, "backend_auto/test_backend_data/feed_
PAGE_RULES_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"janus_request.yaml"
)
PAGE_RULES
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/janus_data"
,
"page_rules.yaml"
)
#直播polling循环
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"
)
if
__name__
==
'__main__'
:
print
(
"=========="
,
LIVEYAML_CONFIG
)
test_backend_case/janus_case/test_polling.py
0 → 100644
View file @
2986b311
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.janus_request
import
janus_request
class
TestPolling
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
POLLING
)
polling_case
,
polling_data
=
get_ids
(
data
,
"polling"
)
print
(
'polling_data:'
,
polling_data
)
@pytest.mark.parametrize
(
"param"
,
polling_data
,
ids
=
polling_case
)
def
test_polling
(
self
,
param
):
print
(
param
)
r
=
janus_request
()
.
polling
(
param
[
"stream_id"
],
param
[
"is_first"
])
print
(
r
)
if
r
[
"error"
]
==
0
:
assert
r
[
"data"
][
"delay"
]
==
param
[
"assert"
]
\ No newline at end of file
test_backend_data/janus_data/polling.yaml
0 → 100644
View file @
2986b311
#polling_vfc:
polling
:
#循环成功
-
case
:
"
polling循环成功"
stream_id
:
"
2334"
is_first
:
"
0"
assert
:
10
\ 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