|
|
|
@ -2,41 +2,118 @@
|
|
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
|
|
RSpec.describe UnreservedUsernameValidator, type: :validator do
|
|
|
|
|
describe UnreservedUsernameValidator do
|
|
|
|
|
let(:record_class) do
|
|
|
|
|
Class.new do
|
|
|
|
|
include ActiveModel::Validations
|
|
|
|
|
attr_accessor :username
|
|
|
|
|
|
|
|
|
|
validates_with UnreservedUsernameValidator
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
let(:record) { record_class.new }
|
|
|
|
|
|
|
|
|
|
describe '#validate' do
|
|
|
|
|
context 'when username is nil' do
|
|
|
|
|
it 'does not add errors' do
|
|
|
|
|
record.username = nil
|
|
|
|
|
|
|
|
|
|
expect(record).to be_valid
|
|
|
|
|
expect(record.errors).to be_empty
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'without a pam service' do
|
|
|
|
|
before do
|
|
|
|
|
allow(validator).to receive(:reserved_username?) { reserved_username }
|
|
|
|
|
validator.validate(account)
|
|
|
|
|
allow(Devise).to receive(:pam_controlled_service).and_return(false)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
let(:validator) { described_class.new }
|
|
|
|
|
let(:account) { instance_double(Account, username: username, errors: errors) }
|
|
|
|
|
let(:errors) { instance_double(ActiveModel::Errors, add: nil) }
|
|
|
|
|
context 'when there are not any reserved usernames' do
|
|
|
|
|
before do
|
|
|
|
|
stub_reserved_usernames(nil)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when @username is blank?' do
|
|
|
|
|
let(:username) { nil }
|
|
|
|
|
it 'does not add errors to the record' do
|
|
|
|
|
record.username = 'username'
|
|
|
|
|
|
|
|
|
|
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 there are reserved usernames' do
|
|
|
|
|
before do
|
|
|
|
|
stub_reserved_usernames(%w(alice bob))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with reserved_username?' do
|
|
|
|
|
let(:reserved_username) { true }
|
|
|
|
|
context 'when the username is reserved' do
|
|
|
|
|
it 'adds errors to the record' do
|
|
|
|
|
record.username = 'alice'
|
|
|
|
|
|
|
|
|
|
it 'calls errors.add' do
|
|
|
|
|
expect(errors).to have_received(:add).with(:username, :reserved)
|
|
|
|
|
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 username is not reserved' do
|
|
|
|
|
let(:reserved_username) { false }
|
|
|
|
|
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
|
|
|
|
|