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
93449d7d
Commit
93449d7d
authored
May 18, 2021
by
aha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit search_Data 2021-5-18
parent
97c8e6db
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
104 additions
and
20 deletions
+104
-20
janus_request.py
all_backend_api/janus_request.py
+3
-1
janus_request.yaml
all_backend_api/janus_request.yaml
+1
-0
search_request.py
all_backend_api/search_request.py
+21
-1
search_request.yaml
all_backend_api/search_request.yaml
+17
-0
path_setting.py
path_setting.py
+4
-0
test_hospital_search.py
test_backend_case/janus_case/test_hospital_search.py
+2
-2
test_content_v6.py
test_backend_case/search_case/test_content_v6.py
+24
-0
hospital_search.yaml
test_backend_data/janus_data/hospital_search.yaml
+19
-16
content_v6.yaml
test_backend_data/search_data/content_v6.yaml
+13
-0
No files found.
all_backend_api/janus_request.py
View file @
93449d7d
...
@@ -27,7 +27,7 @@ class janus_request(BaseRequest):
...
@@ -27,7 +27,7 @@ class janus_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
'content_v7'
])
return
self
.
api_send
(
self
.
data
[
'content_v7'
])
#医院主页搜索
#医院主页搜索
def
hospital_search
(
self
,
query
,
device_id
,
hospital_id
,
current_city_id
,
version
,
offset
):
def
hospital_search
(
self
,
query
,
device_id
,
hospital_id
,
current_city_id
,
version
,
offset
,
size
):
#搜索词
#搜索词
self
.
params
[
'query'
]
=
query
self
.
params
[
'query'
]
=
query
#设备号
#设备号
...
@@ -40,6 +40,8 @@ class janus_request(BaseRequest):
...
@@ -40,6 +40,8 @@ class janus_request(BaseRequest):
self
.
params
[
'version'
]
=
version
self
.
params
[
'version'
]
=
version
#请求的页数 0,10,20
#请求的页数 0,10,20
self
.
params
[
'offset'
]
=
offset
self
.
params
[
'offset'
]
=
offset
# 单页请求数量
self
.
params
[
'size'
]
=
size
return
self
.
api_send
(
self
.
data
[
'hospital_search'
])
return
self
.
api_send
(
self
.
data
[
'hospital_search'
])
...
...
all_backend_api/janus_request.yaml
View file @
93449d7d
...
@@ -23,6 +23,7 @@ hospital_search:
...
@@ -23,6 +23,7 @@ hospital_search:
current_city_id
:
${current_city_id}
current_city_id
:
${current_city_id}
version
:
${version}
version
:
${version}
offset
:
${offset}
offset
:
${offset}
size
:
${size}
data
:
{
}
data
:
{
}
json
:
{
}
json
:
{
}
...
...
all_backend_api/search_request.py
View file @
93449d7d
...
@@ -4,10 +4,29 @@ from in_common.base_request import BaseRequest
...
@@ -4,10 +4,29 @@ from in_common.base_request import BaseRequest
class
search_request
(
BaseRequest
):
class
search_request
(
BaseRequest
):
def
__init__
(
self
):
def
__init__
(
self
):
self
.
data
=
self
.
api_load
(
path_setting
.
KEYWORDS_CONFIG
)
self
.
data
=
self
.
api_load
(
path_setting
.
KEYWORDS_CONFIG
)
#keywords路径
self
.
data
=
self
.
api_load
(
path_setting
.
CONTENTV6_CONFIG
)
#content_v6路径
#搜索首页-热门搜索模块(点击搜索框即调接口)
#搜索首页-热门搜索模块(点击搜索框即调接口)
def
keywords
(
self
,
current_city_id
,
search_tab
):
def
keywords
(
self
,
current_city_id
,
search_tab
):
self
.
params
[
"current_city_id"
]
=
current_city_id
self
.
params
[
"current_city_id"
]
=
current_city_id
self
.
params
[
"search_tab"
]
=
search_tab
self
.
params
[
"search_tab"
]
=
search_tab
return
self
.
api_send
(
self
.
data
[
"keywords"
])
return
self
.
api_send
(
self
.
data
[
"keywords"
])
#搜索结果页-医生/医院tab
def
content_v6
(
self
,
query
,
device_id
,
current_city_id
,
version
,
is_first
,
tab_type
,
offset
):
#搜索词
self
.
params
[
'query'
]
=
query
#设备号
self
.
params
[
'device_id'
]
=
device_id
#当前城市
self
.
params
[
'current_city_id'
]
=
current_city_id
#APP版本
self
.
params
[
'version'
]
=
version
#是否为第一次请求
self
.
params
[
'is_first'
]
=
is_first
#类型
self
.
params
[
'tab_type'
]
=
tab_type
#请求的页数 0,10,20
self
.
params
[
'offset'
]
=
offset
return
self
.
api_send
(
self
.
data
[
"content_v6"
])
\ No newline at end of file
all_backend_api/search_request.yaml
View file @
93449d7d
...
@@ -8,3 +8,19 @@ keywords:
...
@@ -8,3 +8,19 @@ keywords:
search_tab
:
${search_tab}
search_tab
:
${search_tab}
data
:
{}
data
:
{}
json
:
{}
json
:
{}
content_v6
:
method
:
get
#接口地址
url
:
/api/search/v6/content
#列出所有定义函数时的参数
params
:
query
:
${query}
device_id
:
${device_id}
current_city_id
:
${current_city_id}
version
:
${version}
is_first
:
${is_first}
tab_type
:
${tab_type}
offset
:
${offset}
data
:
{}
json
:
{}
\ No newline at end of file
path_setting.py
View file @
93449d7d
...
@@ -106,6 +106,10 @@ AUTO_MSG = os.path.join(BASE_DIR, "backend_auto/test_backend_data/im_data", "aut
...
@@ -106,6 +106,10 @@ AUTO_MSG = os.path.join(BASE_DIR, "backend_auto/test_backend_data/im_data", "aut
UNREAD_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"notification_request.yaml"
)
UNREAD_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"notification_request.yaml"
)
UNREAD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/notification_data"
,
"unread.yaml"
)
UNREAD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/notification_data"
,
"unread.yaml"
)
#捜索结果页-医生/医院tab
CONTENTV6_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"search_request.yaml"
)
CONTENTV6
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/search_data"
,
"content_v6.yaml"
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
test_backend_case/janus_case/test_hospital_search.py
View file @
93449d7d
...
@@ -13,9 +13,9 @@ class TestHospitalSearch:
...
@@ -13,9 +13,9 @@ class TestHospitalSearch:
@pytest.mark.parametrize
(
"param"
,
hospitalsearch_data
,
ids
=
hospitalsearch_case
)
@pytest.mark.parametrize
(
"param"
,
hospitalsearch_data
,
ids
=
hospitalsearch_case
)
def
test_hospital_search
(
self
,
param
):
def
test_hospital_search
(
self
,
param
):
print
(
param
[
'query'
])
print
(
param
[
'query'
])
r
=
janus_request
()
.
hospital_search
(
param
[
"query"
],
param
[
"device_id"
],
param
[
"hospital_id"
],
param
[
"current_city_id"
],
param
[
"version"
],
param
[
"offset"
])
r
=
janus_request
()
.
hospital_search
(
param
[
"query"
],
param
[
"device_id"
],
param
[
"hospital_id"
],
param
[
"current_city_id"
],
param
[
"version"
],
param
[
"offset"
]
,
param
[
"size"
]
)
if
r
[
"error"
]
==
0
:
if
r
[
"error"
]
==
0
:
assert
len
(
r
[
"data"
][
"search_skus"
])
!=
param
[
"assert1"
]
assert
len
(
r
[
"data"
][
"search_skus"
])
!=
param
[
"assert1"
]
assert
len
(
r
[
"data"
][
"
search
_skus"
])
==
param
[
"assert2"
]
assert
len
(
r
[
"data"
][
"
remai
_skus"
])
==
param
[
"assert2"
]
if
r
[
"error"
]
==
1
:
if
r
[
"error"
]
==
1
:
assert
r
[
"message"
]
==
param
[
"assert"
]
assert
r
[
"message"
]
==
param
[
"assert"
]
test_backend_case/search_case/test_content_v6.py
0 → 100644
View file @
93449d7d
#搜索结果页-医生/医院tab
import
pytest
import
path_setting
from
all_backend_api.search_request
import
search_request
from
ids_list
import
get_ids
from
in_common.base_request
import
BaseRequest
class
TestContentV6
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
CONTENTV6
)
contentv6_case
,
contentv6_data
=
get_ids
(
data
,
"content_v6"
)
@pytest.mark.parametrize
(
"param"
,
contentv6_data
,
ids
=
contentv6_case
)
def
test_content_v6
(
self
,
param
):
print
(
param
[
'query'
])
r
=
search_request
()
.
content_v6
(
param
[
"query"
],
param
[
"device_id"
],
param
[
"current_city_id"
],
param
[
"version"
],
param
[
"is_first"
],
param
[
"tab_type"
],
param
[
"offset"
])
if
r
[
"error"
]
==
0
:
assert
r
[
"data"
][
"hospitals"
][
0
][
"name"
]
==
param
[
"assert"
]
if
r
[
"error"
]
==
1
:
assert
r
[
"message"
]
==
param
[
"assert"
]
\ No newline at end of file
test_backend_data/janus_data/hospital_search.yaml
View file @
93449d7d
hospital_search
:
hospital_search
:
-
-
#医院主页搜索---搜索成功,有数据召回
#医院主页搜索---搜索成功,有数据召回
case
:
"
医院主页搜索---搜索成功,
有数据召回
"
case
:
"
医院主页搜索---搜索成功,
当前搜索词召回的对应商品不少于5个,不展示热卖推荐商品
"
query
:
"
玻尿酸"
query
:
"
玻尿酸"
device_id
:
"
1321222222222222135"
device_id
:
"
1321222222222222135"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
current_city_id
:
"
beijing"
current_city_id
:
"
beijing"
version
:
"
742.2"
version
:
"
742.2"
offset
:
"
0"
offset
:
"
0"
size
:
"
10"
assert1
:
0
assert1
:
0
assert2
:
1
0
assert2
:
0
-
-
#医院主页搜索---搜索成功,无数据召回
#医院主页搜索---搜索成功,无数据召回
case
:
"
医院主页搜索---搜索成功,
无数据召回
"
case
:
"
医院主页搜索---搜索成功,
当前搜索词下无对应商品,召回热卖推荐商品
"
query
:
"
美白针"
query
:
"
美白针"
device_id
:
"
1321222222222222135"
device_id
:
"
1321222222222222135"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
current_city_id
:
"
beijing"
current_city_id
:
"
beijing"
version
:
"
742.2"
version
:
"
742.2"
offset
:
"
0"
offset
:
"
0"
size
:
"
10"
assert1
:
10
assert1
:
10
assert2
:
0
assert2
:
1
0
# -
-
# #医院主页搜索---搜索成功,无数据召回
#医院主页搜索---搜索成功,无数据召回
# case: "医院主页搜索---搜索成功,无数据召回"
case
:
"
医院主页搜索---搜索成功,当前搜索词召回的对应商品少于5个,展示热卖推荐商品"
# query: "瘦脸针"
query
:
"
瘦脸针"
# device_id: "1321222222222222135"
device_id
:
"
1321222222222222135"
# hospital_id: "96ea37eef81d11e692f800163e000a4a"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
# current_city_id: "beijing"
current_city_id
:
"
beijing"
# version: "742.2"
version
:
"
742.2"
# offset: "0"
offset
:
"
0"
# assert1: 0
size
:
"
10"
# assert2: 0
assert1
:
10
\ No newline at end of file
assert2
:
10
\ No newline at end of file
test_backend_data/search_data/content_v6.yaml
0 → 100644
View file @
93449d7d
content_v6
:
-
#医院tab-捜索医院全称,捜索结果只召回该医院
case
:
"
医院tab-捜索医院全称,捜索结果只召回该医院"
query
:
"
北京画美医院"
device_id
:
"
97B6764B-2135-4761-9911-701C38CBC272"
current_city_id
:
"
beijing"
version
:
"
742.2"
is_first
:
"
1"
tab_type
:
"
3"
offset
:
"
0"
assert
:
北京画美医院
\ 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