notice_spec.rb
5.25 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
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
require 'spec_helper'
describe Notice do
context 'validations' do
it 'requires a backtrace' do
notice = Fabricate.build(:notice, :backtrace => nil)
notice.should_not be_valid
notice.errors[:backtrace].should include("can't be blank")
end
it 'requires the server_environment' do
notice = Fabricate.build(:notice, :server_environment => nil)
notice.should_not be_valid
notice.errors[:server_environment].should include("can't be blank")
end
it 'requires the notifier' do
notice = Fabricate.build(:notice, :notifier => nil)
notice.should_not be_valid
notice.errors[:notifier].should include("can't be blank")
end
end
context '.in_app_backtrace_line?' do
let(:backtrace) do [{
'number' => rand(999),
'file' => '[GEM_ROOT]/gems/actionpack-3.0.4/lib/action_controller/metal/rescue.rb',
'method' => ActiveSupport.methods.shuffle.first
}, {
'number' => rand(999),
'file' => '[PROJECT_ROOT]/vendor/plugins/seamless_database_pool/lib/seamless_database_pool/controller_filter.rb',
'method' => ActiveSupport.methods.shuffle.first
}, {
'number' => rand(999),
'file' => '[PROJECT_ROOT]/lib/set_headers.rb',
'method' => ActiveSupport.methods.shuffle.first
}]
end
it "should be false for line not starting with PROJECT_ROOT" do
Notice.in_app_backtrace_line?(backtrace[0]).should == false
end
it "should be false for file in vendor dir" do
Notice.in_app_backtrace_line?(backtrace[1]).should == false
end
it "should be true for application file" do
Notice.in_app_backtrace_line?(backtrace[2]).should == true
end
end
describe "key sanitization" do
before do
@hash = { "some.key" => { "$nested.key" => {"$Path" => "/", "some$key" => "key"}}}
@hash_sanitized = { "some.key" => { "$nested.key" => {"$Path" => "/", "some$key" => "key"}}}
end
[:server_environment, :request, :notifier].each do |key|
it "replaces . with . and $ with $ in keys used in #{key}" do
err = Fabricate(:err)
notice = Fabricate(:notice, :err => err, key => @hash)
notice.send(key).should == @hash_sanitized
end
end
end
describe "user agent" do
it "should be parsed and human-readable" do
notice = Fabricate.build(:notice, :request => {'cgi-data' => {'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16'}})
notice.user_agent.browser.should == 'Chrome'
notice.user_agent.version.to_s.should =~ /^10\.0/
end
it "should be nil if HTTP_USER_AGENT is blank" do
notice = Fabricate.build(:notice)
notice.user_agent.should == nil
end
end
describe "user agent string" do
it "should be parsed and human-readable" do
notice = Fabricate.build(:notice, :request => {'cgi-data' => {'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16'}})
notice.user_agent_string.should == 'Chrome 10.0.648.204'
end
it "should be nil if HTTP_USER_AGENT is blank" do
notice = Fabricate.build(:notice)
notice.user_agent_string.should == "N/A"
end
end
describe "host" do
it "returns host if url is valid" do
notice = Fabricate.build(:notice, :request => {'url' => "http://example.com/resource/12"})
notice.host.should == 'example.com'
end
it "returns 'N/A' when url is not valid" do
notice = Fabricate.build(:notice, :request => {'url' => "some string"})
notice.host.should == 'N/A'
end
it "returns 'N/A' when url is empty" do
notice = Fabricate.build(:notice, :request => {})
notice.host.should == 'N/A'
end
end
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
end