diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-22 12:01:17 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-22 12:01:17 +0100 |
commit | da9ef07cfa2dfd26d1e8efdce5598a7ac7806271 (patch) | |
tree | f574227852d475ef772a86366eb8a3c50da1ab1a /test/tc_mauve_notification.rb | |
parent | 8268305f172376b92957096a2154efe34e275b6a (diff) |
* Race condition fixed (fixes #1861).
* Reminders get sent at start of during period (fixes #1821)
Diffstat (limited to 'test/tc_mauve_notification.rb')
-rw-r--r-- | test/tc_mauve_notification.rb | 79 |
1 files changed, 65 insertions, 14 deletions
diff --git a/test/tc_mauve_notification.rb b/test/tc_mauve_notification.rb index 167d069..018c31a 100644 --- a/test/tc_mauve_notification.rb +++ b/test/tc_mauve_notification.rb @@ -195,7 +195,7 @@ alert_group("default") { every 10.minutes } - notify("test1") { + notify("testers") { every 15.minutes } @@ -222,30 +222,81 @@ EOF alert.raise! assert_equal(1, Alert.count, "Wrong number of alerts saved") + + # + # Also make sure that only 2 notifications has been sent.. + # + assert_equal(2, Server.instance.notification_buffer.size, "Wrong number of notifications sent") # # Although there are four clauses above for notifications, test1 should be # alerted in 10 minutes time, and the 15 minutes clause is ignored, since # 10 minutes is sooner. # - assert_equal(3, AlertChanged.count, "Wrong number of reminders inserted") + assert_equal(1, AlertChanged.count, "Wrong number of reminders inserted") + + a = AlertChanged.first + 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 + 10.minutes, a.remind_at,"reminder time is wrong for #{a.person}") # - # Also make sure that only 1 notification has been sent.. + # OK now roll the clock forward 10 minutes + # TODO + + end + + + # + # Makes sure a reminder is set at the start of the notify clause. + # + def test_reminder_is_set_at_start_of_during + + config=<<EOF +person ("test1") { + all { true } +} + +person ("test2") { + all { true } +} + +alert_group("default") { + level URGENT + notify("test1") { + every 10.minutes + } + + notify("test2") { + every 10.minutes + during { hours_in_day 8..10 } + } + +} +EOF + + # + # Wind forward until 7.55am # - assert_equal(1, Server.instance.notification_buffer.size, "Wrong number of notifications sent") + Timecop.freeze(Time.now + 7.hours + 55.minutes) - reminder_times = { - "test1" => t + 10.minutes, - "test2" => t + 1.hour, - "test3" => t + 2.hours - } + Configuration.current = ConfigurationBuilder.parse(config) + Server.instance.setup + alert = Alert.new( + :alert_id => "test", + :source => "test", + :subject => "test" + ) + alert.raise! - AlertChanged.all.each do |a| - 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(reminder_times[a.person], a.remind_at,"reminder time is wrong for #{a.person}") - end + assert_equal(1, Alert.count, "Wrong number of alerts saved") + + assert_equal(1, AlertChanged.count, "Wrong number of reminders inserted") + + a = AlertChanged.first + 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 |