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
|
import unittest
import sys, os, os.path
rootDirectory = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..')
if rootDirectory not in sys.path:
sys.path.append(rootDirectory)
from applicationinsights import channel
class TestQueueBase(unittest.TestCase):
def test_construct(self):
sender = MockQueueBaseSender()
actual = channel.QueueBase(sender)
self.assertIsNotNone(actual)
self.assertEqual(500, actual.max_queue_length)
self.assertEqual(sender, actual.sender)
self.assertEqual(actual, sender.queue)
def test_max_queue_length_works_as_expected(self):
actual = channel.QueueBase(None)
self.assertEqual(500, actual.max_queue_length)
actual.max_queue_length = 1000
self.assertEqual(1000, actual.max_queue_length)
actual.max_queue_length = -1
self.assertEqual(1, actual.max_queue_length)
def test_sender_works_as_expected(self):
sender = MockQueueBaseSender()
actual = channel.QueueBase(sender)
self.assertEqual(sender, actual.sender)
def test_put_works_as_expected(self):
actual = InterceptableQueueBase(None)
actual.max_queue_length = 1
actual.put(None)
actual.put(1)
actual.put(2)
self.assertEqual(1, actual.get())
self.assertEqual(2, actual.get())
self.assertEqual(None, actual.get())
self.assertEqual(None, actual.get())
self.assertEqual(2, actual.flush_count)
def test_get_works_as_expected(self):
self.test_put_works_as_expected()
def test_flush_works_as_expected(self):
self.test_put_works_as_expected()
class InterceptableQueueBase(channel.QueueBase):
def __init__(self, sender):
channel.QueueBase.__init__(self, sender)
self.flush_count = 0
def flush(self):
self.flush_count += 1
class MockQueueBaseSender(object):
def __init__(self):
self.queue = None
|