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
a3c5d408
Commit
a3c5d408
authored
Aug 16, 2021
by
林颖
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加接口默认·参数
parent
19ce88a2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
8 deletions
+19
-8
feed_request.py
all_backend_api/feed_request.py
+2
-1
feed_request.yaml
all_backend_api/feed_request.yaml
+1
-0
test_index_v9.py
test_backend_case/feed_case/test_index_v9.py
+11
-2
index_v9.yaml
test_backend_data/feed_data/index_v9.yaml
+5
-5
No files found.
all_backend_api/feed_request.py
View file @
a3c5d408
...
@@ -10,10 +10,11 @@ class feed_request(BaseRequest):
...
@@ -10,10 +10,11 @@ class feed_request(BaseRequest):
self
.
data
=
self
.
api_load
(
path_setting
.
FREE_RECRUIT_BANNER_CONFIG
)
self
.
data
=
self
.
api_load
(
path_setting
.
FREE_RECRUIT_BANNER_CONFIG
)
def
index_v9
(
self
,
tabtype
,
version
,
current_city_id
):
def
index_v9
(
self
,
tabtype
,
version
,
current_city_id
,
tab_id
=
'0'
):
self
.
params
[
"tabtype"
]
=
tabtype
self
.
params
[
"tabtype"
]
=
tabtype
self
.
params
[
"version"
]
=
version
self
.
params
[
"version"
]
=
version
self
.
params
[
"current_city_id"
]
=
current_city_id
self
.
params
[
"current_city_id"
]
=
current_city_id
self
.
params
[
"tab_id"
]
=
tab_id
return
self
.
api_send
(
self
.
data
[
"index_v9"
])
return
self
.
api_send
(
self
.
data
[
"index_v9"
])
...
...
all_backend_api/feed_request.yaml
View file @
a3c5d408
...
@@ -5,6 +5,7 @@ index_v9:
...
@@ -5,6 +5,7 @@ index_v9:
tabtype
:
${tabtype}
tabtype
:
${tabtype}
version
:
${version}
version
:
${version}
current_city_id
:
${current_city_id}
current_city_id
:
${current_city_id}
tab_id
:
${tab_id}
data
:
data
:
json
:
{}
json
:
{}
isLogin
:
1
isLogin
:
1
...
...
test_backend_case/feed_case/test_index_v9.py
View file @
a3c5d408
...
@@ -12,9 +12,18 @@ class TestIndexV9:
...
@@ -12,9 +12,18 @@ class TestIndexV9:
@pytest.mark.parametrize
(
"param"
,
indexv9_data
,
ids
=
indexv9_case
)
@pytest.mark.parametrize
(
"param"
,
indexv9_data
,
ids
=
indexv9_case
)
def
test_index_v9
(
self
,
param
):
def
test_index_v9
(
self
,
param
):
r
=
feed_request
()
.
index_v9
(
param
[
"tabtype"
],
param
[
"version"
],
param
[
"current_city_id"
])
if
param
[
'tabtype'
]
==
"customize_commodity"
:
if
r
[
"error"
]
==
0
:
r
=
feed_request
()
.
index_v9
(
param
[
"tabtype"
],
param
[
"version"
],
param
[
"current_city_id"
],
param
[
'tab_id'
])
assert
r
[
"error"
]
==
0
features
=
r
.
get
(
"data"
)
.
get
(
"features"
,[])
features
=
r
.
get
(
"data"
)
.
get
(
"features"
,[])
assert
len
(
features
)
>
param
[
"assert"
]
assert
len
(
features
)
>
param
[
"assert"
]
else
:
r
=
feed_request
()
.
index_v9
(
param
[
"tabtype"
],
param
[
"version"
],
param
[
"current_city_id"
])
if
r
[
"error"
]
==
0
:
features
=
r
.
get
(
"data"
)
.
get
(
"features"
,[])
assert
len
(
features
)
>
param
[
"assert"
]
test_backend_data/feed_data/index_v9.yaml
View file @
a3c5d408
...
@@ -7,14 +7,15 @@ index_v9:
...
@@ -7,14 +7,15 @@ index_v9:
version
:
"
7.42.2"
version
:
"
7.42.2"
assert
:
0
assert
:
0
-
case
:
"
推荐内容/接口
请求成功,有数据返回"
-
case
:
"
直播tab
请求成功,有数据返回"
current_city_id
:
"
beijing"
current_city_id
:
"
beijing"
tabtype
:
"
home_video"
tabtype
:
"
home_video"
version
:
"
7.42.2"
version
:
"
7.42.2"
assert
:
0
assert
:
0
-
case
:
"
直播tab接口请求成功,有数据返回
"
-
case
:
"
推荐内容/接口接口请求成功,有数据返回
"
current_city_id
:
"
beijing"
current_city_id
:
"
beijing"
tabtype
:
"
customize_commodity"
tabtype
:
"
customize_commodity"
version
:
"
7.42.2"
version
:
7.47.1
assert
:
0
assert
:
0
\ No newline at end of file
tab_id
:
96
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