Files
codeocean/spec/models/internal_user_spec.rb
2021-05-14 22:03:06 +02:00

101 lines
2.7 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe InternalUser do
let(:password) { SecureRandom.hex }
let(:user) { described_class.create }
it 'validates the presence of an email address' do
expect(user.errors[:email]).to be_present
end
it 'validates the uniqueness of the email address' do
user.update(email: FactoryBot.create(:admin).email)
expect(user.errors[:email]).to be_present
end
context 'when not activated' do
let(:user) { FactoryBot.create(:teacher) }
before do
user.send(:setup_activation)
user.send(:send_activation_needed_email!)
end
it 'validates the confirmation of the password' do
user.update(password: password, password_confirmation: '')
expect(user.errors[:password_confirmation]).to be_present
end
it 'validates the presence of a password' do
user.update(name: Forgery(:name).full_name)
expect(user.errors[:password]).to be_present
end
end
context 'with a pending password reset' do
let(:user) { FactoryBot.create(:teacher) }
before { user.deliver_reset_password_instructions! }
it 'validates the confirmation of the password' do
user.update(password: password, password_confirmation: '')
expect(user.errors[:password_confirmation]).to be_present
end
it 'validates the presence of a password' do
user.update(name: Forgery(:name).full_name)
expect(user.errors[:password]).to be_present
end
end
context 'when complete' do
let(:user) { FactoryBot.create(:teacher, activation_state: 'active') }
it 'does not validate the confirmation of the password' do
user.update(password: password, password_confirmation: '')
expect(user.errors[:password_confirmation]).not_to be_present
end
it 'does not validate the presence of a password' do
expect(user.errors[:password]).not_to be_present
end
end
it 'validates the domain of the role' do
user.update(role: 'Foo')
expect(user.errors[:role]).to be_present
end
it 'validates the presence of a role' do
expect(user.errors[:role]).to be_present
end
describe '#admin?' do
it 'is only true for admins' do
expect(FactoryBot.build(:admin).admin?).to be true
expect(FactoryBot.build(:teacher).admin?).to be false
end
end
describe '#external_user?' do
it 'is false' do
expect(user.external_user?).to be false
end
end
describe '#internal_user?' do
it 'is true' do
expect(user.internal_user?).to be true
end
end
describe '#teacher?' do
it 'is only true for teachers' do
expect(FactoryBot.build(:admin).teacher?).to be false
expect(FactoryBot.build(:teacher).teacher?).to be true
end
end
end