1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
|
$:.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 { Time.now == @test_time }
dr = DuringRunner.new(time, alert, &during)
assert_equal(true, dr.now?)
assert_equal(false, 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
dr = 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, dr.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
dr = 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, dr.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
dr = 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, dr.send(:days_in_week, days), "#{t.wday} in #{days.join(", ")}")
end
end
def test_unacknowledged
Server.instance.setup
alert = Alert.new(
:alert_id => "test",
:source => "test",
:subject => "test"
)
alert.raise!
Timecop.freeze(Time.now+1.hour)
dr = DuringRunner.new(Time.now, alert)
assert(!dr.send(:unacknowledged, 2.hours))
assert(dr.send(:unacknowledged, 1.hour))
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=<<EOF
server {
use_notification_buffer false
}
notification_method("email") {
debug!
deliver_to_queue []
disable_normal_delivery!
}
person ("test1") {
email "test1@example.com"
all { email }
}
person ("test2") {
email "test2@example.com"
all { email }
}
person ("test3") {
email "test3@example.com"
all { email }
}
people_list "testers", %w(
test1
test2
)
alert_group("default") {
level URGENT
notify("test1") {
every 10.minutes
}
notify("testers") {
every 15.minutes
}
notify("test2") {
during { hours_in_day 1..23 }
every 10.minutes
}
notify("test3") {
during { unacknowledged( 2.hours ) }
every 10.minutes
}
}
EOF
Configuration.current = ConfigurationBuilder.parse(config)
notification_buffer = Configuration.current.notification_methods["email"].deliver_to_queue
Server.instance.setup
alert = Alert.new(
:alert_id => "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, 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=<<EOF
server {
use_notification_buffer false
}
notification_method("email") {
debug!
deliver_to_queue []
disable_normal_delivery!
}
person ("test1") {
email "test1@example.com"
all { email }
}
person ("test2") {
email "test2@example.com"
all { email }
}
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
#
Timecop.freeze(Time.now + 7.hours + 55.minutes)
Configuration.current = ConfigurationBuilder.parse(config)
Server.instance.setup
alert = Alert.new(
:alert_id => "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
#
# Test to make sure that if a bondary is crossed, then the during clauses all
# work.
#
def test_no_race_conditions_in_during
config=<<EOF
server {
use_notification_buffer false
}
notification_method("email") {
debug!
deliver_to_queue []
disable_normal_delivery!
}
person ("test1") {
email "test1@example.com"
all { email }
}
person ("test2") {
email "test1@example.com"
all { email }
}
alert_group("default") {
level URGENT
notify("test1") {
every 0
during { sleep 2 ; hours_in_day 1..7 }
}
notify("test2") {
every 0
during { hours_in_day 8..10 }
}
}
EOF
#
# Wind forward until 7:59:59am
#
Configuration.current = ConfigurationBuilder.parse(config)
notification_buffer = Configuration.current.notification_methods["email"].deliver_to_queue
Server.instance.setup
alert = Alert.new(
:alert_id => "test",
:source => "test",
:subject => "test"
)
Timecop.travel(Time.now + 7.hours + 59.minutes + 59.seconds)
alert.raise!
assert_equal(1, notification_buffer.size, "Wrong number of notifications sent")
end
def test_individual_notification_preferences
config=<<EOF
server {
use_notification_buffer false
}
notification_method("email") {
debug!
deliver_to_queue []
disable_normal_delivery!
}
person ("test1") {
email "test1@example.com"
all { email }
notify {
every 300
during { !working_hours? }
}
}
person ("test2") {
email "test2@example.com"
all { email }
notify {
every 300
during { working_hours? }
}
}
alert_group("test") {
level URGENT
notify("test1")
notify("test2")
}
EOF
Configuration.current = ConfigurationBuilder.parse(config)
notification_buffer = Configuration.current.notification_methods["email"].deliver_to_queue
Server.instance.setup
alert = Alert.new(
:alert_id => "test",
:source => "test",
:subject => "test"
)
#
# This should only alert test1
#
alert.raise!
assert_equal(1, notification_buffer.size, "Wrong number of notifications sent")
assert_equal("test1@example.com", notification_buffer.pop[2])
alert.clear!
assert_equal(1, notification_buffer.size, "Wrong number of notifications sent")
assert_equal("test1@example.com", notification_buffer.pop[2])
#
# Wind forward to 9am (working hours)
#
Timecop.freeze(Time.now+9.hours)
assert(Time.now.working_hours?)
alert.raise!
assert_equal(1, notification_buffer.size, "Wrong number of notifications sent")
assert_equal("test2@example.com", notification_buffer.pop[2])
alert.clear!
assert_equal(1, notification_buffer.size, "Wrong number of notifications sent")
assert_equal("test2@example.com", notification_buffer.pop[2])
end
end
|