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
d0aefb36
Commit
d0aefb36
authored
Aug 20, 2021
by
张淑琴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
获取配置
parent
b45ddeab
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
1 deletion
+45
-1
web3_request.py
all_doctor_api/web3_request.py
+8
-1
web3_request.yaml
all_doctor_api/web3_request.yaml
+10
-0
path_setting.py
path_setting.py
+2
-0
test_conversation_robot_get_message.py
...tor_case/web3_case/test_conversation_robot_get_message.py
+19
-0
conversation_robot_get_message.yaml
...doctor_data/web3_data/conversation_robot_get_message.yaml
+6
-0
No files found.
all_doctor_api/web3_request.py
View file @
d0aefb36
...
...
@@ -15,8 +15,14 @@ class web3_request(BaseRequest):
self
.
params
[
"message"
]
=
message
self
.
params
[
"csrfmiddlewaretoken"
]
=
csrfmiddlewaretoken
return
self
.
api_send
(
self
.
CONVERSATION_ROBOT
[
"conversation_robot_add_message"
])
def
conversation_robot_get_message
(
self
,
doctor_user_id
):
#获取私信机器人配置
self
.
params
[
"doctor_user_id"
]
=
doctor_user_id
return
self
.
api_send
(
self
.
CONVERSATION_ROBOT
[
"conversation_robot_get_message"
])
def
conversation_robot_clean_message
(
self
,
doctor_user_id
,
csrfmiddlewaretoken
):
#清空私信机器人配置
#
清空私信机器人配置
self
.
params
[
"doctor_user_id"
]
=
doctor_user_id
self
.
params
[
"csrfmiddlewaretoken"
]
=
csrfmiddlewaretoken
return
self
.
api_send
(
self
.
CONVERSATION_ROBOT
[
"conversation_robot_clean_message"
])
...
...
@@ -25,4 +31,5 @@ class web3_request(BaseRequest):
if
__name__
==
'__main__'
:
print
(
web3_request
()
.
conversation_robot_get_page
())
print
(
web3_request
()
.
conversation_robot_add_message
(
'{"default":[{"name":"","page_type":"0","tag_id":"","tag_name":"","doctor_user_id":602329,"msg_list":[{"id":168,"type":"0","content":"测试"}]}],"personality":[]}'
,
"qzDd1CYV1LngDvQaGjgq4gKoHOPyieHk"
))
print
(
web3_request
()
.
conversation_robot_get_message
(
"602329"
))
print
(
web3_request
()
.
conversation_robot_clean_message
(
"602329"
,
"qzDd1CYV1LngDvQaGjgq4gKoHOPyieHk"
))
all_doctor_api/web3_request.yaml
View file @
d0aefb36
...
...
@@ -19,6 +19,16 @@ conversation_robot_add_message:
json
:
{}
isLogin
:
1
#需要登录
conversation_robot_get_message
:
#获取私信配置
method
:
get
url
:
/api/web3/conversation/robot/get_message
params
:
doctor_user_id
:
${doctor_user_id}
data
:
{}
json
:
{}
isLogin
:
1
#需要登录
conversation_robot_clean_message
:
#清空私信配置
method
:
post
...
...
path_setting.py
View file @
d0aefb36
...
...
@@ -507,6 +507,8 @@ CONVERSATION_ROBOT = os.path.join(BASE_DIR, "backend_auto/all_doctor_api", "web3
ROBOTGETPAGE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web3_data"
,
"conversation_robot_get_page.yaml"
)
#医生后台-添加私信配置
ROBOTADDMESSAGE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web3_data"
,
"conversation_robot_add_message.yaml"
)
#医生后台-获取私信配置
ROBOTGETMESSAGE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web3_data"
,
"conversation_robot_get_message.yaml"
)
#医生后台-清空私信配置
ROBOTCLEANMESSAGE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web3_data"
,
"conversation_robot_clean_message.yaml"
)
...
...
test_doctor_case/web3_case/test_conversation_robot_get_message.py
0 → 100644
View file @
d0aefb36
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_doctor_api.web3_request
import
web3_request
class
TestConversationRobotGetMessage
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
ROBOTGETMESSAGE
)
robot_get_message_case
,
robot_get_message_data
=
get_ids
(
data
,
"conversation_robot_get_message"
)
@pytest.mark.parametrize
(
"param"
,
robot_get_message_data
,
ids
=
robot_get_message_case
)
def
test_conversation_robot_get_message
(
self
,
param
):
'''私信机器人-添加私信配置'''
r
=
web3_request
()
.
conversation_robot_get_message
(
param
[
"doctor_user_id"
])
assert
r
[
"error"
]
==
param
[
"assert"
]
test_doctor_data/web3_data/conversation_robot_get_message.yaml
0 → 100644
View file @
d0aefb36
conversation_robot_get_message
:
#私信机器人-获取私信配置
-
case
:
"
私信机器人-获取私信配置"
doctor_user_id
:
"
602329"
assert
:
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