mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
e219588142
* Introduced fab!, a helper that creates database state for a group It's almost identical to let_it_be, except: 1. It creates a new object for each test by default, 2. You can disable it using PREFABRICATION=0
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe GivenDailyLike do
|
|
|
|
it 'no errors without a user' do
|
|
expect(-> { GivenDailyLike.increment_for(nil) }).not_to raise_error
|
|
expect(-> { GivenDailyLike.decrement_for(nil) }).not_to raise_error
|
|
end
|
|
|
|
context 'with a user' do
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
def value_for(user_id, date)
|
|
GivenDailyLike.find_for(user_id, date).pluck(:likes_given)[0] || 0
|
|
end
|
|
|
|
def limit_reached_for(user_id, date)
|
|
GivenDailyLike.find_for(user_id, date).pluck(:limit_reached)[0] || false
|
|
end
|
|
|
|
it 'can be incremented and decremented' do
|
|
SiteSetting.max_likes_per_day = 2
|
|
|
|
dt = Date.today
|
|
freeze_time dt
|
|
|
|
expect(value_for(user.id, dt)).to eq(0)
|
|
expect(limit_reached_for(user.id, dt)).to eq(false)
|
|
|
|
GivenDailyLike.increment_for(user.id)
|
|
expect(value_for(user.id, dt)).to eq(1)
|
|
expect(limit_reached_for(user.id, dt)).to eq(false)
|
|
|
|
GivenDailyLike.increment_for(user.id)
|
|
expect(value_for(user.id, dt)).to eq(2)
|
|
expect(limit_reached_for(user.id, dt)).to eq(true)
|
|
|
|
GivenDailyLike.decrement_for(user.id)
|
|
expect(value_for(user.id, dt)).to eq(1)
|
|
expect(limit_reached_for(user.id, dt)).to eq(false)
|
|
|
|
GivenDailyLike.decrement_for(user.id)
|
|
expect(value_for(user.id, dt)).to eq(0)
|
|
expect(limit_reached_for(user.id, dt)).to eq(false)
|
|
end
|
|
|
|
end
|
|
|
|
end
|