2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-10-25 13:25:02 -04:00
|
|
|
|
|
|
|
describe SpamRule::AutoBlock do
|
|
|
|
|
|
|
|
before do
|
2016-06-15 10:51:26 -04:00
|
|
|
SiteSetting.flags_required_to_hide_post = 0 # never
|
2016-06-15 13:18:54 -04:00
|
|
|
SiteSetting.num_spam_flags_to_block_new_user = 2
|
2016-06-15 10:51:26 -04:00
|
|
|
SiteSetting.num_users_to_block_new_user = 2
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'perform' do
|
2014-09-05 01:20:39 -04:00
|
|
|
let(:post) { Fabricate.build(:post, user: Fabricate.build(:user, trust_level: TrustLevel[0])) }
|
2013-10-25 13:25:02 -04:00
|
|
|
subject { described_class.new(post.user) }
|
|
|
|
|
|
|
|
it 'takes no action if user should not be blocked' do
|
|
|
|
subject.stubs(:block?).returns(false)
|
|
|
|
subject.expects(:block_user).never
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'delivers punishment when user should be blocked' do
|
|
|
|
subject.stubs(:block?).returns(true)
|
|
|
|
subject.expects(:block_user)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'num_spam_flags_against_user' do
|
|
|
|
before { described_class.any_instance.stubs(:block_user) }
|
|
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
let(:enforcer) { described_class.new(post.user) }
|
|
|
|
subject { enforcer.num_spam_flags_against_user }
|
|
|
|
|
|
|
|
it 'returns 0 when there are no flags' do
|
|
|
|
expect(subject).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 0 when there is one flag that has a reason other than spam' do
|
|
|
|
Fabricate(:flag, post: post, post_action_type_id: PostActionType.types[:off_topic])
|
|
|
|
expect(subject).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 2 when there are two flags with spam as the reason' do
|
|
|
|
2.times { Fabricate(:flag, post: post, post_action_type_id: PostActionType.types[:spam]) }
|
|
|
|
expect(subject).to eq(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 2 when there are two spam flags, each on a different post' do
|
|
|
|
Fabricate(:flag, post: post, post_action_type_id: PostActionType.types[:spam])
|
|
|
|
Fabricate(:flag, post: Fabricate(:post, user: post.user), post_action_type_id: PostActionType.types[:spam])
|
|
|
|
expect(subject).to eq(2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'num_users_who_flagged_spam_against_user' do
|
|
|
|
before { described_class.any_instance.stubs(:block_user) }
|
|
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
let(:enforcer) { described_class.new(post.user) }
|
|
|
|
subject { enforcer.num_users_who_flagged_spam_against_user }
|
|
|
|
|
|
|
|
it 'returns 0 when there are no flags' do
|
|
|
|
expect(subject).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 0 when there is one flag that has a reason other than spam' do
|
|
|
|
Fabricate(:flag, post: post, post_action_type_id: PostActionType.types[:off_topic])
|
|
|
|
expect(subject).to eq(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 1 when there is one spam flag' do
|
|
|
|
Fabricate(:flag, post: post, post_action_type_id: PostActionType.types[:spam])
|
|
|
|
expect(subject).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 2 when there are two spam flags from 2 users' do
|
|
|
|
Fabricate(:flag, post: post, post_action_type_id: PostActionType.types[:spam])
|
|
|
|
Fabricate(:flag, post: post, post_action_type_id: PostActionType.types[:spam])
|
|
|
|
expect(subject).to eq(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 1 when there are two spam flags on two different posts from 1 user' do
|
|
|
|
flagger = Fabricate(:user)
|
|
|
|
Fabricate(:flag, post: post, user: flagger, post_action_type_id: PostActionType.types[:spam])
|
|
|
|
Fabricate(:flag, post: Fabricate(:post, user: post.user), user: flagger, post_action_type_id: PostActionType.types[:spam])
|
|
|
|
expect(subject).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-15 10:51:26 -04:00
|
|
|
describe 'num_tl3_flags_against_user' do
|
|
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
let(:enforcer) { described_class.new(post.user) }
|
|
|
|
|
|
|
|
it "counts flags of all types from tl3 users only" do
|
|
|
|
Fabricate(:flag, post: post, user: Fabricate(:user, trust_level: 1), post_action_type_id: PostActionType.types[:inappropriate])
|
|
|
|
expect(enforcer.num_tl3_flags_against_user).to eq(0)
|
|
|
|
Fabricate(:flag, post: post, user: Fabricate(:user, trust_level: 3), post_action_type_id: PostActionType.types[:inappropriate])
|
|
|
|
expect(enforcer.num_tl3_flags_against_user).to eq(1)
|
|
|
|
Fabricate(:flag, post: post, user: Fabricate(:user, trust_level: 1), post_action_type_id: PostActionType.types[:spam])
|
|
|
|
Fabricate(:flag, post: post, user: Fabricate(:user, trust_level: 3), post_action_type_id: PostActionType.types[:spam])
|
|
|
|
expect(enforcer.num_tl3_flags_against_user).to eq(2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'num_tl3_users_who_flagged' do
|
|
|
|
let(:post) { Fabricate(:post) }
|
|
|
|
let(:enforcer) { described_class.new(post.user) }
|
|
|
|
|
|
|
|
it "counts only tl3 users who flagged with any type" do
|
|
|
|
Fabricate(:flag, post: post, user: Fabricate(:user, trust_level: 1), post_action_type_id: PostActionType.types[:inappropriate])
|
|
|
|
expect(enforcer.num_tl3_users_who_flagged).to eq(0)
|
|
|
|
|
|
|
|
tl3_user1 = Fabricate(:user, trust_level: 3)
|
|
|
|
Fabricate(:flag, post: post, user: tl3_user1, post_action_type_id: PostActionType.types[:inappropriate])
|
|
|
|
expect(enforcer.num_tl3_users_who_flagged).to eq(1)
|
|
|
|
|
|
|
|
Fabricate(:flag, post: post, user: Fabricate(:user, trust_level: 1), post_action_type_id: PostActionType.types[:spam])
|
|
|
|
expect(enforcer.num_tl3_users_who_flagged).to eq(1)
|
|
|
|
|
|
|
|
Fabricate(:flag, post: post, user: Fabricate(:user, trust_level: 3), post_action_type_id: PostActionType.types[:spam])
|
|
|
|
expect(enforcer.num_tl3_users_who_flagged).to eq(2)
|
|
|
|
|
|
|
|
Fabricate(:flag, post: Fabricate(:post, user: post.user), user: tl3_user1, post_action_type_id: PostActionType.types[:inappropriate])
|
|
|
|
expect(enforcer.num_tl3_users_who_flagged).to eq(2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-25 13:25:02 -04:00
|
|
|
describe 'block_user' do
|
|
|
|
let!(:admin) { Fabricate(:admin) } # needed for SystemMessage
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
let!(:post) { Fabricate(:post, user: user) }
|
|
|
|
subject { described_class.new(user) }
|
|
|
|
|
|
|
|
before do
|
2017-07-27 21:20:09 -04:00
|
|
|
described_class.stubs(:block?).with { |u| u.id != user.id }.returns(false)
|
|
|
|
described_class.stubs(:block?).with { |u| u.id == user.id }.returns(true)
|
2013-10-25 13:25:02 -04:00
|
|
|
subject.stubs(:block?).returns(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user is not blocked' do
|
|
|
|
before do
|
2016-03-18 07:16:37 -04:00
|
|
|
UserBlocker.expects(:block).with(user, Discourse.system_user, message: :too_many_spam_flags).returns(true)
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'prevents the user from making new posts' do
|
|
|
|
subject.block_user
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(Guardian.new(user).can_create_post?(nil)).to be_falsey
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends private message to moderators' do
|
2016-06-15 10:51:26 -04:00
|
|
|
SiteSetting.notify_mods_when_user_blocked = true
|
2013-10-25 13:25:02 -04:00
|
|
|
moderator = Fabricate(:moderator)
|
|
|
|
GroupMessage.expects(:create).with do |group, msg_type, params|
|
2017-07-27 21:20:09 -04:00
|
|
|
group == (Group[:moderators].name) && msg_type == (:user_automatically_blocked) && params[:user].id == (user.id)
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
subject.block_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't send a pm to moderators if notify_mods_when_user_blocked is false" do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.notify_mods_when_user_blocked = false
|
2013-10-25 13:25:02 -04:00
|
|
|
GroupMessage.expects(:create).never
|
|
|
|
subject.block_user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user is already blocked' do
|
|
|
|
before do
|
2016-03-18 07:16:37 -04:00
|
|
|
UserBlocker.expects(:block).with(user, Discourse.system_user, message: :too_many_spam_flags).returns(false)
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't send a pm to moderators if the user is already blocked" do
|
|
|
|
GroupMessage.expects(:create).never
|
|
|
|
subject.block_user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'block?' do
|
|
|
|
|
|
|
|
context 'never been blocked' do
|
|
|
|
shared_examples "can't be blocked" do
|
|
|
|
it "returns false" do
|
|
|
|
enforcer = described_class.new(user)
|
|
|
|
enforcer.expects(:num_spam_flags_against_user).never
|
|
|
|
enforcer.expects(:num_users_who_flagged_spam_against_user).never
|
2016-06-15 10:51:26 -04:00
|
|
|
enforcer.expects(:num_flags_against_user).never
|
|
|
|
enforcer.expects(:num_users_who_flagged).never
|
2015-04-25 11:18:35 -04:00
|
|
|
expect(enforcer.block?).to eq(false)
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-05 01:20:39 -04:00
|
|
|
(1..4).each do |trust_level|
|
2013-10-25 13:25:02 -04:00
|
|
|
context "user has trust level #{trust_level}" do
|
2014-09-05 01:20:39 -04:00
|
|
|
let(:user) { Fabricate(:user, trust_level: trust_level) }
|
2013-10-25 13:25:02 -04:00
|
|
|
include_examples "can't be blocked"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "user is an admin" do
|
|
|
|
let(:user) { Fabricate(:admin) }
|
|
|
|
include_examples "can't be blocked"
|
|
|
|
end
|
|
|
|
|
|
|
|
context "user is a moderator" do
|
|
|
|
let(:user) { Fabricate(:moderator) }
|
|
|
|
include_examples "can't be blocked"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'new user' do
|
2014-09-05 01:20:39 -04:00
|
|
|
let(:user) { Fabricate(:user, trust_level: TrustLevel[0]) }
|
2013-10-25 13:25:02 -04:00
|
|
|
subject { described_class.new(user) }
|
|
|
|
|
|
|
|
it 'returns false if there are no spam flags' do
|
|
|
|
subject.stubs(:num_spam_flags_against_user).returns(0)
|
|
|
|
subject.stubs(:num_users_who_flagged_spam_against_user).returns(0)
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(subject.block?).to be_falsey
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if there are not received enough flags' do
|
|
|
|
subject.stubs(:num_spam_flags_against_user).returns(1)
|
|
|
|
subject.stubs(:num_users_who_flagged_spam_against_user).returns(2)
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(subject.block?).to be_falsey
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if there have not been enough users' do
|
|
|
|
subject.stubs(:num_spam_flags_against_user).returns(2)
|
|
|
|
subject.stubs(:num_users_who_flagged_spam_against_user).returns(1)
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(subject.block?).to be_falsey
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
2016-06-15 13:18:54 -04:00
|
|
|
it 'returns false if num_spam_flags_to_block_new_user is 0' do
|
|
|
|
SiteSetting.num_spam_flags_to_block_new_user = 0
|
2013-10-25 13:25:02 -04:00
|
|
|
subject.stubs(:num_spam_flags_against_user).returns(100)
|
|
|
|
subject.stubs(:num_users_who_flagged_spam_against_user).returns(100)
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(subject.block?).to be_falsey
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if num_users_to_block_new_user is 0' do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.num_users_to_block_new_user = 0
|
2013-10-25 13:25:02 -04:00
|
|
|
subject.stubs(:num_spam_flags_against_user).returns(100)
|
|
|
|
subject.stubs(:num_users_who_flagged_spam_against_user).returns(100)
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(subject.block?).to be_falsey
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true when there are enough flags from enough users' do
|
|
|
|
subject.stubs(:num_spam_flags_against_user).returns(2)
|
|
|
|
subject.stubs(:num_users_who_flagged_spam_against_user).returns(2)
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(subject.block?).to be_truthy
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
2016-06-15 10:51:26 -04:00
|
|
|
|
|
|
|
context "all types of flags" do
|
|
|
|
before do
|
|
|
|
SiteSetting.num_tl3_flags_to_block_new_user = 3
|
|
|
|
SiteSetting.num_tl3_users_to_block_new_user = 2
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if there are not enough flags' do
|
|
|
|
subject.stubs(:num_tl3_flags_against_user).returns(1)
|
|
|
|
subject.stubs(:num_tl3_users_who_flagged).returns(1)
|
|
|
|
expect(subject.block?).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if enough flags but not enough users' do
|
|
|
|
subject.stubs(:num_tl3_flags_against_user).returns(3)
|
|
|
|
subject.stubs(:num_tl3_users_who_flagged).returns(1)
|
|
|
|
expect(subject.block?).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if enough flags and users' do
|
|
|
|
subject.stubs(:num_tl3_flags_against_user).returns(3)
|
|
|
|
subject.stubs(:num_tl3_users_who_flagged).returns(2)
|
|
|
|
expect(subject.block?).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "blocked, but has higher trust level now" do
|
2014-09-05 01:20:39 -04:00
|
|
|
let(:user) { Fabricate(:user, blocked: true, trust_level: TrustLevel[1]) }
|
2013-10-25 13:25:02 -04:00
|
|
|
subject { described_class.new(user) }
|
|
|
|
|
|
|
|
it 'returns false' do
|
2014-09-25 11:44:48 -04:00
|
|
|
expect(subject.block?).to be_truthy
|
2013-10-25 13:25:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|