test_default_list.py 11.3 KB
import json

from atdd.ATDDCase import ATDDCase
import unittest


# 企业默认积分策略管理接口
class DefaultList(ATDDCase):

    def setUp(self):
        pass

    # 企业默认积分策略查询接口>>无需传参
    def test_defaultlist(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + '/a/' + self.domain + '/' + self.app + "/qy/integral/default/list"
        data = {
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())

    # 企业默认积分策略详情接口>>枚举类型>>单课程学习-完成
    def test_studyone(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/detail"
        data = {
            "businessKey": "course_center",
            "businessAct": "one_learning"
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        # self.assertEqual("SUCCESS", result["code"], msg=result["code"])
        # self.assertEqual("成功", result["msg"], msg=result["msg"])

    # 企业默认积分策略详情接口>>循环类型>>评论课程
    def test_commentcourse(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/detail"
        data = {
            "businessKey": "course_center",
            "businessAct": "comment"
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        # self.assertEqual("SUCCESS", result["code"], msg=result["code"])
        # self.assertEqual("成功", result["msg"], msg=result["msg"])

    # 企业默认积分策略修改接口>>课程中心>>启用
    def test_defaultupdateEnabled(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/update"
        data = {
            "epId": "550071487F0000017064C43D326E9374",
            "enable": 1,
            "businessKey": "course_center",
            "businessName": "课程中心",
            "businessAct": "shared",
            "businessActName": "分享课程",
            "businessId": None,
            "triggers": [
                {
                    "triggerKey": "shared_num",
                    "triggerName": "次数",
                    "unit": "次",
                    "computeType": 1,
                    "enabled": True,
                    # "eibsId": "123",
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 10
                        }
                    ],
                }
            ]
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())

    # 企业默认积分策略修改接口>>课程中心>>禁用
    def test_defaultupdateDisabled(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/update"
        data = {
            "epId": "550071487F0000017064C43D326E9374",
            "enable": 2,
            "businessKey": "course_center",
            "businessName": "课程中心",
            "businessAct": "shared",
            "businessActName": "分享课程",
            "businessId": None,
            "triggers": [
                {
                    "triggerKey": "shared_num",
                    "triggerName": "次数",
                    "unit": "次",
                    "computeType": 1,
                    "enabled": True,
                    # "eibsId": "123",
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 10
                        }
                    ],
                }
            ]
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())

    # 企业默认积分策略修改接口>>添加限制条件>>天
    def test_defaultupdatelimit(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/update"
        data = {
            "epId": "550071487F0000017064C43D326E9374",
            "enable": 1,
            "businessKey": "course_center",
            "businessName": "课程中心",
            "businessAct": "shared",
            "businessActName": "分享课程",
            "businessId": None,
            "triggers": [
                {
                    "triggerKey": "shared_num",
                    "triggerName": "次数",
                    "unit": "次",
                    "computeType": 1,
                    "enabled": True,
                    # "eibsId": "123",
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 10
                        },
                    ],
                    "limitConditions":
                        [
                            {
                                "type": 1,
                                "numbers": 1,
                                "limit": 20
                            }
                        ]
                }
            ]
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())

    # 企业默认积分策略修改接口>>添加限制条件>>总计
    def test_defaultupdatelimitall(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/update"
        data = {
            "epId": "550071487F0000017064C43D326E9374",
            "enable": 1,
            "businessKey": "course_center",
            "businessName": "课程中心",
            "businessAct": "shared",
            "businessActName": "分享课程",
            "businessId": None,
            "triggers": [
                {
                    "triggerKey": "shared_num",
                    "triggerName": "次数",
                    "unit": "次",
                    "computeType": 1,
                    "enabled": True,
                    # "eibsId": "123",
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 10
                        },
                    ],
                    "limitConditions":
                        [
                            {
                                "type": 1,
                                "numbers": 1,
                                "limit": 20
                            },
                            {
                                "type": 2,
                                "numbers": 1,
                                "limit": 20
                            },
                            {
                                "type": 3,
                                "numbers": 1,
                                "limit": 20
                            },
                            {
                                "type": 4,
                                "numbers": 1,
                                "limit": 20
                            },
                            {
                                "type": 5,
                                "numbers": 1,
                                "limit": 20
                            },
                            {
                                "type": 6,
                                "numbers": 1,
                                "limit": 20
                            }
                        ]
                }
            ]
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())

    # 企业默认积分策略修改接口>>添加限制条件>>限制次数>>负数
    def test_defaultupdatelnegative(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/update"
        data = {
            "epId": "550071487F0000017064C43D326E9374",
            "enable": 1,
            "businessKey": "course_center",
            "businessName": "课程中心",
            "businessAct": "shared",
            "businessActName": "分享课程",
            "businessId": None,
            "triggers": [
                {
                    "triggerKey": "shared_num",
                    "triggerName": "次数",
                    "unit": "次",
                    "computeType": 1,
                    "enabled": True,
                    # "eibsId": "123",
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 10
                        },
                    ],
                    "limitConditions":
                        [
                            {
                                "type": 1,
                                "numbers": -1,
                                "limit": 20
                            }
                        ]
                }
            ]
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())

    # 企业默认积分策略修改接口>>添加限制条件>>限制积分值>>负数
    def test_defaultupdatelnegative1(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/default/update"
        data = {
            "epId": "550071487F0000017064C43D326E9374",
            "enable": 1,
            "businessKey": "course_center",
            "businessName": "课程中心",
            "businessAct": "shared",
            "businessActName": "分享课程",
            "businessId": None,
            "triggers": [
                {
                    "triggerKey": "shared_num",
                    "triggerName": "次数",
                    "unit": "次",
                    "computeType": 1,
                    "enabled": True,
                    # "eibsId": "123",
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 10
                        },
                    ],
                    "limitConditions":
                        [
                            {
                                "type": 1,
                                "numbers": 1,
                                "limit": -20
                            }
                        ]
                }
            ]
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
if __name__ == '__main__':
    unittest.main()