-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patherror_creator_spec.rb
225 lines (183 loc) · 6.77 KB
/
error_creator_spec.rb
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
module ExceptionHunter
describe ErrorCreator do
describe '.call' do
subject { described_class.call(tag: tag, **error_attributes) }
let(:tag) { ExceptionHunter::ErrorCreator::HTTP_TAG }
context 'with correct attributes' do
let(:error_attributes) do
{
class_name: 'SomeError',
message: 'Something went very wrong 123',
environment_data: {
hide: { value_to_hide: 'hide this value' },
"hide_this_too": 'hide this',
hide_this_hash: { "hide_this_hash": 'hide this' }
},
occurred_at: Time.now.to_i
}
end
context 'with a matching error group' do
let!(:error_group) do
create(:error_group,
error_class_name: 'SomeError',
message: 'Something went very wrong 567')
end
it 'creates an error ' do
expect { subject }.to change(Error, :count).by(1)
end
it 'returns the error' do
expect(subject).to be_an(Error)
end
it 'binds the error to the error group ' do
subject
expect(Error.last.error_group).to eq(error_group)
end
it 'updates the error message' do
expect { subject }.to change { error_group.reload.message }.to('Something went very wrong 123')
end
context 'with repeating tag' do
before do
described_class.call(tag: ErrorCreator::HTTP_TAG, **error_attributes)
end
it 'does not repeat tags' do
expect(error_group.reload.tags).to eq(['HTTP'])
subject
expect(error_group.reload.tags).to eq(['HTTP'])
end
end
context 'with value to hide' do
before do
allow(ExceptionHunter::Config)
.to receive(:sensitive_fields)
.and_return(%i[value_to_hide hide_this hide_this_hash])
subject
end
it 'saves the error with hidden values' do
environment_data = Error.last.environment_data
expect(environment_data['hide']['value_to_hide']).to eq('[FILTERED]')
expect(environment_data['hide_this_too']).to eq('[FILTERED]')
expect(environment_data['hide_this_hash']).to eq('[FILTERED]')
end
end
context 'with slack notifications' do
let!(:original_queue_adapter) { ActiveJob::Base.queue_adapter }
let(:notifiers) { [notifier_1, notifier_2] }
let(:notifier_1) do
{
name: :slack,
options: {
webhook: 'test_webhook_1'
}
}
end
let(:notifier_2) do
{
name: :slack,
options: {
webhook: 'test_webhook_2'
}
}
end
before do
ActiveJob::Base.queue_adapter = :test
allow(ExceptionHunter::Config)
.to receive(:notifiers)
.and_return(notifiers)
end
after do
ActiveJob::Base.queue_adapter = original_queue_adapter
end
it 'enqueues job to send slack message to all webhooks' do
subject
jobs = ActiveJob::Base.queue_adapter.enqueued_jobs.map do |job|
(job['arguments'] || job[:args]).last['notifier']['options']['webhook']
end
expect(jobs).to contain_exactly('test_webhook_1', 'test_webhook_2')
end
it 'enqueues job to send slack message to all webhooks with a delay between 50 and 70 seconds' do
one_minute_from_now = Time.now.to_i + 1.minute
subject
ActiveJob::Base.queue_adapter.enqueued_jobs.each do |job|
expect(job[:at]).to be_within(10.seconds).of(one_minute_from_now)
end
end
end
context 'when async logging is set to true' do
let!(:original_queue_adapter) { ActiveJob::Base.queue_adapter }
let(:async_logging) { true }
let(:tag) { ExceptionHunter::ErrorCreator::HTTP_TAG }
before do
ActiveJob::Base.queue_adapter = :test
allow(ExceptionHunter::Config)
.to receive(:async_logging)
.and_return(async_logging)
end
after do
ActiveJob::Base.queue_adapter = original_queue_adapter
end
it 'enqueues job to log async' do
expect { subject }.to have_enqueued_job(AsyncLoggingJob).with(tag, error_attributes)
end
end
end
context 'without a matching error group' do
it 'creates an error' do
expect { subject }.to change(Error, :count).by(1)
end
it 'returns the error' do
expect(subject).to be_an(Error)
end
it 'creates an error group and binds the error to it' do
expect { subject }.to change(ErrorGroup, :count).by(1)
expect(Error.last.error_group).to eq(ErrorGroup.last)
end
end
end
context 'with incorrect attributes' do
let(:error_attributes) do
{ class_name: nil }
end
it 'returns false' do
expect(subject).to be false
end
it 'does not create a new error' do
expect { subject }.not_to change(Error, :count)
end
it 'does not create an error group' do
expect { subject }.not_to change(ErrorGroup, :count)
end
end
context 'when error tracking is disabled' do
let(:error_attributes) do
{ class_name: 'SomeError', message: 'Something went very wrong 123' }
end
before do
Config.enabled = false
end
after do
Config.enabled = true
end
it 'does not track errors' do
expect { subject }.not_to change(Error, :count)
end
end
context 'ignored errors' do
let(:error_attributes) do
{ class_name: 'SomeError', message: 'Something went very wrong 123' }
end
let!(:ignored_error_group) do
create(:error_group, :ignored_group,
error_class_name: 'SomeError',
message: 'Something went very wrong 567')
end
it 'returns nil' do
expect(subject).to be_nil
end
it 'creates an error ' do
expect { subject }.to change(Error, :count).by(1)
expect(ErrorGroup.last.status).to eq(ErrorGroup.ignored.last.status)
end
end
end
end
end