forked from OpenTSDB/tcollector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
executable file
·523 lines (443 loc) · 18.2 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
#!/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
import time
from stat import S_ISDIR, S_ISREG, ST_MODE
import unittest
import subprocess
import time
import signal
import mocks
import tcollector
import json
import threading
try:
import flask
except ImportError:
flask = None
PY3 = sys.version_info[0] > 2
def return_none(x):
return None
def always_true():
return True
class ReaderThreadTests(unittest.TestCase):
def test_bool_false_converted_int(self):
"""Values that aren't ints/floats aren't sent to OpenTSDB.
This can happen if a specific collector is buggy.
"""
thread = tcollector.ReaderThread(1, 10, True) # pylint:disable=no-member
collector = tcollector.Collector("c", 1, "c") # pylint:disable=no-member
line= "mymetric 123 False a=b"
expected = "mymetric 123 0 a=b"
thread.process_line(collector, line)
self.assertEqual(thread.readerq.qsize(), 1, line)
self.assertEqual(thread.readerq.get(), line)
self.assertEqual(collector.lines_received, 1)
self.assertEqual(collector.lines_invalid, 0)
def test_bool_true_converted_int(self):
"""Values that aren't ints/floats aren't sent to OpenTSDB.
This can happen if a specific collector is buggy.
"""
thread = tcollector.ReaderThread(1, 10, True) # pylint:disable=no-member
collector = tcollector.Collector("c", 1, "c") # pylint:disable=no-member
line= "mymetric 123 True a=b"
expected = "mymetric 123 1 a=b"
thread.process_line(collector, line)
self.assertEqual(thread.readerq.qsize(), 1, line)
self.assertEqual(thread.readerq.get(), line)
self.assertEqual(collector.lines_received, 1)
self.assertEqual(collector.lines_invalid, 0)
def test_bad_float(self):
"""Values that aren't ints/floats aren't sent to OpenTSDB.
This can happen if a specific collector is buggy.
"""
thread = tcollector.ReaderThread(1, 10, True) # pylint:disable=no-member
collector = tcollector.Collector("c", 1, "c") # pylint:disable=no-member
for line in ["xxx", "mymetric 123 Value a=b"]:
thread.process_line(collector, line)
self.assertEqual(thread.readerq.qsize(), 0)
self.assertEqual(collector.lines_received, 2)
self.assertEqual(collector.lines_invalid, 2)
def test_ok_lines(self):
"""Good lines are passed on to OpenTSDB."""
thread = tcollector.ReaderThread(1, 10, True) # pylint:disable=no-member
collector = tcollector.Collector("c", 1, "c") # pylint:disable=no-member
for line in ["mymetric 123.24 12 a=b",
"mymetric 124 12.7 a=b",
"mymetric 125 12.7"]:
thread.process_line(collector, line)
self.assertEqual(thread.readerq.qsize(), 1, line)
self.assertEqual(thread.readerq.get(), line)
self.assertEqual(collector.lines_received, 3)
self.assertEqual(collector.lines_invalid, 0)
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
permissions = oct(os.stat(pathname)[ST_MODE])
if PY3:
self.assertEqual("0o100775", permissions)
else:
self.assertEqual("0100775", permissions)
else:
# unknown file type
pass
collectors_path = os.path.dirname(os.path.abspath(__file__)) + \
"/collectors/0"
check_access_rights(collectors_path)
def test_json(self):
"""A collector can be serialized to JSON."""
collector = tcollector.Collector("myname", 17, "myname.py", mtime=23, lastspawn=15) # pylint:disable=no-member
collector.nextkill += 8
collector.killstate += 2
collector.lines_sent += 10
collector.lines_received += 65
collector.lines_invalid += 7
self.assertEqual(collector.to_json(),
{"name": "myname",
"mtime": 23,
"lastspawn": 15,
"killstate": 2,
"nextkill": 8,
"lines_sent": 10,
"lines_received": 65,
"lines_invalid": 7,
"last_datapoint": collector.last_datapoint,
"dead": False})
class StatusServerTests(unittest.TestCase):
"""Tests for StatusServer."""
def test_endtoend(self):
"""We can get JSON status of collectors from StatusServer."""
collectors = {
"a": tcollector.Collector("mycollector", 5, "a.py"), # pylint:disable=no-member
"b": tcollector.Collector("second", 3, "b.py"), # pylint:disable=no-member
}
server = tcollector.StatusServer("127.0.0.1", 32025, collectors) # pylint:disable=no-member
# runs in background until test suite exits :( but it works.
thread = threading.Thread(target=server.serve_forever)
thread.setDaemon(True)
thread.start()
r = tcollector.urlopen("http://127.0.0.1:32025").read() # pylint:disable=no-member
self.assertEqual(json.loads(r), [c.to_json() for c in collectors.values()])
@unittest.skipUnless(flask, "Flask not installed")
class SenderThreadHTTPTests(unittest.TestCase):
"""Tests for HTTP sending."""
def run_fake_opentsdb(self, response_code):
env = os.environ.copy()
env["FLASK_APP"] = "fake_opentsdb.py"
env["FAKE_OPENTSDB_RESPONSE"] = str(response_code)
flask = subprocess.Popen(["flask", "run", "--port", "4242"], env=env)
time.sleep(1) # wait for it to start
self.addCleanup(flask.terminate)
def send_query_with_response_code(self, response_code):
"""
Send a HTTP query using SenderThread, with server that returns given
response code.
"""
self.run_fake_opentsdb(response_code)
reader = tcollector.ReaderThread(1, 10, True) # pylint:disable=no-member
sender = tcollector.SenderThread( # pylint:disable=no-member
reader, False, [("localhost", 4242)], False, {},
http=True, http_api_path="api/put"
)
sender.sendq.append("mymetric 123 12 a=b")
sender.send_data()
return sender
def test_normal(self):
"""If response is OK, sendq is cleared."""
sender = self.send_query_with_response_code(204)
self.assertEqual(len(sender.sendq), 0)
def test_error(self):
"""
If response is unexpected, e.g. 500 error, sendq is not cleared so we
can retry.
"""
sender = self.send_query_with_response_code(500)
self.assertEqual(len(sender.sendq), 1)
def test_bad_messages(self):
"""
If response is 400, sendq is cleared since there's no point retrying
bad messages.
"""
sender = self.send_query_with_response_code(400)
self.assertEqual(len(sender.sendq), 0)
class NamespacePrefixTests(unittest.TestCase):
"""Tests for metric namespace prefix."""
def test_prefix_added(self):
"""Namespace prefix gets added to metrics as they are read."""
thread = tcollector.ReaderThread(1, 10, True, "my.namespace.") # pylint:disable=no-member
collector = tcollector.Collector("c", 1, "c") # pylint:disable=no-member
line = "mymetric 123 12 a=b"
thread.process_line(collector, line)
self.assertEqual(thread.readerq.get(), "my.namespace." + line)
self.assertEqual(collector.lines_received, 1)
self.assertEqual(collector.lines_invalid, 0)
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 # pylint: disable=maybe-no-member
tcollector.random.shuffle = lambda x: x # pylint: disable=maybe-no-member
def tearDown(self):
tcollector.random.shuffle = self.random_shuffle # pylint: disable=maybe-no-member
def mkSenderThread(self, tsds):
return tcollector.SenderThread(None, True, tsds, False, {}, reconnectinterval=5) # pylint: disable=maybe-no-member
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): # pylint: disable=maybe-no-member
raise unittest.SkipTest("udp_bridge unavailable")
self.saved_exit = sys.exit
self.saved_stderr = sys.stderr
self.saved_stdout = sys.stdout
self.udp_bridge = tcollector.COLLECTORS['udp_bridge.py'] # pylint: disable=maybe-no-member
self.udp_globals = {}
sys.exit = return_none
bridge_file = open(self.udp_bridge.filename)
try:
exec(compile(bridge_file.read(), self.udp_bridge.filename, 'exec'), self.udp_globals)
finally:
bridge_file.close()
sys.exit = self.saved_exit
self.udp_globals['socket'] = mocks.Socket()
self.udp_globals['sys'] = mocks.Sys()
self.udp_globals['udp_bridge_conf'].enabled = always_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):
# assertIsInstance, assertIn, assertIsNone do not exist in Python 2.6
self.assertTrue(isinstance(self.udp_bridge, tcollector.Collector), msg="self.udp_bridge not instance of tcollector.Collector") # pylint: disable=maybe-no-member
self.assertEqual(self.udp_bridge.proc, None)
self.assertTrue('main' in self.udp_globals, msg="'main' not in 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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(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.assertEqual(''.join(stdout), expected)
self.assertEqual(stderr, [])
class CollectorSanityCheckTests(unittest.TestCase):
"""Just make sure you can run a collector without it blowing up."""
def test_procstats(self):
env = os.environ.copy()
if env.get("PYTHONPATH"):
env["PYTHONPATH"] += ":."
else:
env["PYTHONPATH"] = "."
p = subprocess.Popen(["collectors/0/procstats.py"], env=env,
stdout=subprocess.PIPE)
time.sleep(5)
p.terminate()
time.sleep(1)
if p.poll() is None:
p.kill()
self.assertEqual(p.poll(), -signal.SIGTERM)
self.assertIn(b"proc.", p.stdout.read())
if __name__ == '__main__':
import logging
logging.basicConfig()
cdir = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
'collectors')
tcollector.setup_python_path(cdir) # pylint: disable=maybe-no-member
tcollector.populate_collectors(cdir) # pylint: disable=maybe-no-member
sys.exit(unittest.main())