2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2015-02-03 23:10:54 -05:00
|
|
|
|
|
|
|
describe ApplicationRequest do
|
|
|
|
before do
|
|
|
|
ApplicationRequest.clear_cache!
|
|
|
|
end
|
|
|
|
|
2017-07-23 22:41:37 -04:00
|
|
|
after do
|
|
|
|
ApplicationRequest.clear_cache!
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def inc(key, opts = nil)
|
|
|
|
ApplicationRequest.increment!(key, opts)
|
2015-02-03 23:10:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'logs nothing for an unflushed increment' do
|
|
|
|
ApplicationRequest.increment!(:anon)
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(ApplicationRequest.count).to eq(0)
|
2015-02-03 23:10:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'can automatically flush' do
|
|
|
|
t1 = Time.now.utc.at_midnight
|
|
|
|
freeze_time(t1)
|
2015-02-05 22:39:04 -05:00
|
|
|
inc(:http_total)
|
|
|
|
inc(:http_total)
|
|
|
|
inc(:http_total, autoflush: 3)
|
2015-02-03 23:10:54 -05:00
|
|
|
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(ApplicationRequest.http_total.first.count).to eq(3)
|
2015-02-05 22:39:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'can flush based on time' do
|
|
|
|
t1 = Time.now.utc.at_midnight
|
|
|
|
freeze_time(t1)
|
|
|
|
ApplicationRequest.write_cache!
|
|
|
|
inc(:http_total)
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(ApplicationRequest.count).to eq(0)
|
2015-02-05 22:39:04 -05:00
|
|
|
|
|
|
|
freeze_time(t1 + ApplicationRequest.autoflush_seconds + 1)
|
|
|
|
inc(:http_total)
|
|
|
|
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(ApplicationRequest.count).to eq(1)
|
2015-02-03 23:10:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'flushes yesterdays results' do
|
|
|
|
t1 = Time.now.utc.at_midnight
|
|
|
|
freeze_time(t1)
|
2015-02-05 22:39:04 -05:00
|
|
|
inc(:http_total)
|
2015-02-03 23:10:54 -05:00
|
|
|
freeze_time(t1.tomorrow)
|
2015-02-05 22:39:04 -05:00
|
|
|
inc(:http_total)
|
2015-02-03 23:10:54 -05:00
|
|
|
|
|
|
|
ApplicationRequest.write_cache!
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(ApplicationRequest.count).to eq(2)
|
2015-02-03 23:10:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'clears cache correctly' do
|
|
|
|
# otherwise we have test pollution
|
|
|
|
inc(:anon)
|
|
|
|
ApplicationRequest.clear_cache!
|
|
|
|
ApplicationRequest.write_cache!
|
|
|
|
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(ApplicationRequest.count).to eq(0)
|
2015-02-03 23:10:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'logs a few counts once flushed' do
|
|
|
|
time = Time.now.at_midnight
|
|
|
|
freeze_time(time)
|
|
|
|
|
2015-02-05 22:39:04 -05:00
|
|
|
3.times { inc(:http_total) }
|
|
|
|
2.times { inc(:http_2xx) }
|
|
|
|
4.times { inc(:http_3xx) }
|
2015-02-03 23:10:54 -05:00
|
|
|
|
|
|
|
ApplicationRequest.write_cache!
|
|
|
|
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(ApplicationRequest.http_total.first.count).to eq(3)
|
|
|
|
expect(ApplicationRequest.http_2xx.first.count).to eq(2)
|
|
|
|
expect(ApplicationRequest.http_3xx.first.count).to eq(4)
|
2015-02-03 23:10:54 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|