87 lines
3.5 KiB
Ruby
87 lines
3.5 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe RateLimitChecker, type: :labor do
|
|
let(:user) { create(:user) }
|
|
let(:article) { create(:article, user_id: user.id) }
|
|
|
|
describe "self.daily_account_follow_limit " do
|
|
it 'returns the value set in ApplicationConfig["RATE_LIMIT_FOLLOW_COUNT_DAILY"' do
|
|
expect(described_class.daily_account_follow_limit).to eq(ApplicationConfig["RATE_LIMIT_FOLLOW_COUNT_DAILY"])
|
|
end
|
|
end
|
|
|
|
describe "#limit_by_action" do
|
|
it "returns false for invalid action" do
|
|
expect(described_class.new(user).limit_by_action("random-nothing")).to eq(false)
|
|
end
|
|
|
|
it "returns true if too many comments at once" do
|
|
create_list(:comment, 10, user_id: user.id, commentable_id: article.id)
|
|
expect(described_class.new(user).limit_by_action("comment_creation")).to eq(true)
|
|
end
|
|
|
|
it "triggers ping admin when too many comments" do
|
|
allow(RateLimitCheckerWorker).to receive(:perform_async)
|
|
create_list(:comment, 10, user_id: user.id, commentable_id: article.id)
|
|
described_class.new(user).limit_by_action("comment_creation")
|
|
expect(RateLimitCheckerWorker).to have_received(:perform_async).with(user.id, "comment_creation")
|
|
end
|
|
|
|
it "returns false if allowed comment" do
|
|
create_list(:comment, 2, user_id: user.id, commentable_id: article.id)
|
|
expect(described_class.new(user).limit_by_action("comment_creation")).to eq(false)
|
|
end
|
|
|
|
it "returns true if too many published articles at once" do
|
|
create_list(:article, 10, user_id: user.id, published: true)
|
|
expect(described_class.new(user).limit_by_action("published_article_creation")).to eq(true)
|
|
end
|
|
|
|
it "returns true if a user has followed more than <daily_limit> accounts today" do
|
|
rate_limit_checker = described_class.new(user)
|
|
|
|
allow(rate_limit_checker).
|
|
to receive(:user_today_follow_count).
|
|
and_return(described_class.daily_account_follow_limit + 1)
|
|
|
|
expect(rate_limit_checker.limit_by_action("follow_account")).to eq(true)
|
|
end
|
|
|
|
it "returns false if a user's following_users_count is less than <daily_limit>" do
|
|
rate_limit_checker = described_class.new(user)
|
|
|
|
allow(user).
|
|
to receive(:following_users_count).
|
|
and_return(described_class.daily_account_follow_limit - 1)
|
|
|
|
expect(rate_limit_checker.limit_by_action("follow_account")).to eq(false)
|
|
end
|
|
|
|
it "returns false if a user has followed less than <daily_limit> accounts today" do
|
|
rate_limit_checker = described_class.new(user)
|
|
|
|
allow(rate_limit_checker).
|
|
to receive(:user_today_follow_count).
|
|
and_return(described_class.daily_account_follow_limit - 1)
|
|
|
|
expect(rate_limit_checker.limit_by_action("follow_account")).to eq(false)
|
|
end
|
|
|
|
it "returns false if published articles comment" do
|
|
create_list(:article, 2, user_id: user.id, published: true)
|
|
expect(described_class.new(user).limit_by_action("published_article_creation")).to eq(false)
|
|
end
|
|
end
|
|
|
|
describe "#limit_by_email_recipient_address" do
|
|
it "returns true if too many published articles at once" do
|
|
10.times { EmailMessage.create(to: user.email, sent_at: Time.current) }
|
|
expect(described_class.new.limit_by_email_recipient_address(user.email)).to eq(true)
|
|
end
|
|
|
|
it "returns false if published articles comment" do
|
|
2.times { EmailMessage.create(to: user.email, sent_at: Time.current) }
|
|
expect(described_class.new.limit_by_email_recipient_address(user.email)).to eq(false)
|
|
end
|
|
end
|
|
end
|