aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2012-04-20 14:56:17 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2012-04-20 14:56:17 +0100
commit89c47f0aa9acaf5ed9b361e4e9efbbd7e3da8efc (patch)
treefb25f309ab16a9bcf810b5e4d2f16a599026ef1d /test
parent99073c56f03ff3978e6106c9760ec389ef6c3745 (diff)
Updated tests to use coupled processor/notifier.
Diffstat (limited to 'test')
-rw-r--r--test/tc_mauve_alert_changed.rb27
-rw-r--r--test/tc_mauve_notification.rb30
2 files changed, 34 insertions, 23 deletions
diff --git a/test/tc_mauve_alert_changed.rb b/test/tc_mauve_alert_changed.rb
index 167ea75..6cd51fb 100644
--- a/test/tc_mauve_alert_changed.rb
+++ b/test/tc_mauve_alert_changed.rb
@@ -24,6 +24,10 @@ class TcMauveAlertChanged < Mauve::UnitTest
def test_reminder
config=<<EOF
+server {
+ use_notification_buffer false
+}
+
notification_method("email") {
debug!
deliver_to_queue []
@@ -63,8 +67,6 @@ EOF
# In order to send the notification and stick in the reminder, we need to
# process the buffer.
#
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
-
assert_equal(notifications, notification_buffer.length)
assert_equal(reminders, AlertChanged.count)
@@ -82,12 +84,7 @@ EOF
alert.clear!
notifications += 1
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(notifications, notification_buffer.length)
- #
- # Process the buffer again
- #
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(reminders, AlertChanged.count)
Timecop.freeze(Time.now + 10.minutes)
@@ -95,7 +92,6 @@ EOF
#
# Send NO MORE notifications.
#
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(notifications, notification_buffer.length)
assert_equal(reminders, AlertChanged.count)
@@ -103,6 +99,10 @@ EOF
def test_only_send_one_alert_on_unacknowledge
config=<<EOF
+server {
+ use_notification_buffer false
+}
+
notification_method("email") {
debug!
deliver_to_queue []
@@ -131,12 +131,10 @@ EOF
alert = Alert.new(:source => "test", :alert_id => "test_alert", :summary => "test alert")
alert.raise!
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(1, notification_buffer.length, "Wrong no of notifications sent after raise.")
assert_equal(1, AlertChanged.count, "Wrong no of AlertChangeds created after raise.")
alert.acknowledge!(Configuration.current.people["test_person"], Time.now + 10.minutes)
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(2, notification_buffer.length, "Wrong no of notifications sent after raise.")
assert_equal(2, AlertChanged.count, "Wrong no of AlertChangeds created after acknowledge.")
@@ -145,7 +143,6 @@ EOF
#
Timecop.freeze(Time.now + 10.minutes)
AlertChanged.all.each{|ac| ac.poll}
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(2, notification_buffer.length, "Extra notifications sent when alertchangeds are polled.")
#
@@ -154,19 +151,21 @@ EOF
alert.poll
assert(!alert.acknowledged?,"Alert not unacknowledged")
assert(alert.raised?,"Alert not raised following unacknowledgment")
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(3, notification_buffer.length, "No re-raise notification sent.")
#
# If we poll the AlertChangeds again, no further notification should be sent.
#
AlertChanged.all.each{|ac| ac.poll}
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(3, notification_buffer.length, "Extra notifications sent when alertchangeds are polled.")
end
def test_only_set_one_alert_changed_on_a_reminder_after_multiple_raises_and_clears
config=<<EOF
+server {
+ use_notification_buffer false
+}
+
notification_method("email") {
debug!
deliver_to_queue []
@@ -211,7 +210,6 @@ EOF
#
# No notification should have been sent, since it is the middle of the night
#
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(0, notification_buffer.length, "No notifications should have been sent.")
assert(alert.cleared?)
@@ -222,7 +220,6 @@ EOF
#
# Still no alerts should be sent.
#
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(0, notification_buffer.length, "No notifications should have been sent.")
assert(alert.raised?)
diff --git a/test/tc_mauve_notification.rb b/test/tc_mauve_notification.rb
index bac389f..7ff0d79 100644
--- a/test/tc_mauve_notification.rb
+++ b/test/tc_mauve_notification.rb
@@ -185,6 +185,10 @@ class TcMauveNotification < Mauve::UnitTest
t = Time.now
config=<<EOF
+server {
+ use_notification_buffer false
+}
+
notification_method("email") {
debug!
deliver_to_queue []
@@ -251,7 +255,6 @@ EOF
#
# Also make sure that only 2 notifications has been sent..
#
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(2, notification_buffer.size, "Wrong number of notifications sent")
#
@@ -277,14 +280,25 @@ EOF
# Makes sure a reminder is set at the start of the notify clause.
#
def test_reminder_is_set_at_start_of_during
-
config=<<EOF
+server {
+ use_notification_buffer false
+}
+
+notification_method("email") {
+ debug!
+ deliver_to_queue []
+ disable_normal_delivery!
+}
+
person ("test1") {
- all { true }
+ email "test1@example.com"
+ all { email }
}
person ("test2") {
- all { true }
+ email "test2@example.com"
+ all { email }
}
alert_group("default") {
@@ -315,7 +329,6 @@ EOF
)
alert.raise!
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
assert_equal(1, Alert.count, "Wrong number of alerts saved")
assert_equal(1, AlertChanged.count, "Wrong number of reminders inserted")
@@ -324,7 +337,6 @@ EOF
assert_equal("urgent", a.level, "Level is wrong for #{a.person}")
assert_equal("raised", a.update_type, "Update type is wrong for #{a.person}")
assert_equal(Time.now + 5.minutes, a.remind_at,"reminder time is wrong for #{a.person}")
-
end
@@ -335,6 +347,10 @@ EOF
def test_no_race_conditions_in_during
config=<<EOF
+server {
+ use_notification_buffer false
+}
+
notification_method("email") {
debug!
deliver_to_queue []
@@ -383,8 +399,6 @@ EOF
Timecop.travel(Time.now + 7.hours + 59.minutes + 59.seconds)
alert.raise!
- assert_nothing_raised{ Notifier.instance.__send__(:main_loop) }
-
assert_equal(1, notification_buffer.size, "Wrong number of notifications sent")
end