test_Q&A_center.py
3.98 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
import json
from atdd.ATDDCase import ATDDCase
from tests.Integral.publicMethods import PCpublicMethods
class QACenter(ATDDCase):
global list
url = ATDDCase().uc_host + '/a/' + ATDDCase().domain + '/' + ATDDCase().app + "/qy/integral/change"
businessKey = "Q&A_center"
triggerKeyDict = PCpublicMethods.PCpublicMethods().getTriggerKey(businessKey)
triggerValueDict = PCpublicMethods.PCpublicMethods().getTriggerValue(businessKey)
def setUp(self):
pass
# 问答中心-提问
def test_question(self):
print(self.triggerKeyDict)
data = {
"memUid": self.jipeihong_uid,
"businessKey": self.businessKey,
"businessAct": "question",
"remark": "问答中心-提问",
"businessId": "55",
"triggerTypes": [
{
"triggerKey": "number", #提问次数(循环类型) 全局
"value": 2
}
]
}
result = self.post(self.url, json.dumps(data), headers=self.header_json)
code = result.json()['code']
print(result.json())
self.assertNotEquals(code, 'INTEGRAL_RULE_NDAYOT_OPEN') # 积分策略没有启用
self.assertEquals(code,'SUCCESS')
# 新闻资讯-回答
def test_answered(self):
print(self.triggerKeyDict)
data = {
"memUid": self.jipeihong_uid,
"businessKey": self.businessKey,
"businessAct": "answered",
"remark": "新闻资讯-回答",
"businessId": "55",
"triggerTypes": [
{
"triggerKey": "number", #次数(循环类型) 全局
"value": 2
},
{
"triggerKey": "answered_business_number", # 回答提问个数 (循环类型) 全局
"value": 2
}
]
}
result = self.post(self.url, json.dumps(data), headers=self.header_json)
code = result.json()['code']
print(result.json())
self.assertNotEquals(code, 'INTEGRAL_RULE_NDAYOT_OPEN') # 积分策略没有启用
self.assertEquals(code,'SUCCESS')
# 新闻资讯-被采纳最佳答案
def test_best_answered(self):
print(self.triggerKeyDict)
data = {
"memUid": self.jipeihong_uid,
"businessKey": self.businessKey,
"businessAct": "best_answered",
"remark": "新闻资讯-被采纳最佳答案",
"businessId": "55",
"triggerTypes": [
{
"triggerKey": "number", #次数(循环类型) 全局
"value": 2
}
]
}
result = self.post(self.url, json.dumps(data), headers=self.header_json)
code = result.json()['code']
print(result.json())
self.assertNotEquals(code, 'INTEGRAL_RULE_NDAYOT_OPEN') # 积分策略没有启用
self.assertEquals(code,'SUCCESS')
# 新闻资讯-提问被回答
def test_question_was_answered(self):
print(self.triggerKeyDict)
data = {
"memUid": self.jipeihong_uid,
"businessKey": self.businessKey,
"businessAct": "question_was_answered",
"remark": "新闻资讯-提问被回答",
"businessId": "55",
"triggerTypes": [
{
"triggerKey": "number", #次数 (循环类型) 全局
"value": 2
},
{
"triggerKey": "was_answered_number", # 被回答个数(循环类型) 全局
"value": 2
}
]
}
result = self.post(self.url, json.dumps(data), headers=self.header_json)
code = result.json()['code']
print(result.json())
self.assertNotEquals(code, 'INTEGRAL_RULE_NDAYOT_OPEN') # 积分策略没有启用
self.assertEquals(code,'SUCCESS')