summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCerberus <matt.dietz@rackspace.com>2011-05-11 10:42:51 -0500
committerCerberus <matt.dietz@rackspace.com>2011-05-11 10:42:51 -0500
commitd4c42ca05bce95dd385a3ab2f661ca19043ba66f (patch)
tree62a7c3c0c9f78bde59ce64cdf2e0f9df2c44bd2b
parent3f7cf0826a4edfd93aac20d677d05153ca072c61 (diff)
parente1dc9cfb521f21dd0cdd4d9771d78ef5024cebad (diff)
Merge from Dragon
-rw-r--r--nova/notifier/__init__.py5
-rw-r--r--nova/notifier/log_notifier.py33
-rw-r--r--nova/notifier/no_op_notifier.py2
-rw-r--r--nova/notifier/rabbit_notifier.py7
-rw-r--r--nova/tests/test_notifier.py29
5 files changed, 63 insertions, 13 deletions
diff --git a/nova/notifier/__init__.py b/nova/notifier/__init__.py
index 58809f179..0d4c970df 100644
--- a/nova/notifier/__init__.py
+++ b/nova/notifier/__init__.py
@@ -14,7 +14,6 @@
# under the License.
import datetime
-import json
import uuid
from nova import flags
@@ -22,7 +21,7 @@ from nova import utils
FLAGS = flags.FLAGS
-flags.DEFINE_string('default_notification_level', 'info',
+flags.DEFINE_string('default_notification_level', 'INFO',
'Default notification level for outgoing notifications')
WARN = 'WARN'
@@ -73,4 +72,4 @@ def notify(event_name, publisher_id, event_type, priority, payload):
priority=priority,
payload=payload,
time=str(datetime.datetime.utcnow()))
- driver.notify(json.dumps(message))
+ driver.notify(message)
diff --git a/nova/notifier/log_notifier.py b/nova/notifier/log_notifier.py
new file mode 100644
index 000000000..05126b591
--- /dev/null
+++ b/nova/notifier/log_notifier.py
@@ -0,0 +1,33 @@
+# Copyright 2011 OpenStack LLC.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+import json
+
+from nova import flags
+from nova import log as logging
+
+FLAGS = flags.FLAGS
+
+class LogNotifier(object):
+ """ log notifications using nova's default logging system """
+
+ def notify(self, payload):
+ """Notifies the recipient of the desired event given the model"""
+ priority = payload.get('priority',
+ FLAGS.default_notification_level)
+ priority = priority.lower()
+ logger = logging.getLogger('nova.notification.%s' % payload['event_type'])
+ getattr(logger, priority)(json.dumps(payload))
+
diff --git a/nova/notifier/no_op_notifier.py b/nova/notifier/no_op_notifier.py
index 3fefe6f8f..f425f06ea 100644
--- a/nova/notifier/no_op_notifier.py
+++ b/nova/notifier/no_op_notifier.py
@@ -14,6 +14,6 @@
# under the License.
class NoopNotifier(object):
- def notify(self, event_name, model):
+ def notify(self, payload):
"""Notifies the recipient of the desired event given the model"""
pass
diff --git a/nova/notifier/rabbit_notifier.py b/nova/notifier/rabbit_notifier.py
index 1d62005a8..4b6538696 100644
--- a/nova/notifier/rabbit_notifier.py
+++ b/nova/notifier/rabbit_notifier.py
@@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-import json
import nova.context
@@ -28,10 +27,12 @@ flags.DEFINE_string('notification_topic', 'notifications',
class RabbitNotifier(object):
"""Sends notifications to a specific RabbitMQ server and topic"""
- pass
def notify(self, payload):
"""Sends a notification to the RabbitMQ"""
context = nova.context.get_admin_context()
- topic = FLAGS.notification_topic
+ priority = payload.get('priority',
+ FLAGS.default_notification_level)
+ priority = priority.lower()
+ topic = '%s.%s' % (FLAGS.notification_topic, priority)
rpc.cast(context, topic, payload)
diff --git a/nova/tests/test_notifier.py b/nova/tests/test_notifier.py
index 640a0cb34..d2964c42f 100644
--- a/nova/tests/test_notifier.py
+++ b/nova/tests/test_notifier.py
@@ -13,13 +13,14 @@
# License for the specific language governing permissions and limitations
# under the License.
-import json
-
import nova
+from nova import context
from nova import flags
+from nova import rpc
from nova import notifier
from nova.notifier import no_op_notifier
+from nova.notifier import rabbit_notifier
from nova import test
import stubout
@@ -51,8 +52,7 @@ class NotifierTestCase(test.TestCase):
def test_verify_message_format(self):
"""A test to ensure changing the message format is prohibitively
annoying"""
- def message_assert(cls, blob):
- message = json.loads(blob)
+ def message_assert(cls, message):
fields = [('publisher_id', 'publisher_id'),
('event_type', 'event_type'),
('priority', 'WARN'),
@@ -72,7 +72,7 @@ class NotifierTestCase(test.TestCase):
self.mock_cast = False
def mock_cast(cls, *args):
self.mock_cast = True
-
+
class Mock(object):
pass
self.stubs.Set(nova.rpc, 'cast', mock_cast)
@@ -84,7 +84,7 @@ class NotifierTestCase(test.TestCase):
def test_invalid_priority(self):
def mock_cast(cls, *args):
pass
-
+
class Mock(object):
pass
@@ -92,3 +92,20 @@ class NotifierTestCase(test.TestCase):
self.assertRaises(nova.notifier.BadPriorityException,
nova.notifier.notify, 'event_name', 'publisher_id',
'event_type', 'not a priority', dict(a=3))
+
+ def test_rabbit_priority_queue(self):
+ self.stubs.Set(nova.flags.FLAGS, 'notification_driver',
+ 'nova.notifier.rabbit_notifier.RabbitNotifier')
+ self.stubs.Set(nova.flags.FLAGS, 'notification_topic',
+ 'testnotify')
+
+ self.test_topic = None
+
+ def mock_cast(context, topic, msg):
+ self.test_topic = topic
+
+ self.stubs.Set(nova.rpc, 'cast', mock_cast)
+ nova.notifier.notify('event_name', 'publisher_id',
+ 'event_type', 'DEBUG', dict(a=3))
+ self.assertEqual(self.test_topic, 'testnotify.debug')
+