test_list_business_strategy.py 4.04 KB
import json

from atdd.ATDDCase import ATDDCase
import unittest


# 企业业务积分策略列表接口
class ListBusinessStrategy(ATDDCase):
    def setUp(self):
        pass

    # 课程中心
    def test_course_center(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
            "eibsId": "",
            "businessKey": "course_center",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 考试中心
    def test_exam_center(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
           "eibsId": "",
            "businessKey": "exam_center",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 新闻中心
    def test_news_center(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
            "eibsId": "",
            "businessKey": "news_center",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 活动中心
    def test_active_center(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
            "eibsId": "",
            "businessKey": "active_center",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 问答中心
    def test_QA_center(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
            "eibsId": "",
            "businessKey": "Q&A_center",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 同事圈
    def test_colleague_circle(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
            "eibsId": "",
            "businessKey": "colleague_circle",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 调研中心
    def test_research_center(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
            "eibsId": "",
            "businessKey": "research_center",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 邀请同事
    def test_invite_colleague(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
        data = {
            "eibsId": "",
            "businessKey": "invite_colleague",
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)


if __name__ == '__main__':
    unittest.main()