notice_observer_spec.rb
2.5 KB
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
require 'spec_helper'
describe NoticeObserver do
describe "email notifications (configured individually for each app)" do
custom_thresholds = [2, 4, 8, 16, 32, 64]
before do
Errbit::Config.per_app_email_at_notices = true
@app = Fabricate(:app_with_watcher, :email_at_notices => custom_thresholds)
@err = Fabricate(:err, :problem => Fabricate(:problem, :app => @app))
end
after do
Errbit::Config.per_app_email_at_notices = false
end
custom_thresholds.each do |threshold|
it "sends an email notification after #{threshold} notice(s)" do
@err.problem.stub(:notices_count).and_return(threshold)
Mailer.should_receive(:err_notification).
and_return(mock('email', :deliver => true))
Fabricate(:notice, :err => @err)
end
end
end
describe "email notifications for a resolved issue" do
before do
Errbit::Config.per_app_email_at_notices = true
@app = Fabricate(:app_with_watcher, :email_at_notices => [1])
@err = Fabricate(:err, :problem => Fabricate(:problem, :app => @app, :notices_count => 100))
end
after do
Errbit::Config.per_app_email_at_notices = false
end
it "should send email notification after 1 notice since an error has been resolved" do
@err.problem.resolve!
Mailer.should_receive(:err_notification).
and_return(mock('email', :deliver => true))
Fabricate(:notice, :err => @err)
end
end
describe "should send a notification if a notification service is configured" do
let(:app) { app = Fabricate(:app, :email_at_notices => [1], :notification_service => Fabricate(:campfire_notification_service))}
let(:err) { Fabricate(:err, :problem => Fabricate(:problem, :app => app, :notices_count => 100)) }
before do
Errbit::Config.per_app_email_at_notices = true
end
after do
Errbit::Config.per_app_email_at_notices = false
end
it "should create a campfire notification" do
err.problem.stub(:notices_count) { 1 }
app.notification_service.stub!(:create_notification).and_return(true)
app.stub!(:notification_recipients => %w('ryan@system88.com'))
app.notification_service.should_receive(:create_notification)
Notice.create!(:err => err, :message => 'FooError: Too Much Bar', :server_environment => {'environment-name' => 'production'},
:backtrace => [{ :error => 'Le Broken' }], :notifier => { 'name' => 'Notifier', 'version' => '1', 'url' => 'http://toad.com' })
end
end
end