test_default_update.py
5.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
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())