forked from OpenTSDB/tcollector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.py
executable file
·314 lines (265 loc) · 9.86 KB
/
tests.py
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
#!/usr/bin/python
# This file is part of tcollector.
# Copyright (C) 2013 The tcollector Authors.
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version. This program is distributed in the hope that it
# will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details. You should have received a copy
# of the GNU Lesser General Public License along with this program. If not,
# see <http://www.gnu.org/licenses/>.
import os
import sys
from stat import S_ISDIR, S_ISREG, ST_MODE
import unittest
import mocks
import tcollector
class CollectorsTests(unittest.TestCase):
def test_collectorsAccessRights(self):
"""Test of collectors access rights, permissions should be 0100775."""
def check_access_rights(top):
for f in os.listdir(top):
pathname = os.path.join(top, f)
mode = os.stat(pathname).st_mode
if S_ISDIR(mode):
# directory, recurse into it
check_access_rights(pathname)
elif S_ISREG(mode):
# file, check permissions
self.assertEqual("0100775", oct(os.stat(pathname)[ST_MODE]))
else:
# unknown file type
pass
collectors_path = os.path.dirname(os.path.abspath(__file__)) + \
"/collectors/0"
check_access_rights(collectors_path)
class TSDBlacklistingTests(unittest.TestCase):
"""
Tests of TSD blacklisting logic
https://github.com/OpenTSDB/tcollector/commit/c191d0d0889860db2ea231cad02e398843031a74
"""
def setUp(self):
# Stub out the randomness
self.random_shuffle = tcollector.random.shuffle
tcollector.random.shuffle = lambda x: x
def tearDown(self):
tcollector.random.shuffle = self.random_shuffle
def mkSenderThread(self, tsds):
return tcollector.SenderThread(None, True, tsds, False, {}, reconnectinterval=5)
def test_blacklistOneConnection(self):
tsd = ("localhost", 4242)
sender = self.mkSenderThread([tsd])
sender.pick_connection()
self.assertEqual(tsd, (sender.host, sender.port))
sender.blacklist_connection()
sender.pick_connection()
self.assertEqual(tsd, (sender.host, sender.port))
def test_blacklistTwoConnections(self):
tsd1 = ("localhost", 4242)
tsd2 = ("localhost", 4243)
sender = self.mkSenderThread([tsd1, tsd2])
sender.pick_connection()
self.assertEqual(tsd1, (sender.host, sender.port))
sender.blacklist_connection()
sender.pick_connection()
self.assertEqual(tsd2, (sender.host, sender.port))
sender.blacklist_connection()
sender.pick_connection()
self.assertEqual(tsd1, (sender.host, sender.port))
def test_doublePickOneConnection(self):
tsd = ("localhost", 4242)
sender = self.mkSenderThread([tsd])
sender.pick_connection()
self.assertEqual(tsd, (sender.host, sender.port))
sender.pick_connection()
self.assertEqual(tsd, (sender.host, sender.port))
def test_doublePickTwoConnections(self):
tsd1 = ("localhost", 4242)
tsd2 = ("localhost", 4243)
sender = self.mkSenderThread([tsd1, tsd2])
sender.pick_connection()
self.assertEqual(tsd1, (sender.host, sender.port))
sender.pick_connection()
self.assertEqual(tsd2, (sender.host, sender.port))
sender.pick_connection()
self.assertEqual(tsd1, (sender.host, sender.port))
class UDPCollectorTests(unittest.TestCase):
def setUp(self):
if ('udp_bridge.py' not in tcollector.COLLECTORS):
return
self.saved_exit = sys.exit
self.saved_stderr = sys.stderr
self.saved_stdout = sys.stdout
self.udp_bridge = tcollector.COLLECTORS['udp_bridge.py']
self.udp_globals = {}
sys.exit = lambda x: None
try:
execfile(self.udp_bridge.filename, self.udp_globals)
finally:
sys.exit = self.saved_exit
self.udp_globals['socket'] = mocks.Socket()
self.udp_globals['sys'] = mocks.Sys()
self.udp_globals['udp_bridge_conf'].enabled = lambda: True
self.udp_globals['utils'] = mocks.Utils()
def run_bridge_test(self, udpInputLines, stdoutLines, stderrLines):
mockSocket = self.udp_globals['socket'] = mocks.Socket()
mockSocket.state['udp_in'] = list(udpInputLines)
self.udp_globals['sys'] = mocks.Sys()
self.udp_globals['sys'].stderr.lines = stderrLines
self.udp_globals['sys'].stdout.lines = stdoutLines
sys.stderr = self.udp_globals['sys'].stderr
sys.stdout = self.udp_globals['sys'].stdout
try:
self.udp_globals['main']()
except mocks.SocketDone:
pass
finally:
sys.stderr = self.saved_stderr
sys.stdout = self.saved_stdout
def test_populated(self):
self.assertIsInstance(self.udp_bridge, tcollector.Collector)
self.assertIsNone(self.udp_bridge.proc)
self.assertIn('main', self.udp_globals)
def test_single_line_no_put(self):
inputLines = [
'foo.bar 1 1'
]
expected = '\n'.join(inputLines) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_single_line_put(self):
inputLines = [
'put foo.bar 1 1'
]
expected = '\n'.join([
'foo.bar 1 1'
]) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_multi_line_no_put(self):
inputLines = [
'foo.bar 1 1',
'bar.baz 2 2'
]
expected = '\n'.join(inputLines) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_multi_line_put(self):
inputLines = [
'put foo.bar 1 1',
'put bar.baz 2 2'
]
expected = '\n'.join([
'foo.bar 1 1',
'bar.baz 2 2'
]) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_multi_line_mixed_put(self):
inputLines = [
'put foo.bar 1 1',
'bar.baz 2 2',
'put foo.bar 3 3'
]
expected = '\n'.join([
'foo.bar 1 1',
'bar.baz 2 2',
'foo.bar 3 3'
]) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_multi_line_no_put_cond(self):
inputLines = [
'foo.bar 1 1\nbar.baz 2 2'
]
expected = '\n'.join(inputLines) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_multi_line_put_cond(self):
inputLines = [
'put foo.bar 1 1\nput bar.baz 2 2'
]
expected = '\n'.join([
'foo.bar 1 1',
'bar.baz 2 2'
]) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_multi_empty_line_no_put(self):
inputLines = [
'foo.bar 1 1',
'',
'bar.baz 2 2'
]
expected = 'foo.bar 1 1\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, ['invalid data\n'])
def test_multi_empty_line_put(self):
inputLines = [
'put foo.bar 1 1',
'',
'put bar.baz 2 2'
]
expected = 'foo.bar 1 1\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, ['invalid data\n'])
def test_multi_empty_line_no_put_cond(self):
inputLines = [
'foo.bar 1 1\n\nbar.baz 2 2'
]
expected = '\n'.join(inputLines) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
def test_multi_empty_line_put_cond(self):
inputLines = [
'put foo.bar 1 1\n\nput bar.baz 2 2'
]
expected = '\n'.join([
'foo.bar 1 1',
'',
'bar.baz 2 2'
]) + '\n'
stderr = []
stdout = []
self.run_bridge_test(inputLines, stdout, stderr)
self.assertEquals(''.join(stdout), expected)
self.assertListEqual(stderr, [])
if __name__ == '__main__':
cdir = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
'collectors')
tcollector.setup_python_path(cdir)
tcollector.populate_collectors(cdir)
sys.exit(unittest.main())