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

获取一级类目

parent d0aefb36
...@@ -10,6 +10,10 @@ class web3_request(BaseRequest): ...@@ -10,6 +10,10 @@ class web3_request(BaseRequest):
#获取页面类型 #获取页面类型
return self.api_send(self.CONVERSATION_ROBOT["conversation_robot_get_page"]) return self.api_send(self.CONVERSATION_ROBOT["conversation_robot_get_page"])
def tag_first_list(self):
#获取一级类目
return self.api_send(self.CONVERSATION_ROBOT["tag_first_list"])
def conversation_robot_add_message(self, message, csrfmiddlewaretoken): def conversation_robot_add_message(self, message, csrfmiddlewaretoken):
#添加私信机器人配置 #添加私信机器人配置
self.params["message"] = message self.params["message"] = message
...@@ -33,3 +37,4 @@ if __name__ == '__main__': ...@@ -33,3 +37,4 @@ if __name__ == '__main__':
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_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_get_message("602329"))
print(web3_request().conversation_robot_clean_message("602329", "qzDd1CYV1LngDvQaGjgq4gKoHOPyieHk")) print(web3_request().conversation_robot_clean_message("602329", "qzDd1CYV1LngDvQaGjgq4gKoHOPyieHk"))
print(web3_request().tag_first_list())
...@@ -38,4 +38,14 @@ conversation_robot_clean_message: ...@@ -38,4 +38,14 @@ conversation_robot_clean_message:
doctor_user_id: ${doctor_user_id} doctor_user_id: ${doctor_user_id}
csrfmiddlewaretoken: ${csrfmiddlewaretoken} csrfmiddlewaretoken: ${csrfmiddlewaretoken}
json: {} json: {}
isLogin: 1 #需要登录
tag_first_list:
#获取一级类目
method: get
url: /api/web3/tag/first_list
params: {}
data: {}
json: {}
isLogin: 1 #需要登录 isLogin: 1 #需要登录
\ No newline at end of file
...@@ -511,6 +511,8 @@ ROBOTADDMESSAGE= os.path.join(BASE_DIR, "backend_auto/test_doctor_data/web3_data ...@@ -511,6 +511,8 @@ ROBOTADDMESSAGE= os.path.join(BASE_DIR, "backend_auto/test_doctor_data/web3_data
ROBOTGETMESSAGE= os.path.join(BASE_DIR, "backend_auto/test_doctor_data/web3_data", "conversation_robot_get_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") ROBOTCLEANMESSAGE= os.path.join(BASE_DIR, "backend_auto/test_doctor_data/web3_data", "conversation_robot_clean_message.yaml")
#医生后台-获取一级类目
TAGFIRSTLIST= os.path.join(BASE_DIR, "backend_auto/test_doctor_data/web3_data", "tag_first_list.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 TestTagFirstList:
data = BaseRequest().api_load(path_setting.TAGFIRSTLIST)
tag_first_list_case, tag_first_list_data = get_ids(data, "tag_first_list")
@pytest.mark.parametrize("param",tag_first_list_data,ids=tag_first_list_case)
def test_tag_first_list(self, param):
'''私信机器人-获取一级类目'''
r = web3_request().tag_first_list()
if r["error"] == 0:
#data = r.get("data").get("data", [])
#assert len["data"] >= param["assert"]
assert r["data"]["total"] >= param["assert"]
tag_first_list:
#私信机器人-获取一级类目
-
case: "私信机器人-获取一级类目"
#doctor_user_id: "602329"
assert: 0
\ No newline at end of file
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