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
078e97eb
Commit
078e97eb
authored
Aug 20, 2021
by
林颖
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
医生后台--创建医生&发送验证码
parent
4c76a2d6
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
133 additions
and
1 deletion
+133
-1
web_request.py
all_doctor_api/web_request.py
+17
-0
web_request.yaml
all_doctor_api/web_request.yaml
+32
-0
path_setting.py
path_setting.py
+7
-1
test_doctor_doctorlist.py
test_doctor_case/web_case/test_doctor_doctorlist.py
+19
-0
test_doctor_verificationcode.py
test_doctor_case/web_case/test_doctor_verificationcode.py
+21
-0
doctor_doctorlist.yaml
test_doctor_data/web_data/doctor_doctorlist.yaml
+14
-0
doctor_verificationcode.yaml
test_doctor_data/web_data/doctor_verificationcode.yaml
+23
-0
No files found.
all_doctor_api/web_request.py
View file @
078e97eb
...
@@ -15,6 +15,23 @@ class web_request(BaseRequest):
...
@@ -15,6 +15,23 @@ class web_request(BaseRequest):
def
doctor_submechanisms
(
self
)
:
def
doctor_submechanisms
(
self
)
:
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"doctor_submechanisms"
])
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"doctor_submechanisms"
])
# 医生后台-商户管理-医生管理列表
def
doctor_doctorlist
(
self
,
doctor_type
):
self
.
params
[
"doctor_type"
]
=
doctor_type
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"doctor_doctorlist"
])
# 医生后台-商户管理-医生管理列表--创建医生发送验证码
def
doctor_verificationcode
(
self
,
phone
):
self
.
params
[
"phone"
]
=
phone
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"doctor_verificationcode"
])
# 医生后台-商户管理-医生管理列表--创建医生上传头像图片
def
file_upload
(
self
,
phone
):
self
.
params
[
"phone"
]
=
phone
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"file_upload"
])
def
service_offline
(
self
,
id
,
csrfmiddlewaretoken
):
def
service_offline
(
self
,
id
,
csrfmiddlewaretoken
):
self
.
params
[
"id"
]
=
id
self
.
params
[
"id"
]
=
id
self
.
params
[
"csrfmiddlewaretoken"
]
=
csrfmiddlewaretoken
self
.
params
[
"csrfmiddlewaretoken"
]
=
csrfmiddlewaretoken
...
...
all_doctor_api/web_request.yaml
View file @
078e97eb
...
@@ -217,3 +217,34 @@ cpc_community_promote_flows:
...
@@ -217,3 +217,34 @@ cpc_community_promote_flows:
data
:
{}
data
:
{}
json
:
{}
json
:
{}
isLogin
:
1
#需要登录
isLogin
:
1
#需要登录
#医生后台-商户管理-医生管理列表
doctor_doctorlist
:
method
:
get
url
:
/api/web/doctor/doctorlist
params
:
doctor_type
:
${doctor_type}
data
:
{
}
json
:
{
}
isLogin
:
1
#需要登录
#医生后台-商户管理-医生管理列表--创建医生发送验证码
doctor_verificationcode
:
method
:
post
url
:
/api/web/doctor/verificationcode
params
:
{}
data
:
phone
:
${phone}
json
:
{}
isLogin
:
1
#需要登录
#医生后台-商户管理-医生管理列表--创建医生上传头像图片
file_upload
:
method
:
post
url
:
/api/web/file/upload
params
:
{}
data
:
{}
json
:
{}
isLogin
:
1
#需要登录
\ No newline at end of file
path_setting.py
View file @
078e97eb
...
@@ -155,16 +155,22 @@ SIGN_EXCHANGED = os.path.join(BASE_DIR, "backend_auto/test_backend_data/user_dat
...
@@ -155,16 +155,22 @@ SIGN_EXCHANGED = os.path.join(BASE_DIR, "backend_auto/test_backend_data/user_dat
# 签到日历
# 签到日历
SIGN_CALENDAR
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"sign_calendar.yaml"
)
SIGN_CALENDAR
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"sign_calendar.yaml"
)
# 签到--其他 tab feed --也是总的 visual 配置项
# 签到--其他 tab feed --也是总的 visual 配置项
VISUAL_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"visual_request.yaml"
)
VISUAL_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"visual_request.yaml"
)
VISUAL_SERVICE_LIST
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/visual_data"
,
"service_list.yaml"
)
VISUAL_SERVICE_LIST
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/visual_data"
,
"service_list.yaml"
)
#搜索首页-热门搜索
#搜索首页-热门搜索
KEYWORDS_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"search_request.yaml"
)
KEYWORDS_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"search_request.yaml"
)
KEYWORDS
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/search_data"
,
"keywords.yaml"
)
KEYWORDS
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/search_data"
,
"keywords.yaml"
)
# 医生后台--医生后台-商户管理-医生管理列表
DOCTORLIST
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web_data"
,
"doctor_doctorlist.yaml"
)
# 医生后台-商户管理-医生管理列表--创建医生发送验证码
DOCTOR_VERIIFICATIONCODE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web_data"
,
"doctor_verificationcode.yaml"
)
#医生后台-我的商品
#医生后台-我的商品
SERVICE_DATA
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web2_data"
,
"service_list.yaml"
)
SERVICE_DATA
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web2_data"
,
"service_list.yaml"
)
...
...
test_doctor_case/web_case/test_doctor_doctorlist.py
0 → 100644
View file @
078e97eb
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_doctor_api.web_request
import
web_request
class
TestDoctorDoctorlist
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
DOCTORLIST
)
doctor_doctorlist_case
,
doctor_doctorlist_data
=
get_ids
(
data
,
"doctor_doctorlist"
)
@pytest.mark.parametrize
(
"param"
,
doctor_doctorlist_data
,
ids
=
doctor_doctorlist_case
)
def
test_doctor_doctorlist
(
self
,
param
):
'''医生列表'''
r
=
web_request
()
.
doctor_doctorlist
(
param
[
'doctor_type'
])
assert
r
[
"error"
]
==
0
assert
r
[
"data"
][
'doctors'
]
is
not
None
and
type
(
r
[
"data"
][
'doctors'
])
is
list
test_doctor_case/web_case/test_doctor_verificationcode.py
0 → 100644
View file @
078e97eb
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_doctor_api.web_request
import
web_request
class
TestDoctorVerificationcode
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
DOCTOR_VERIIFICATIONCODE
)
doctor_verificationcode_case
,
doctor_verificationcode_data
=
get_ids
(
data
,
"doctor_verificationcode"
)
@pytest.mark.parametrize
(
"param"
,
doctor_verificationcode_data
,
ids
=
doctor_verificationcode_case
)
def
test_doctor_verificationcode
(
self
,
param
):
'''医生列表'''
r
=
web_request
()
.
doctor_verificationcode
(
param
[
'phone'
])
assert
r
[
"error"
]
==
0
assert
r
[
'data'
][
'code'
]
==
param
[
"code"
]
assert
r
[
'data'
][
'message'
]
==
param
[
"message"
]
test_doctor_data/web_data/doctor_doctorlist.yaml
0 → 100644
View file @
078e97eb
doctor_doctorlist
:
#医生后台-商户管理-医生管理列表case
-
case
:
"
医生后台-商户管理-医生管理列表--已创建"
assert_size
:
10
assert
:
10
doctor_type
:
0
-
case
:
"
医生后台-商户管理-医生管理列表--审核中"
assert_size
:
10
assert
:
10
doctor_type
:
1
\ No newline at end of file
test_doctor_data/web_data/doctor_verificationcode.yaml
0 → 100644
View file @
078e97eb
doctor_verificationcode
:
#医生后台-商户管理-医生管理列表--创建医生--医生发送验证码case
-
case
:
"
医生后台-商户管理-医生管理列表--创建医生--医生发送验证码--发送不存在的用户的手机号"
assert_size
:
10
assert
:
10
phone
:
12341234124
message
:
'
请先用该号码在更美pc站或者app注册更美用户账号!'
code
:
1
-
case
:
"
医生后台-商户管理-医生管理列表--创建医生--医生发送验证码--发送存在的用户但是已经是医生账号的手机号"
assert_size
:
10
assert
:
10
phone
:
12345654321
message
:
'
该手机号已经注册为医生或机构,请更换手机号重新注册!'
code
:
1
-
case
:
"
医生后台-商户管理-医生管理列表--创建医生--医生发送验证码--发送存在的用户但不是医生账号的手机号"
assert_size
:
10
assert
:
10
phone
:
12341234121
message
:
'
发送成功!'
code
:
0
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