Commit 2a07750e authored by edz's avatar edz

直播-关注/取消关注

parent e1fadf88
......@@ -12,8 +12,6 @@ class user_request(BaseRequest):
return self.api_send(self.data["personal_center"])
def __init__(self):
self.data = self.api_load(path_setting.USER_ANSWER_CONFIG)
......@@ -32,6 +30,20 @@ class user_request(BaseRequest):
def topic_canclefavor(self):
return self.api_send(self.data["canclefavor"])
#关注主播
def follow_add(self,uid,from_live):
self.params["uid"] = uid
self.params["from_live"] = from_live
return self.api_send(self.data['follow_add'])
#取消关注
def follow_del(self,uid,from_live):
self.params["uid"] = uid
self.params["from_live"] = from_live
return self.api_send(self.data["follow_del"])
if __name__ == '__main__':
......@@ -45,6 +57,6 @@ if __name__ == '__main__':
# 日记贴收藏&取消收藏
# print(user_request().topic_favor())
# print(user_request().topic_canclefavor())
print(user_request().follow_del("33909625","4196"))
......@@ -38,3 +38,25 @@ canclefavor:
json: {}
isLogin: 1
#直播-关注主播
follow_add:
method: post
url: /api/user/follow/add
params: {}
data:
uid: ${uid}
from_live: ${from_live}
json: {}
isLogin: 1
#直播-取消关注
follow_del:
method: post
url: /api/user/follow/del
params: {}
data:
uid: ${uid}
from_live: ${from_live}
json: {}
isLogin: 1
......@@ -527,6 +527,6 @@ PAGE_RULES = os.path.join(BASE_DIR, "backend_auto/test_backend_data/janus_data",
#直播polling循环
POLLING_CONFIG = os.path.join(BASE_DIR, "backend_auto/all_backend_api", "janus_request.yaml")
POLLING = os.path.join(BASE_DIR, "backend_auto/test_backend_data/janus_data", "polling.yaml")
if __name__ == '__main__':
print("==========",LIVEYAML_CONFIG)
#直播关注/取关主播
FOLLOW_ADD = os.path.join(BASE_DIR, "backend_auto/test_backend_data/user_data", "follow_add.yaml")
FOLLOW_DEL = os.path.join(BASE_DIR, "backend_auto/test_backend_data/user_data", "follow_del.yaml")
\ No newline at end of file
import pytest
from ids_list import get_ids
import path_setting
from in_common.base_request import BaseRequest
from all_backend_api.user_request import user_request
import json
class TestFollowAdd:
data = BaseRequest().api_load(path_setting.FOLLOW_ADD)
follow_add_case, follow_add_data = get_ids(data, "follow_add")
@pytest.mark.parametrize("param",follow_add_data, ids=follow_add_case)
def test_follow_add(self, param):
r = user_request().follow_add(param["uid"], param["from_live"])
# r=json.loads(r)
# print("---------",r,type(r))
if r["error"] == 0:
assert r["error"] == param["assert"]
if r["error"] == 1:
assert r["message"] == param["assert1"]
\ No newline at end of file
import pytest
from ids_list import get_ids
import path_setting
from in_common.base_request import BaseRequest
from all_backend_api.user_request import user_request
class TestFollowDel:
data = BaseRequest().api_load(path_setting.FOLLOW_DEL)
follow_del_case, follow_del_data = get_ids(data,"follow_del")
@pytest.mark.parametrize("param", follow_del_data, ids=follow_del_case)
def test_follow_del(self,param):
r = user_request().follow_del(param["uid"], param["from_live"])
if r["error"] == 0:
assert r["error"] == param["assert"]
\ No newline at end of file
......@@ -3,7 +3,7 @@ reply_create:
beuzhu: '# 备注: 这个文件有冲突的话,那个版本都行不会影响,回退/接受当前版本都行,因为每次运行content都会改变'
case: 日记贴一级评论创建--正常校验&创建二级评论--正常校验
channel: benzhan
content: ces测试+2021-06-28 16:25:25
content: ces测试+2021-07-09 19:39:05
message: 请勿回复重复内容
message1: 回复成功
message2: 你的回复有点频繁,稍后再来
......
follow_add:
#关注
-
case: "关注主播"
uid: 33909625
from_live: 4196
assert: 0
assert1: 请登录后再试
#未登录
# -
# case: "未登录"
# uid: 33909625
# from_live: 4196
#assert1: 请登录后再试
follow_del:
#取消关注
-
case: "取消关注"
uid: 33909625
from_live: 4196
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