Commit d0aefb36 authored by 张淑琴's avatar 张淑琴

获取配置

parent b45ddeab
......@@ -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"))
......@@ -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
......
......@@ -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")
......
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"]
conversation_robot_get_message:
#私信机器人-获取私信配置
-
case: "私信机器人-获取私信配置"
doctor_user_id: "602329"
assert: 0
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment