Skip to content

Commit

Permalink
Add coverage for UnreservedUsernameValidator (mastodon#25590)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjankowski authored and audiodude committed Oct 23, 2023
1 parent 89908e7 commit 3b8913b
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 28 deletions.
25 changes: 20 additions & 5 deletions app/validators/unreserved_username_validator.rb
Expand Up @@ -11,16 +11,31 @@ def validate(account)

private

def reserved_username?
pam_username_reserved? || settings_username_reserved?
end

def pam_username_reserved?
pam_controlled? && pam_reserves_username?
end

def pam_controlled?
return false unless Devise.pam_authentication && Devise.pam_controlled_service
Devise.pam_authentication && Devise.pam_controlled_service
end

Rpam2.account(Devise.pam_controlled_service, @username).present?
def pam_reserves_username?
Rpam2.account(Devise.pam_controlled_service, @username)
end

def reserved_username?
return true if pam_controlled?
return false unless Setting.reserved_usernames
def settings_username_reserved?
settings_has_reserved_usernames? && settings_reserves_username?
end

def settings_has_reserved_usernames?
Setting.reserved_usernames.present?
end

def settings_reserves_username?
Setting.reserved_usernames.include?(@username.downcase)
end
end
123 changes: 100 additions & 23 deletions spec/validators/unreserved_username_validator_spec.rb
Expand Up @@ -2,41 +2,118 @@

require 'rails_helper'

RSpec.describe UnreservedUsernameValidator, type: :validator do
describe '#validate' do
before do
allow(validator).to receive(:reserved_username?) { reserved_username }
validator.validate(account)
end
describe UnreservedUsernameValidator do
let(:record_class) do
Class.new do
include ActiveModel::Validations
attr_accessor :username

let(:validator) { described_class.new }
let(:account) { instance_double(Account, username: username, errors: errors) }
let(:errors) { instance_double(ActiveModel::Errors, add: nil) }
validates_with UnreservedUsernameValidator
end
end
let(:record) { record_class.new }

context 'when @username is blank?' do
let(:username) { nil }
describe '#validate' do
context 'when username is nil' do
it 'does not add errors' do
record.username = nil

it 'not calls errors.add' do
expect(errors).to_not have_received(:add).with(:username, any_args)
expect(record).to be_valid
expect(record.errors).to be_empty
end
end

context 'when @username is not blank?' do
let(:username) { 'f' }
context 'when PAM is enabled' do
before do
allow(Devise).to receive(:pam_authentication).and_return(true)
end

context 'with a pam service available' do
let(:service) { double }
let(:pam_class) do
Class.new do
def self.account(service, username); end
end
end

before do
stub_const('Rpam2', pam_class)
allow(Devise).to receive(:pam_controlled_service).and_return(service)
end

context 'when the account exists' do
before do
allow(Rpam2).to receive(:account).with(service, 'username').and_return(true)
end

it 'adds errors to the record' do
record.username = 'username'

expect(record).to_not be_valid
expect(record.errors.first.attribute).to eq(:username)
expect(record.errors.first.type).to eq(:reserved)
end
end

context 'when the account does not exist' do
before do
allow(Rpam2).to receive(:account).with(service, 'username').and_return(false)
end

context 'with reserved_username?' do
let(:reserved_username) { true }
it 'does not add errors to the record' do
record.username = 'username'

it 'calls errors.add' do
expect(errors).to have_received(:add).with(:username, :reserved)
expect(record).to be_valid
expect(record.errors).to be_empty
end
end
end

context 'when username is not reserved' do
let(:reserved_username) { false }
context 'without a pam service' do
before do
allow(Devise).to receive(:pam_controlled_service).and_return(false)
end

context 'when there are not any reserved usernames' do
before do
stub_reserved_usernames(nil)
end

it 'does not add errors to the record' do
record.username = 'username'

expect(record).to be_valid
expect(record.errors).to be_empty
end
end

context 'when there are reserved usernames' do
before do
stub_reserved_usernames(%w(alice bob))
end

context 'when the username is reserved' do
it 'adds errors to the record' do
record.username = 'alice'

expect(record).to_not be_valid
expect(record.errors.first.attribute).to eq(:username)
expect(record.errors.first.type).to eq(:reserved)
end
end

context 'when the username is not reserved' do
it 'does not add errors to the record' do
record.username = 'chris'

expect(record).to be_valid
expect(record.errors).to be_empty
end
end
end

it 'not calls errors.add' do
expect(errors).to_not have_received(:add).with(:username, any_args)
def stub_reserved_usernames(value)
allow(Setting).to receive(:[]).with('reserved_usernames').and_return(value)
end
end
end
Expand Down

0 comments on commit 3b8913b

Please sign in to comment.