docbrown/spec/labor/rate_limit_checker_spec.rb
rhymes 540dd21ea0
[deploy] Use atomic increment for rate limiter counters (#7209)
* Use atomic increment for rate limiter

* Increase testing

* Fix spec with memory store

* Test uploading rate limit with Redis
2020-04-11 12:11:32 -04:00

139 lines
5 KiB
Ruby

require "rails_helper"
RSpec.describe RateLimitChecker, type: :labor do
let(:user) { create(:user) }
let(:article) { create(:article, user: user) }
let(:rate_limit_checker) { described_class.new(user) }
describe "#limit_by_action" do
it "returns false for invalid action" do
expect(rate_limit_checker.limit_by_action("random-nothing")).to be(false)
end
context "when creating comments" do
before do
allow(SiteConfig).to receive(:rate_limit_comment_creation).and_return(1)
end
it "returns true if too many comments at once" do
create_list(:comment, 2, user_id: user.id, commentable: article)
expect(rate_limit_checker.limit_by_action("comment_creation")).to be(true)
end
it "sends a slack message if a user leaves too any messages" do
create_list(:comment, 2, user_id: user.id, commentable: article)
sidekiq_assert_enqueued_with(job: SlackBotPingWorker) do
rate_limit_checker.limit_by_action("comment_creation")
end
end
it "returns false if allowed comment" do
expect(rate_limit_checker.limit_by_action("comment_creation")).to be(false)
end
end
it "returns true if too many published articles at once" do
allow(SiteConfig).to receive(:rate_limit_published_article_creation).and_return(1)
create_list(:article, 2, user_id: user.id, published: true)
expect(rate_limit_checker.limit_by_action("published_article_creation")).to be(true)
end
it "returns true if a user has followed more than <daily_limit> accounts today" do
allow(rate_limit_checker).
to receive(:user_today_follow_count).
and_return(SiteConfig.rate_limit_follow_count_daily + 1)
expect(rate_limit_checker.limit_by_action("follow_account")).to be(true)
end
it "returns false if a user's following_users_count is less than <daily_limit>" do
allow(user).
to receive(:following_users_count).
and_return(SiteConfig.rate_limit_follow_count_daily - 1)
expect(rate_limit_checker.limit_by_action("follow_account")).to be(false)
end
it "returns false if a user has followed less than <daily_limit> accounts today" do
allow(rate_limit_checker).
to receive(:user_today_follow_count).
and_return(SiteConfig.rate_limit_follow_count_daily)
expect(rate_limit_checker.limit_by_action("follow_account")).to be(false)
end
it "returns false if published articles limit has not been reached" do
expect(described_class.new(user).limit_by_action("published_article_creation")).to be(false)
end
it "returns true if a user has uploaded too many images" do
allow(Rails.cache).
to receive(:read).with("#{user.id}_image_upload").
and_return(SiteConfig.rate_limit_image_upload + 1)
expect(rate_limit_checker.limit_by_action("image_upload")).to be(true)
end
it "returns false if a user hasn't uploaded too many images" do
allow(Rails.cache).
to receive(:read).with("#{user.id}_image_upload").
and_return(SiteConfig.rate_limit_image_upload)
expect(rate_limit_checker.limit_by_action("image_upload")).to be(false)
end
it "returns true if a user has updated too many articles" do
allow(Rails.cache).
to receive(:read).with("#{user.id}_article_update").
and_return(SiteConfig.rate_limit_article_update + 1)
expect(rate_limit_checker.limit_by_action("article_update")).to be(true)
end
it "returns false if a user hasn't updated too many articles" do
allow(Rails.cache).
to receive(:read).with("#{user.id}_article_update").
and_return(SiteConfig.rate_limit_article_update)
expect(rate_limit_checker.limit_by_action("article_update")).to be(false)
end
end
describe ".track_image_uploads" do
it "calls the cache object correctly" do
allow(Rails.cache).to receive(:increment)
rate_limit_checker.track_image_uploads
key = "#{user.id}_image_upload"
expect(Rails.cache).to have_received(:increment).with(key, 1, expires_in: 30.seconds)
end
end
describe ".track_article_updates" do
it "calls the cache object correctly" do
allow(Rails.cache).to receive(:increment)
rate_limit_checker.track_article_updates
key = "#{user.id}_article_update"
expect(Rails.cache).to have_received(:increment).with(key, 1, expires_in: 30.seconds)
end
end
describe "#limit_by_email_recipient_address" do
before do
allow(SiteConfig).to receive(:rate_limit_email_recipient).and_return(1)
end
it "returns true if too many emails are sent to the same recipient" do
2.times { EmailMessage.create(to: user.email, sent_at: Time.current) }
expect(described_class.new.limit_by_email_recipient_address(user.email)).to be(true)
end
it "returns false if we are below the message limit for this recipient" do
expect(described_class.new.limit_by_email_recipient_address(user.email)).to be(false)
end
end
end