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
9f9a6ddd
Commit
9f9a6ddd
authored
Aug 16, 2021
by
张慧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复品类聚合页报错
parent
073ceccb
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
9 deletions
+6
-9
janus_request.py
all_backend_api/janus_request.py
+1
-2
janus_request.yaml
all_backend_api/janus_request.yaml
+0
-1
test_tag_service.py
test_backend_case/janus_case/test_tag_service.py
+5
-5
tag_service.yaml
test_backend_data/janus_data/tag_service.yaml
+0
-1
No files found.
all_backend_api/janus_request.py
View file @
9f9a6ddd
...
@@ -97,12 +97,11 @@ class janus_request(BaseRequest):
...
@@ -97,12 +97,11 @@ class janus_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"service_promotion_related_service_data"
])
return
self
.
api_send
(
self
.
data
[
"service_promotion_related_service_data"
])
# 品类聚合页面商品列表
# 品类聚合页面商品列表
def
tag_service
(
self
,
size
,
tag_ids
,
offset
,
tag_id
,
version
,
device_id
):
def
tag_service
(
self
,
size
,
tag_ids
,
offset
,
version
,
device_id
):
print
(
"fgx"
)
print
(
"fgx"
)
self
.
params
[
'size'
]
=
size
self
.
params
[
'size'
]
=
size
self
.
params
[
'tag_ids'
]
=
tag_ids
self
.
params
[
'tag_ids'
]
=
tag_ids
self
.
params
[
'offset'
]
=
offset
self
.
params
[
'offset'
]
=
offset
self
.
params
[
'tag_id'
]
=
tag_id
self
.
params
[
'version'
]
=
version
self
.
params
[
'version'
]
=
version
self
.
params
[
'device_id'
]
=
device_id
self
.
params
[
'device_id'
]
=
device_id
...
...
all_backend_api/janus_request.yaml
View file @
9f9a6ddd
...
@@ -92,7 +92,6 @@ tag_service:
...
@@ -92,7 +92,6 @@ tag_service:
size
:
${size}
size
:
${size}
tag_ids
:
${tag_ids}
tag_ids
:
${tag_ids}
offset
:
${offset}
offset
:
${offset}
tag_id
:
${tag_id}
version
:
${version}
version
:
${version}
device_id
:
${device_id}
device_id
:
${device_id}
data
:
{
}
data
:
{
}
...
...
test_backend_case/janus_case/test_tag_service.py
View file @
9f9a6ddd
...
@@ -8,13 +8,13 @@ from all_backend_api.janus_request import janus_request
...
@@ -8,13 +8,13 @@ from all_backend_api.janus_request import janus_request
class
TestTagService
:
class
TestTagService
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
TAG_SERVICE
)
data
=
BaseRequest
()
.
api_load
(
path_setting
.
TAG_SERVICE
)
tag
service_case
,
tag
service_data
=
get_ids
(
data
,
"tag_service"
)
tag
_service_case
,
tag_
service_data
=
get_ids
(
data
,
"tag_service"
)
@pytest.mark.parametrize
(
"param"
,
tag
service_data
,
ids
=
tag
service_case
)
@pytest.mark.parametrize
(
"param"
,
tag
_service_data
,
ids
=
tag_
service_case
)
def
test_tag_service
(
self
,
param
):
def
test_tag_service
(
self
,
param
):
r
=
janus_request
()
.
tag_service
(
param
[
"size"
],
param
[
"tag_ids"
],
param
[
"offset"
],
param
[
"tag_id"
],
param
[
"version"
],
param
[
"device_id"
])
r
=
janus_request
()
.
tag_service
(
param
[
"size"
],
param
[
"tag_ids"
],
param
[
"offset"
],
#print('feng=', r)
param
[
"version"
],
param
[
"device_id"
])
# print('feng=', r)
if
r
[
"error"
]
==
0
:
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert"
]
assert
r
[
"error"
]
==
param
[
"assert"
]
assert
r
[
"data"
][
"offset"
]
==
param
[
"offset"
]
test_backend_data/janus_data/tag_service.yaml
View file @
9f9a6ddd
...
@@ -6,7 +6,6 @@ tag_service:
...
@@ -6,7 +6,6 @@ tag_service:
size
:
10
size
:
10
tag_ids
:
[]
tag_ids
:
[]
offset
:
0
offset
:
0
tag_id
:
version
:
7.43.0
version
:
7.43.0
device_id
:
869378034450718
device_id
:
869378034450718
...
...
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