$:.unshift "../lib" require 'th_mauve' require 'mauve/alert' require 'mauve/notification' require 'mauve/configuration' require 'mauve/configuration_builder' require 'mauve/configuration_builders' require 'mauve/mauve_time' class TcMauveDuringRunner < Mauve::UnitTest include Mauve def setup super setup_database end def teardown teardown_database super end def test_initialize alert = Alert.new time = Time.now during = Proc.new { false } dr = DuringRunner.new(time, alert, &during) assert_equal(dr.alert, alert) assert_equal(dr.time, time) assert_equal(dr.during, during) end def test_now? alert = Alert.new time = Time.now during = Proc.new { @test_time } dr = DuringRunner.new(time, alert, &during) assert_equal(time, dr.now?) assert_equal(time+3600, dr.now?(time+3600)) assert_equal(time, dr.time) end def test_find_next # # An alert is supposed to remind someone every six hours during working # hours, and it is raised outside working hours. Assuming it is still # raised when working hours start, when should the first reminder get sent? # # (a) As soon as working hours commence. # (b) At some point in the first six hours of working hours. # (c) After six working hours. # # (12:38:19) Nick: a) # # This should give us midnight last sunday night. # now = Time.now # # first working hour on Monday workday_morning = now.in_x_hours(0,"working") assert(workday_morning != now, "booo") # # This should alert at exactly first thing on Monday morning. # dr = DuringRunner.new(now, nil){ working_hours? } assert_equal(dr.find_next(6.hours), workday_morning) # # This should alert six hours later than the last one. # dr = DuringRunner.new(workday_morning, nil){ working_hours? } assert_equal(dr.find_next(6.hours), workday_morning + 6.hours) # # Now assuming the working day is not 12 hours long, if we progress to 6 # hours in the future then the next alert should be first thing on Tuesday. # dr = DuringRunner.new(workday_morning + 6.hours, nil){ working_hours? } tuesday_morning = workday_morning+24.hours assert_equal(dr.find_next(6.hours), tuesday_morning) # # If an alert is too far in the future (a week) return nil. # dr = DuringRunner.new(workday_morning, nil){ @test_time > (@time + 12.days) } assert_nil(dr.find_next) end def test_x_in_list_of_y mdr = Mauve::DuringRunner.new(Time.now) [ [[0,1,3,4], 2, false], [[0,2,4,6], 2, true], [[0..1,3..6],2, false], [[0..2, 4,5],2, true], [[0,1..3], 2, true], ].each do |y,x,result| assert_equal(result, mdr.send(:x_in_list_of_y, x,y)) end end def test_hours_in_day t = Time.gm(2010,1,2,3,4,5) # => Sat Jan 02 03:04:05 UTC 2010 mdr = Mauve::DuringRunner.new(t) [ [[0,1,3,4], true], [[0,2,4,6], false], [[[0,1,3],4], true], [[[0,2,4],6], false], [[0..1,3..6], true], [[0..2, 4,5], false], [[0,1..3], true], [[4..12], false] ].each do |hours, result| assert_equal(result, mdr.send(:hours_in_day, hours)) end end def test_days_in_week t = Time.gm(2010,1,2,3,4,5) # => Sat Jan 02 03:04:05 UTC 2010 mdr = Mauve::DuringRunner.new(t) [ [[0,1,3,4], false], [[0,2,4,6], true], [[[0,1,3],4], false], [[[0,2,4],6], true], [[0..1,3..6], true], [[0..2, 4,5], false], [[0,1..3], false], [[4..6], true] ].each do |days, result| assert_equal(result, mdr.send(:days_in_week, days), "#{t.wday} in #{days.join(", ")}") end end def test_unacknowledged end end class TcMauveNotification < Mauve::UnitTest include Mauve def setup super setup_database end def teardown teardown_database super end def test_notify t = Time.now config=< "test", :source => "test", :subject => "test" ) 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(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}") # # 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=< "test", :source => "test", :subject => "test" ) alert.raise! 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 end