test_source-total-list.py
4.06 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
import json
from atdd.ATDDCase import ATDDCase
import unittest
def jsonBeautifull(data):
return "业务处理错误\n" + json.dumps(data, indent=4)
# 积分来源统计接口
class ListBusinessStrategy(ATDDCase):
def setUp(self):
pass
# 默认
def test_source(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
data = {
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 昨天全部应用
def test_source1all(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
data = {
"beginTotalTime": 1501603200000, # 2017-08-02
"endTotalTime": 1501689599000 # 2017-08-02
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 近7天全部应用
def test_source7all(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
data = {
"beginTotalTime": 1501171200000, # 2017-07-28
"endTotalTime": 1501689600000 # 2017-08-02
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 昨天应用未知
def test_source1unkonw(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
data = {
"businessKey": "unknown",
"beginTotalTime": 1501603200000, # 2017-08-02
"endTotalTime": 1501689599000 # 2017-08-02
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 昨天同事圈评论话题
def test_source_1colleague_circle(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
data = {
"businessKey": "colleague_circle",
"beginTotalTime": 1501603200000, # 2017-08-02
"endTotalTime": 1501689599000 # 2017-08-02
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 近7天同事圈评论话题
def test_source_7colleague_circle(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
data = {
"businessKey": "colleague_circle",
"beginTotalTime": 1500998400000, # 2017-07-26
"endTotalTime": 1501689599000 # 2017-08-02
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
print(result)
# 一年同事圈评论话题
def test_source_1yearcolleague_circle(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
data = {
"businessKey": "colleague_circle",
"beginTotalTime": 1451577600000, # 2016-01-01
"endTotalTime": 1501516800000 # 2017-08-01
}
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()