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
305c64f5
Commit
305c64f5
authored
May 20, 2021
by
张慧
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'common_dev' into zhanghui_dev
parents
619c5f3a
8daadceb
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
138 additions
and
22 deletions
+138
-22
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
+24
-3
search_request.yaml
all_backend_api/search_request.yaml
+18
-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
+27
-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
+40
-0
No files found.
all_backend_api/janus_request.py
View file @
305c64f5
...
...
@@ -31,7 +31,7 @@ class janus_request(BaseRequest):
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
#设备号
...
...
@@ -44,6 +44,8 @@ class janus_request(BaseRequest):
self
.
params
[
'version'
]
=
version
#请求的页数 0,10,20
self
.
params
[
'offset'
]
=
offset
# 单页请求数量
self
.
params
[
'size'
]
=
size
return
self
.
api_send
(
self
.
data
[
'hospital_search'
])
...
...
all_backend_api/janus_request.yaml
View file @
305c64f5
...
...
@@ -23,6 +23,7 @@ hospital_search:
current_city_id
:
${current_city_id}
version
:
${version}
offset
:
${offset}
size
:
${size}
data
:
{
}
json
:
{
}
...
...
all_backend_api/search_request.py
View file @
305c64f5
...
...
@@ -4,10 +4,31 @@ from in_common.base_request import BaseRequest
class
search_request
(
BaseRequest
):
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
):
self
.
params
[
"current_city_id"
]
=
current_city_id
self
.
params
[
"search_tab"
]
=
search_tab
return
self
.
api_send
(
self
.
data
[
"keywords"
])
\ No newline at end of file
return
self
.
api_send
(
self
.
data
[
"keywords"
])
#搜索结果页-医生/医院tab
def
content_v6
(
self
,
query
,
device_id
,
current_city_id
,
version
,
is_first
,
tab_type
,
offset
,
size
):
#搜索词
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
# 请求的size
self
.
params
[
'size'
]
=
size
return
self
.
api_send
(
self
.
data
[
"content_v6"
])
\ No newline at end of file
all_backend_api/search_request.yaml
View file @
305c64f5
...
...
@@ -7,4 +7,21 @@ keywords:
current_city_id
:
${current_city_id}
search_tab
:
${search_tab}
data
:
{}
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}
size
:
${size}
data
:
{}
json
:
{}
\ No newline at end of file
path_setting.py
View file @
305c64f5
...
...
@@ -137,6 +137,10 @@ SERVICE_FAVOR = os.path.join(BASE_DIR, "backend_auto/test_backend_data/service_d
SERVICES_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"services_request.yaml"
)
SERVICES_SHARE_DATA
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/services_data"
,
"share_data.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"
)
#品类聚合页面商品列表
TAG_SERVICE_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"janus_request.yaml"
)
...
...
test_backend_case/janus_case/test_hospital_search.py
View file @
305c64f5
...
...
@@ -13,9 +13,9 @@ class TestHospitalSearch:
@pytest.mark.parametrize
(
"param"
,
hospitalsearch_data
,
ids
=
hospitalsearch_case
)
def
test_hospital_search
(
self
,
param
):
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
:
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
:
assert
r
[
"message"
]
==
param
[
"assert"
]
test_backend_case/search_case/test_content_v6.py
0 → 100644
View file @
305c64f5
#搜索结果页-医生/医院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"
],
param
[
"size"
])
if
r
[
"error"
]
==
0
:
if
param
[
"tab_type"
]
==
3
:
assert
r
[
"data"
][
"hospitals"
][
0
][
"name"
]
==
param
[
"assert"
]
if
param
[
"tab_type"
]
==
4
:
assert
r
[
"data"
][
"doctors"
][
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 @
305c64f5
hospital_search
:
-
#医院主页搜索---搜索成功,有数据召回
case
:
"
医院主页搜索---搜索成功,
有数据召回
"
case
:
"
医院主页搜索---搜索成功,
当前搜索词召回的对应商品不少于5个,不展示热卖推荐商品
"
query
:
"
玻尿酸"
device_id
:
"
1321222222222222135"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
current_city_id
:
"
beijing"
version
:
"
742.2"
offset
:
"
0"
size
:
"
10"
assert1
:
0
assert2
:
1
0
assert2
:
0
-
#医院主页搜索---搜索成功,无数据召回
case
:
"
医院主页搜索---搜索成功,
无数据召回
"
case
:
"
医院主页搜索---搜索成功,
当前搜索词下无对应商品,召回热卖推荐商品
"
query
:
"
美白针"
device_id
:
"
1321222222222222135"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
current_city_id
:
"
beijing"
version
:
"
742.2"
offset
:
"
0"
size
:
"
10"
assert1
:
10
assert2
:
0
assert2
:
1
0
# -
# #医院主页搜索---搜索成功,无数据召回
# case: "医院主页搜索---搜索成功,无数据召回"
# query: "瘦脸针"
# device_id: "1321222222222222135"
# hospital_id: "96ea37eef81d11e692f800163e000a4a"
# current_city_id: "beijing"
# version: "742.2"
# offset: "0"
# assert1: 0
# assert2: 0
\ No newline at end of file
-
#医院主页搜索---搜索成功,无数据召回
case
:
"
医院主页搜索---搜索成功,当前搜索词召回的对应商品少于5个,展示热卖推荐商品"
query
:
"
瘦脸针"
device_id
:
"
1321222222222222135"
hospital_id
:
"
96ea37eef81d11e692f800163e000a4a"
current_city_id
:
"
beijing"
version
:
"
742.2"
offset
:
"
0"
size
:
"
10"
assert1
:
10
assert2
:
10
\ No newline at end of file
test_backend_data/search_data/content_v6.yaml
0 → 100644
View file @
305c64f5
content_v6
:
-
#医院tab-捜索医院全称,捜索结果只召回该医院
case
:
"
医院tab-捜索医院全称,捜索结果只召回该医院"
query
:
"
北京画美医院"
device_id
:
"
97B6764B-2135-4761-9911-701C38CBC272"
current_city_id
:
"
beijing"
version
:
"
742.2"
is_first
:
"
0"
tab_type
:
"
3"
offset
:
"
0"
size
:
"
10"
assert
:
北京画美医院
-
#医院tab-捜索医院简称,捜索结果只召回该医院
case
:
"
医院tab-捜索医院简称,捜索结果只召回该医院"
query
:
"
北京画美"
device_id
:
"
97B6764B-2135-4761-9911-701C38CBC272"
current_city_id
:
"
beijing"
version
:
"
742.2"
is_first
:
"
0"
tab_type
:
"
3"
offset
:
"
0"
size
:
"
10"
assert
:
北京画美医院
-
#医生tab-捜索医生姓名,捜索结果只召回该医生
case
:
"
医生tab-捜索医生姓名,捜索结果只召回该医生"
query
:
"
崔鑫"
device_id
:
"
97B6764B-2135-4761-9911-701C38CBC272"
current_city_id
:
"
beijing"
version
:
"
742.2"
is_first
:
"
0"
tab_type
:
"
4"
offset
:
"
0"
size
:
"
10"
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