2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-11-17 19:04:29 +08:00
|
|
|
require "spam_handler"
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe SpamHandler do
|
2014-11-17 19:04:29 +08:00
|
|
|
describe "#should_prevent_registration_from_ip?" do
|
|
|
|
it "works" do
|
|
|
|
# max_new_accounts_per_registration_ip = 0 disables the check
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 0
|
2014-11-17 19:04:29 +08:00
|
|
|
|
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[1])
|
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
|
|
|
|
# only prevents registration for TL0
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 2
|
2014-11-17 19:04:29 +08:00
|
|
|
|
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[1])
|
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
|
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[1])
|
2015-01-10 00:34:37 +08:00
|
|
|
expect {
|
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
}.to raise_error(ActiveRecord::RecordInvalid)
|
2014-11-17 19:04:29 +08:00
|
|
|
end
|
|
|
|
|
2014-11-21 07:25:44 +08:00
|
|
|
it "doesn't limit registrations since there is a TL2+ user with that IP" do
|
2014-11-17 22:02:10 +08:00
|
|
|
# setup
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 0
|
2014-11-17 22:02:10 +08:00
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[2])
|
|
|
|
|
2014-11-21 07:25:44 +08:00
|
|
|
# should not limit registration
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 1
|
2014-11-21 07:25:44 +08:00
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't limit registrations since there is a staff member with that IP" do
|
|
|
|
# setup
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 0
|
2014-11-21 07:25:44 +08:00
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
Fabricate(:moderator, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
|
|
|
|
Group.refresh_automatic_groups!(:staff)
|
|
|
|
|
|
|
|
# should not limit registration
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 1
|
2014-11-17 22:02:10 +08:00
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
end
|
|
|
|
|
2020-07-27 08:23:54 +08:00
|
|
|
it "doesn't limit registrations when the IP is allowlisted" do
|
2015-06-02 17:36:45 +08:00
|
|
|
# setup
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 0
|
2015-06-02 17:36:45 +08:00
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
2020-07-27 08:23:54 +08:00
|
|
|
ScreenedIpAddress.stubs(:is_allowed?).with("42.42.42.42").returns(true)
|
2015-06-02 17:36:45 +08:00
|
|
|
|
|
|
|
# should not limit registration
|
2017-07-07 14:09:14 +08:00
|
|
|
SiteSetting.max_new_accounts_per_registration_ip = 1
|
2015-06-02 17:36:45 +08:00
|
|
|
Fabricate(:user, ip_address: "42.42.42.42", trust_level: TrustLevel[0])
|
|
|
|
end
|
2014-11-17 19:04:29 +08:00
|
|
|
end
|
|
|
|
end
|