mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
702d0620d7
This change converts the min_trust_to_create_topic site setting to create_topic_allowed_groups. See: https://meta.discourse.org/t/283408 - Hides the old setting - Adds the new site setting - Add a deprecation warning - Updates to use the new setting - Adds a migration to fill in the new setting if the old setting was changed - Adds an entry to the site_setting.keywords section - Updates tests to account for the new change - After a couple of months, we will remove the min_trust_to_create_topicsetting entirely. Internal ref: /t/117248
74 lines
2.4 KiB
Ruby
74 lines
2.4 KiB
Ruby
# encoding: UTF-8
|
|
# frozen_string_literal: true
|
|
|
|
RSpec.describe "spammers on same IP" do
|
|
let(:ip_address) { "182.189.119.174" }
|
|
let!(:spammer1) { Fabricate(:user, ip_address: ip_address, refresh_auto_groups: true) }
|
|
let!(:spammer2) { Fabricate(:user, ip_address: ip_address, refresh_auto_groups: true) }
|
|
let(:spammer3) { Fabricate(:user, ip_address: ip_address, refresh_auto_groups: true) }
|
|
|
|
context "when flag_sockpuppets is disabled" do
|
|
let!(:first_post) { create_post(user: spammer1) }
|
|
let!(:second_post) { create_post(user: spammer2, topic: first_post.topic) }
|
|
|
|
it "should not increase spam count" do
|
|
expect(first_post.reload.spam_count).to eq(0)
|
|
expect(second_post.reload.spam_count).to eq(0)
|
|
end
|
|
end
|
|
|
|
context "when flag_sockpuppets is enabled" do
|
|
before { SiteSetting.flag_sockpuppets = true }
|
|
|
|
after { SiteSetting.flag_sockpuppets = false }
|
|
|
|
context "when first spammer starts a topic" do
|
|
let!(:first_post) { create_post(user: spammer1) }
|
|
|
|
context "when second spammer replies" do
|
|
let!(:second_post) { create_post(user: spammer2, topic: first_post.topic) }
|
|
|
|
it "should increase spam count" do
|
|
expect(first_post.reload.spam_count).to eq(1)
|
|
expect(second_post.reload.spam_count).to eq(1)
|
|
end
|
|
|
|
context "with third spam post" do
|
|
let!(:third_post) { create_post(user: spammer3, topic: first_post.topic) }
|
|
|
|
it "should increase spam count" do
|
|
expect(first_post.reload.spam_count).to eq(1)
|
|
expect(second_post.reload.spam_count).to eq(1)
|
|
expect(third_post.reload.spam_count).to eq(1)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when first user is not new" do
|
|
let!(:old_user) do
|
|
Fabricate(
|
|
:user,
|
|
ip_address: ip_address,
|
|
created_at: 2.days.ago,
|
|
trust_level: TrustLevel[1],
|
|
refresh_auto_groups: true,
|
|
)
|
|
end
|
|
|
|
context "when first user starts a topic" do
|
|
let!(:first_post) { create_post(user: old_user) }
|
|
|
|
context "with a reply by a new user at the same IP address" do
|
|
let!(:second_post) { create_post(user: spammer2, topic: first_post.topic) }
|
|
|
|
it "should increase the spam count correctly" do
|
|
expect(first_post.reload.spam_count).to eq(0)
|
|
expect(second_post.reload.spam_count).to eq(1)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|