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
d1f02f59
Commit
d1f02f59
authored
May 11, 2021
by
张慧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
医生主页商品列表接口
parent
7af4a313
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
56 additions
and
0 deletions
+56
-0
doctor_v2_request.py
all_backend_api/doctor_v2_request.py
+18
-0
doctor_v2_request.yaml
all_backend_api/doctor_v2_request.yaml
+12
-0
path_setting.py
path_setting.py
+3
-0
__init__.py
test_backend_case/doctor_v2_case/__init__.py
+0
-0
test_services.py
test_backend_case/doctor_v2_case/test_services.py
+18
-0
__init__.py
test_backend_data/doctor_v2_data/__init__.py
+0
-0
services.yaml
test_backend_data/doctor_v2_data/services.yaml
+5
-0
No files found.
all_backend_api/doctor_v2_request.py
0 → 100644
View file @
d1f02f59
import
path_setting
from
in_common.base_request
import
BaseRequest
class
doctor_v2_request
(
BaseRequest
):
def
__init__
(
self
):
self
.
data
=
self
.
api_load
(
path_setting
.
DOCTOR_V2_CONFIG
)
#医生主页商品列表
def
services
(
self
):
return
self
.
api_send
(
self
.
data
[
"services"
])
if
__name__
==
'__main__'
:
#打印医生主页商品列表接口返回
print
(
doctor_v2_request
()
.
services
())
\ No newline at end of file
all_backend_api/doctor_v2_request.yaml
0 → 100644
View file @
d1f02f59
#医生主页商品列表
services
:
method
:
get
url
:
/api/doctor_v2/5bd9f05cad51403d853ba8c881989e23/services
params
:
offset
:
0
show_tag_distro
:
1
tag_id
:
all
size
:
10
data
:
{}
json
:
{}
\ No newline at end of file
path_setting.py
View file @
d1f02f59
...
@@ -71,6 +71,9 @@ DOCTOR_ARTICLE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/doctor_d
...
@@ -71,6 +71,9 @@ DOCTOR_ARTICLE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/doctor_d
DOCTOR_DETAIL
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/doctor_data"
,
"detail.yaml"
)
DOCTOR_DETAIL
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/doctor_data"
,
"detail.yaml"
)
#医生主页案例列表
#医生主页案例列表
DOCTOR_DIARY
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/doctor_data"
,
"diary.yaml"
)
DOCTOR_DIARY
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/doctor_data"
,
"diary.yaml"
)
#医生主页商品列表
DOCTOR_V2_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"doctor_v2_request.yaml"
)
DOCTOR_V2_SERVICE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/doctor_v2_data"
,
"services.yaml"
)
#医生/医院主页-问答列表
#医生/医院主页-问答列表
USER_ANSWER_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"user_request.yaml"
)
USER_ANSWER_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"user_request.yaml"
)
USER_ANSWER
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"answer.yaml"
)
USER_ANSWER
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"answer.yaml"
)
...
...
test_backend_case/doctor_v2_case/__init__.py
0 → 100644
View file @
d1f02f59
test_backend_case/doctor_v2_case/test_services.py
0 → 100644
View file @
d1f02f59
import
pytest
from
all_backend_api.doctor_v2_request
import
doctor_v2_request
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
class
TestServices
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
DOCTOR_V2_SERVICE
)
services_case
,
services_data
=
get_ids
(
data
,
"services"
)
@pytest.mark.parametrize
(
"param"
,
services_data
,
ids
=
services_case
)
def
test_services
(
self
,
param
):
r
=
doctor_v2_request
()
.
services
()
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert_error"
]
test_backend_data/doctor_v2_data/__init__.py
0 → 100644
View file @
d1f02f59
test_backend_data/doctor_v2_data/services.yaml
0 → 100644
View file @
d1f02f59
services
:
-
case
:
"
校验接口返回成功case"
assert_error
:
0
\ 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