mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
63 lines
1.3 KiB
Ruby
63 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe ApplicationRequest do
|
|
|
|
before do
|
|
ApplicationRequest.clear_cache!
|
|
end
|
|
|
|
def inc(key,opts=nil)
|
|
ApplicationRequest.increment!(key,opts)
|
|
end
|
|
|
|
it 'logs nothing for an unflushed increment' do
|
|
ApplicationRequest.increment!(:anon)
|
|
ApplicationRequest.count.should == 0
|
|
end
|
|
|
|
it 'can automatically flush' do
|
|
t1 = Time.now.utc.at_midnight
|
|
freeze_time(t1)
|
|
inc(:anon)
|
|
inc(:anon)
|
|
inc(:anon, autoflush: 3)
|
|
|
|
ApplicationRequest.first.count.should == 3
|
|
end
|
|
|
|
it 'flushes yesterdays results' do
|
|
t1 = Time.now.utc.at_midnight
|
|
freeze_time(t1)
|
|
inc(:anon)
|
|
freeze_time(t1.tomorrow)
|
|
inc(:anon)
|
|
|
|
ApplicationRequest.write_cache!
|
|
ApplicationRequest.count.should == 2
|
|
end
|
|
|
|
it 'clears cache correctly' do
|
|
# otherwise we have test pollution
|
|
inc(:anon)
|
|
ApplicationRequest.clear_cache!
|
|
ApplicationRequest.write_cache!
|
|
|
|
ApplicationRequest.count.should == 0
|
|
end
|
|
|
|
it 'logs a few counts once flushed' do
|
|
time = Time.now.at_midnight
|
|
freeze_time(time)
|
|
|
|
3.times { inc(:anon) }
|
|
2.times { inc(:logged_in) }
|
|
4.times { inc(:crawler) }
|
|
|
|
ApplicationRequest.write_cache!
|
|
|
|
ApplicationRequest.anon.first.count.should == 3
|
|
ApplicationRequest.logged_in.first.count.should == 2
|
|
ApplicationRequest.crawler.first.count.should == 4
|
|
|
|
end
|
|
end
|