test_default_update.py 5.17 KB
from atdd.ATDDCase import ATDDCase
from tests.Integral.publicMethods import PCpublicMethods


# 修改默认积分策略——课程中心
class DefaultUpdate(ATDDCase):
    url = ATDDCase().host + '/' + ATDDCase().domain + "/Integral/Apicp/Integral/UpdateDefaultList"
    businessKey = "course_center"
    triggerKeyDict = PCpublicMethods.PCpublicMethods().getTriggerKey(businessKey)
    triggerValueDict = PCpublicMethods.PCpublicMethods().getTriggerValue(businessKey)

    def setUp(self):
        pass

    # 分享课程
    def test_update_shared(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        data = {
            "miType": "mi_type1",
            "enable": 1,  # 启用
            "businessKey": self.businessKey,
            "businessName": "课程中心",
            "businessAct": "shared",
            "businessActName": "分享课程",
            "triggers": [
                {
                    "triggerKey": "shared_num",
                    "triggerName": "次数",
                    "unit": "次",
                    "computeType": 1,
                    "enabled": True,
                    "triggerValue": [
                        {
                            "condition": "1",
                            "score": self.triggerValueDict['shared-shared_num'][0]['condition']
                        }
                    ]
                }
            ]
        }
        result = self.post(self.url, json=data, headers=header_json)
        print(self.url)
        print(result.json())

    # 单课程学习
    def test_update_one_learning(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        data = {
            "miType": "mi_type1",
            "enable": 1,  # 启用
            "businessKey": self.businessKey,
            "businessName": "课程中心",
            "businessAct": "one_learning",
            "businessActName": "单课程学习",
            "triggers": [
                {
                    "triggerKey": "complete",
                    "triggerName": "完成",
                    "unit": "次",
                    "computeType": 2,
                    "enabled": True,
                    "applicableScope": 2,
                    "triggerValue": [
                        {
                            "condition": "1",
                            "score": 5
                        }
                    ]
                },
                {
                    "triggerKey": "number",
                    "triggerName": "完成单课程数",
                    "unit": "门",
                    "computeType": 1,
                    "enabled": True,
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 30
                        }
                    ]
                }
            ]

        }
        result = self.post(self.url, json=data, headers=header_json)
        print(self.url)
        print(result.json())

    # 单课程测评
    def test_update_one_evaluation(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        data = {
            "miType": "mi_type1",
            "enable": 1,  # 启用
            "businessKey": self.businessKey,
            "businessName": "课程中心",
            "businessAct": "one_evaluation",
            "businessActName": "单课程测评",
            "triggers": [
                {
                    "triggerKey": "pass",
                    "triggerName": "通过",
                    "unit": "次",
                    "computeType": 2,
                    "enabled": True,
                    "applicableScope": 2,
                    "triggerValue": [
                        {
                            "condition": "1",
                            "score": 10
                        }
                    ]
                },
                {
                    "triggerKey": "number",
                    "triggerName": "通过题数百分比",
                    "unit": "%",
                    "computeType": 4,
                    "enabled": True,
                    "triggerValue": [
                        {
                            "condition": "60",
                            "score": 2
                        },
                        {
                            "condition": "80",
                            "score": 5
                        },
                        {
                            "condition": "100",
                            "score": 10
                        }
                    ]
                },
                {
                    "triggerKey": "pass_number",
                    "triggerName": "通过单课程数",
                    "unit": "门",
                    "computeType": 1,
                    "enabled": True,
                    "triggerValue": [
                        {
                            "condition": "5",
                            "score": 60
                        }
                    ]
                }
            ]
        }
        result = self.post(self.url, json=data, headers=header_json)
        print(self.url)
        print(result.json())