test_list_business_strategy.py
4.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
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
import json
from atdd.ATDDCase import ATDDCase
import unittest
# 企业业务积分策略列表接口
class ListBusinessStrategy(ATDDCase):
def setUp(self):
pass
# 课程中心
def test_course_center(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "course_center",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 考试中心
def test_exam_center(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "exam_center",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 新闻中心
def test_news_center(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "news_center",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 活动中心
def test_active_center(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "active_center",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 问答中心
def test_QA_center(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "Q&A_center",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 同事圈
def test_colleague_circle(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "colleague_circle",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 调研中心
def test_research_center(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "research_center",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 邀请同事
def test_invite_colleague(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/list-business-strategy"
data = {
"eibsId": "",
"businessKey": "invite_colleague",
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
if __name__ == '__main__':
unittest.main()