2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00

FIX: in readonly mode don't double count pages

This commit is contained in:
Sam 2017-10-25 13:19:43 +11:00
parent d9a9ad3edb
commit 877b7be579
4 changed files with 53 additions and 12 deletions

View file

@ -2,6 +2,7 @@ require 'rails_helper'
describe ApplicationRequest do
before do
ApplicationRequest.last_flush = Time.now.utc
ApplicationRequest.clear_cache!
end
@ -13,19 +14,46 @@ describe ApplicationRequest do
ApplicationRequest.increment!(key, opts)
end
def disable_date_flush!
freeze_time(Time.now)
ApplicationRequest.last_flush = Time.now.utc
end
it 'works even if redis is in readonly' do
disable_date_flush!
inc(:http_total)
inc(:http_total)
$redis.slaveof("127.0.0.1", 666)
# flush will be deferred no error raised
inc(:http_total, autoflush: 3)
$redis.slaveof("no", "one")
inc(:http_total, autoflush: 3)
expect(ApplicationRequest.http_total.first.count).to eq(3)
end
it 'logs nothing for an unflushed increment' do
ApplicationRequest.increment!(:anon)
expect(ApplicationRequest.count).to eq(0)
end
it 'can automatically flush' do
t1 = Time.now.utc.at_midnight
freeze_time(t1)
disable_date_flush!
inc(:http_total)
inc(:http_total)
inc(:http_total, autoflush: 3)
expect(ApplicationRequest.http_total.first.count).to eq(3)
inc(:http_total)
inc(:http_total)
inc(:http_total, autoflush: 3)
expect(ApplicationRequest.http_total.first.count).to eq(6)
end
it 'can flush based on time' do