test_exam_center.py
3.04 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
import json
from atdd.ATDDCase import ATDDCase
from tests.Integral.publicMethods import PCpublicMethods
class ExamCenter(ATDDCase):
global list
url = ATDDCase().uc_host + '/a/' + ATDDCase().domain + '/' + ATDDCase().app + "/qy/integral/change"
businessKey = "exam_center"
triggerKeyDict = PCpublicMethods.PCpublicMethods().getTriggerKey(businessKey)
triggerValueDict = PCpublicMethods.PCpublicMethods().getTriggerValue(businessKey)
def setUp(self):
pass
# 考试中心-测评考试
def test_official_exam(self):
data = {
"memUid": self.jipeihong_uid,
"businessKey": self.businessKey,
"businessAct": "official_exam",
"remark": "考试中心-测评考试",
"businessId": "5",
"triggerTypes": [
{
"triggerKey": "pass", # 通过(枚举类型)单个
"value": 1
},
{
"triggerKey": "exam_score", # 考试分数(阈值类型)单个
"value": 1
},
{
"triggerKey": "exam_score_range", # 考试分数区间(区间类型)单个
"value": self.triggerValueDict['official_exam-exam_score_range'][0]['condition'][1]
},
{
"triggerKey": "pass_num", # 通过试卷数(循环类型)全局
"value": 1
}
]
}
print(data)
result = self.post(self.url, json.dumps(data), headers=self.header_json)
code = result.json()['code']
self.assertNotEquals(code, 'INTEGRAL_RULE_NDAYOT_OPEN') # 积分策略没有启用
self.assertEquals(code, 'SUCCESS')
print(result.json())
# 考试中心-模拟考试
def test_mock_exam(self):
data = {
"memUid": self.jipeihong_uid,
"businessKey": self.businessKey,
"businessAct": "mock_exam",
"remark": "考试中心-模拟考试",
"businessId": "5",
"triggerTypes": [
{
"triggerKey": "pass", # 通过(枚举类型)单个
"value": 1
},
{
"triggerKey": "exam_score", # 考试分数(阈值类型)单个
"value": 1
},
{
"triggerKey": "exam_score_range", # 考试分数区间(区间类型)单个
"value": 1
},
{
"triggerKey": "pass_num", # 通过试卷数(循环类型)全局
"value": 1
}
]
}
print(data)
result = self.post(self.url, json.dumps(data), headers=self.header_json)
code = result.json()['code']
self.assertNotEquals(code, 'INTEGRAL_RULE_NDAYOT_OPEN') # 积分策略没有启用
self.assertEquals(code, 'SUCCESS')
print(result.json())