summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-04-09 10:11:03 +0000
committerGerrit Code Review <review@openstack.org>2015-04-09 10:11:03 +0000
commitef9b0b62cb78d92bee8a0eeac4af94412ddec421 (patch)
tree5b6621e65ac656abf9d542d69e3e555b9f2e9239
parent7af2f632f83c0b7fffb03e107adcbc3e975a4474 (diff)
parent129929c3462274991415ae4f10d7820a86faabfe (diff)
downloadceilometer-ef9b0b62cb78d92bee8a0eeac4af94412ddec421.tar.gz
Merge "Fix a issue for kafka-publisher and refactor the test code"
-rw-r--r--ceilometer/publisher/kafka_broker.py2
-rw-r--r--ceilometer/tests/publisher/test_kafka_broker_publisher.py179
2 files changed, 97 insertions, 84 deletions
diff --git a/ceilometer/publisher/kafka_broker.py b/ceilometer/publisher/kafka_broker.py
index 423ad070..191a0d51 100644
--- a/ceilometer/publisher/kafka_broker.py
+++ b/ceilometer/publisher/kafka_broker.py
@@ -153,7 +153,7 @@ class KafkaBrokerPublisher(publisher.PublisherBase):
elif self.policy == 'drop':
return []
current_retry += 1
- if self.current_retry >= self.max_retry:
+ if current_retry >= self.max_retry:
self.local_queue = []
LOG.exception(_LE("Failed to retry to send sample data "
"with max_retry times"))
diff --git a/ceilometer/tests/publisher/test_kafka_broker_publisher.py b/ceilometer/tests/publisher/test_kafka_broker_publisher.py
index 418918c3..ab451e38 100644
--- a/ceilometer/tests/publisher/test_kafka_broker_publisher.py
+++ b/ceilometer/tests/publisher/test_kafka_broker_publisher.py
@@ -21,7 +21,7 @@ import mock
from oslo_utils import netutils
from ceilometer.event.storage import models as event
-from ceilometer.publisher import kafka_broker as kafka_publisher
+from ceilometer.publisher.kafka_broker import KafkaBrokerPublisher
from ceilometer import sample
from ceilometer.tests import base as tests_base
@@ -96,20 +96,10 @@ class TestKafkaPublisher(tests_base.BaseTestCase):
def setUp(self):
super(TestKafkaPublisher, self).setUp()
- def _make_fake_kafka_broker(self, published):
- def _fake_kafka_broker():
- def record_data(msg, dest):
- published.append((msg, dest))
-
- kafka_broker = mock.Mock()
- kafka_broker.send_to = record_data
- return _fake_kafka_broker
-
- def test_publish(self):
- publisher = kafka_publisher.KafkaBrokerPublisher(
- netutils.urlsplit('kafka://127.0.0.1:9092?topic=ceilometer'))
- publisher._get_client = mock.Mock(name="_get_client")
- publisher._get_client.return_value = mock.Mock()
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish(self, mock_method):
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer'))
with mock.patch.object(publisher, '_send') as fake_send:
fake_send.side_effect = mock.Mock()
@@ -117,11 +107,10 @@ class TestKafkaPublisher(tests_base.BaseTestCase):
self.assertEqual(1, len(fake_send.mock_calls))
self.assertEqual(0, len(publisher.local_queue))
- def test_publish_without_options(self):
- publisher = kafka_publisher.KafkaBrokerPublisher(
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_without_options(self, mock_method):
+ publisher = KafkaBrokerPublisher(
netutils.urlsplit('kafka://127.0.0.1:9092'))
- publisher._get_client = mock.Mock(name="_get_client")
- publisher._get_client.return_value = mock.Mock()
with mock.patch.object(publisher, '_send') as fake_send:
fake_send.side_effect = mock.Mock()
@@ -129,78 +118,102 @@ class TestKafkaPublisher(tests_base.BaseTestCase):
self.assertEqual(1, len(fake_send.mock_calls))
self.assertEqual(0, len(publisher.local_queue))
- def test_publish_to_unreacheable_host_under_retry_policy(self):
- publisher = kafka_publisher.KafkaBrokerPublisher(
- netutils.urlsplit(
- 'kafka://127.0.0.1:9092?topic=ceilometer&policy=retry'))
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_to_host_without_policy(self, mock_method):
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer'))
+ self.assertEqual('default', publisher.policy)
- with mock.patch.object(publisher, '_get_client') as fake_client:
- fake_client.return_value = None
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer&policy=test'))
+ self.assertEqual('default', publisher.policy)
+
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_to_host_with_default_policy(self, mock_method):
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer&policy=default'))
+
+ with mock.patch.object(publisher, '_send') as fake_send:
+ fake_send.side_effect = TypeError
self.assertRaises(TypeError, publisher.publish_samples,
- (mock.MagicMock(), self.test_data))
+ mock.MagicMock(), self.test_data)
+ self.assertEqual(100, len(fake_send.mock_calls))
+ self.assertEqual(0, len(publisher.local_queue))
- def test_publish_to_unreacheable_host_under_drop_policy(self):
- publisher = kafka_publisher.KafkaBrokerPublisher(
- netutils.urlsplit(
- 'kafka://127.0.0.1:9092?topic=ceilometer&policy=drop'))
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_to_host_with_drop_policy(self, mock_method):
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer&policy=drop'))
- with mock.patch.object(publisher, '_get_client') as fake_client:
- fake_client.return_value = None
+ with mock.patch.object(publisher, '_send') as fake_send:
+ fake_send.side_effect = Exception("test")
publisher.publish_samples(mock.MagicMock(), self.test_data)
+ self.assertEqual(1, len(fake_send.mock_calls))
self.assertEqual(0, len(publisher.local_queue))
- def test_publish_to_unreacheable_host_under_queue_policy(self):
- publisher = kafka_publisher.KafkaBrokerPublisher(
- netutils.urlsplit(
- 'kafka://127.0.0.1:9092?topic=ceilometer&policy=queue'))
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_to_host_with_queue_policy(self, mock_method):
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer&policy=queue'))
- with mock.patch.object(publisher, '_get_client') as fake_client:
- fake_client.return_value = None
+ with mock.patch.object(publisher, '_send') as fake_send:
+ fake_send.side_effect = Exception("test")
publisher.publish_samples(mock.MagicMock(), self.test_data)
+ self.assertEqual(1, len(fake_send.mock_calls))
self.assertEqual(1, len(publisher.local_queue))
- def test_publish_to_unreachable_host_with_default_queue_size(self):
- publisher = kafka_publisher.KafkaBrokerPublisher(
- netutils.urlsplit(
- 'kafka://127.0.0.1:9092?topic=ceilometer&policy=queue'))
-
- with mock.patch.object(publisher, '_get_client') as fake_client:
- fake_client.return_value = None
- for i in range(0, 2000):
- for s in self.test_data:
- s.name = 'test-%d' % i
- publisher.publish_samples(mock.MagicMock(),
- self.test_data)
-
- self.assertEqual(1024, len(publisher.local_queue))
- self.assertEqual(
- 'test-976',
- publisher.local_queue[0][0]['counter_name']
- )
- self.assertEqual(
- 'test-1999',
- publisher.local_queue[1023][0]['counter_name']
- )
-
- def test_publish_to_host_from_down_to_up_with_local_queue(self):
- publisher = kafka_publisher.KafkaBrokerPublisher(
- netutils.urlsplit(
- 'kafka://127.0.0.1:9092?topic=ceilometer&policy=queue'))
-
- with mock.patch.object(publisher, "_get_client") as fake_client:
- fake_client.return_value = None
- for i in range(0, 16):
- for s in self.test_data:
- s.name = 'test-%d' % i
- publisher.publish_samples(mock.MagicMock(), self.test_data)
-
- self.assertEqual(16, len(publisher.local_queue))
-
- fake_client.return_value = mock.Mock()
-
- with mock.patch.object(publisher, '_send') as fake_send:
- fake_send.return_value = mock.Mock()
- for s in self.test_data:
- s.name = 'test-%d' % 16
- publisher.publish_samples(mock.MagicMock(), self.test_data)
- self.assertEqual(0, len(publisher.local_queue))
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_to_down_host_with_default_queue_size(self, mock_method):
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer&policy=queue'))
+
+ for i in range(0, 2000):
+ for s in self.test_data:
+ s.name = 'test-%d' % i
+ publisher.publish_samples(mock.MagicMock(),
+ self.test_data)
+
+ self.assertEqual(1024, len(publisher.local_queue))
+ self.assertEqual(
+ 'test-976',
+ publisher.local_queue[0][0]['counter_name']
+ )
+ self.assertEqual(
+ 'test-1999',
+ publisher.local_queue[1023][0]['counter_name']
+ )
+
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_to_host_from_down_to_up_with_queue(self, mock_method):
+ publisher = KafkaBrokerPublisher(netutils.urlsplit(
+ 'kafka://127.0.0.1:9092?topic=ceilometer&policy=queue'))
+
+ for i in range(0, 16):
+ for s in self.test_data:
+ s.name = 'test-%d' % i
+ publisher.publish_samples(mock.MagicMock(), self.test_data)
+
+ self.assertEqual(16, len(publisher.local_queue))
+
+ with mock.patch.object(publisher, '_send') as fake_send:
+ fake_send.return_value = mock.Mock()
+ for s in self.test_data:
+ s.name = 'test-%d' % 16
+ publisher.publish_samples(mock.MagicMock(), self.test_data)
+ self.assertEqual(0, len(publisher.local_queue))
+
+ @mock.patch.object(KafkaBrokerPublisher, '_get_client')
+ def test_publish_event_with_default_policy(self, mock_method):
+ publisher = KafkaBrokerPublisher(
+ netutils.urlsplit('kafka://127.0.0.1:9092?topic=ceilometer'))
+
+ with mock.patch.object(KafkaBrokerPublisher, '_send') as fake_send:
+ publisher.publish_events(mock.MagicMock(), self.test_event_data)
+ self.assertEqual(1, len(fake_send.mock_calls))
+
+ with mock.patch.object(KafkaBrokerPublisher, '_send') as fake_send:
+ fake_send.side_effect = TypeError
+ self.assertRaises(TypeError, publisher.publish_events,
+ mock.MagicMock(), self.test_event_data)
+ self.assertEqual(100, len(fake_send.mock_calls))
+ self.assertEqual(0, len(publisher.local_queue))