2016-02-22 07:00:20 -08:00
|
|
|
require 'rails_helper'
|
2017-04-15 04:26:03 -07:00
|
|
|
require 'devise_two_factor/spec_helpers'
|
2016-02-22 07:00:20 -08:00
|
|
|
|
|
|
|
RSpec.describe User, type: :model do
|
2017-04-15 04:26:03 -07:00
|
|
|
it_behaves_like 'two_factor_backupable'
|
|
|
|
|
2017-05-30 06:28:56 -07:00
|
|
|
describe 'otp_secret' do
|
|
|
|
it 'is encrypted with OTP_SECRET environment variable' do
|
|
|
|
user = Fabricate(:user,
|
|
|
|
encrypted_otp_secret: "Fttsy7QAa0edaDfdfSz094rRLAxc8cJweDQ4BsWH/zozcdVA8o9GLqcKhn2b\nGi/V\n",
|
|
|
|
encrypted_otp_secret_iv: 'rys3THICkr60BoWC',
|
|
|
|
encrypted_otp_secret_salt: '_LMkAGvdg7a+sDIKjI3mR2Q==')
|
|
|
|
|
|
|
|
expect(user.otp_secret).to eq 'anotpsecretthatshouldbeencrypted'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-04 15:29:56 -07:00
|
|
|
describe 'validations' do
|
|
|
|
it 'is invalid without an account' do
|
|
|
|
user = Fabricate.build(:user, account: nil)
|
|
|
|
user.valid?
|
|
|
|
expect(user).to model_have_error_on_field(:account)
|
|
|
|
end
|
2016-02-24 15:17:01 -08:00
|
|
|
|
2017-04-04 15:29:56 -07:00
|
|
|
it 'is invalid without a valid locale' do
|
|
|
|
user = Fabricate.build(:user, locale: 'toto')
|
|
|
|
user.valid?
|
|
|
|
expect(user).to model_have_error_on_field(:locale)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is invalid without a valid email' do
|
|
|
|
user = Fabricate.build(:user, email: 'john@')
|
|
|
|
user.valid?
|
|
|
|
expect(user).to model_have_error_on_field(:email)
|
|
|
|
end
|
2017-05-07 18:32:52 -07:00
|
|
|
|
2017-06-08 06:22:01 -07:00
|
|
|
it 'is valid with an invalid e-mail that has already been saved' do
|
|
|
|
user = Fabricate.build(:user, email: 'invalid-email')
|
|
|
|
user.save(validate: false)
|
|
|
|
expect(user.valid?).to be true
|
|
|
|
end
|
|
|
|
|
2017-05-07 18:32:52 -07:00
|
|
|
it 'cleans out empty string from languages' do
|
2017-05-20 08:32:44 -07:00
|
|
|
user = Fabricate.build(:user, filtered_languages: [''])
|
2017-05-07 18:32:52 -07:00
|
|
|
user.valid?
|
2017-05-20 08:32:44 -07:00
|
|
|
expect(user.filtered_languages).to eq []
|
2017-05-07 18:32:52 -07:00
|
|
|
end
|
2017-04-04 15:29:56 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'scopes' do
|
|
|
|
describe 'recent' do
|
|
|
|
it 'returns an array of recent users ordered by id' do
|
|
|
|
user_1 = Fabricate(:user)
|
|
|
|
user_2 = Fabricate(:user)
|
2017-06-07 09:59:28 -07:00
|
|
|
expect(User.recent).to eq [user_2, user_1]
|
2017-04-04 15:29:56 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'admins' do
|
|
|
|
it 'returns an array of users who are admin' do
|
|
|
|
user_1 = Fabricate(:user, admin: false)
|
|
|
|
user_2 = Fabricate(:user, admin: true)
|
|
|
|
expect(User.admins).to match_array([user_2])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'confirmed' do
|
|
|
|
it 'returns an array of users who are confirmed' do
|
|
|
|
user_1 = Fabricate(:user, confirmed_at: nil)
|
|
|
|
user_2 = Fabricate(:user, confirmed_at: Time.now)
|
|
|
|
expect(User.confirmed).to match_array([user_2])
|
|
|
|
end
|
|
|
|
end
|
2017-05-30 06:28:56 -07:00
|
|
|
|
|
|
|
describe 'inactive' do
|
|
|
|
it 'returns a relation of inactive users' do
|
|
|
|
specified = Fabricate(:user, current_sign_in_at: 15.days.ago)
|
|
|
|
Fabricate(:user, current_sign_in_at: 13.days.ago)
|
|
|
|
|
|
|
|
expect(User.inactive).to match_array([specified])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'matches_email' do
|
|
|
|
it 'returns a relation of users whose email starts with the given string' do
|
|
|
|
specified = Fabricate(:user, email: 'specified@spec')
|
|
|
|
Fabricate(:user, email: 'unspecified@spec')
|
|
|
|
|
|
|
|
expect(User.matches_email('specified')).to match_array([specified])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with_recent_ip_address' do
|
|
|
|
it 'returns a relation of users who is, or was at last time, online with the given IP address' do
|
|
|
|
specifieds = [
|
|
|
|
Fabricate(:user, current_sign_in_ip: '0.0.0.42', last_sign_in_ip: '0.0.0.0'),
|
|
|
|
Fabricate(:user, current_sign_in_ip: nil, last_sign_in_ip: '0.0.0.42')
|
|
|
|
]
|
|
|
|
Fabricate(:user, current_sign_in_ip: '0.0.0.0', last_sign_in_ip: '0.0.0.0')
|
|
|
|
|
2017-06-07 09:59:28 -07:00
|
|
|
expect(User.with_recent_ip_address('0.0.0.42')).to match_array(specifieds)
|
2017-05-30 06:28:56 -07:00
|
|
|
end
|
|
|
|
end
|
2017-04-04 18:31:26 -07:00
|
|
|
end
|
2017-04-04 18:27:38 -07:00
|
|
|
|
2017-04-04 18:31:26 -07:00
|
|
|
let(:account) { Fabricate(:account, username: 'alice') }
|
2017-04-04 08:04:44 -07:00
|
|
|
let(:password) { 'abcd1234' }
|
2016-02-24 15:17:01 -08:00
|
|
|
|
2017-04-04 08:04:44 -07:00
|
|
|
describe 'blacklist' do
|
2017-04-25 16:22:51 -07:00
|
|
|
around(:each) do |example|
|
|
|
|
old_blacklist = Rails.configuration.x.email_blacklist
|
|
|
|
|
|
|
|
Rails.configuration.x.email_domains_blacklist = 'mvrht.com'
|
|
|
|
|
|
|
|
example.run
|
|
|
|
|
|
|
|
Rails.configuration.x.email_domains_blacklist = old_blacklist
|
|
|
|
end
|
|
|
|
|
2017-04-04 08:04:44 -07:00
|
|
|
it 'should allow a non-blacklisted user to be created' do
|
|
|
|
user = User.new(email: 'foo@example.com', account: account, password: password)
|
|
|
|
|
|
|
|
expect(user.valid?).to be_truthy
|
|
|
|
end
|
2017-04-04 18:31:26 -07:00
|
|
|
|
2017-04-04 08:04:44 -07:00
|
|
|
it 'should not allow a blacklisted user to be created' do
|
|
|
|
user = User.new(email: 'foo@mvrht.com', account: account, password: password)
|
|
|
|
|
|
|
|
expect(user.valid?).to be_falsey
|
|
|
|
end
|
2017-04-25 16:22:51 -07:00
|
|
|
|
|
|
|
it 'should not allow a subdomain blacklisted user to be created' do
|
|
|
|
user = User.new(email: 'foo@mvrht.com.topdomain.tld', account: account, password: password)
|
|
|
|
|
|
|
|
expect(user.valid?).to be_falsey
|
|
|
|
end
|
2017-04-04 08:04:44 -07:00
|
|
|
end
|
|
|
|
|
2017-04-22 19:43:42 -07:00
|
|
|
describe '#confirmed?' do
|
|
|
|
it 'returns true when a confirmed_at is set' do
|
|
|
|
user = Fabricate.build(:user, confirmed_at: Time.now.utc)
|
|
|
|
expect(user.confirmed?).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if a confirmed_at is nil' do
|
|
|
|
user = Fabricate.build(:user, confirmed_at: nil)
|
|
|
|
expect(user.confirmed?).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-02 12:07:12 -07:00
|
|
|
describe '#disable_two_factor!' do
|
2017-05-30 06:28:56 -07:00
|
|
|
it 'saves false for otp_required_for_login' do
|
2017-05-02 12:07:12 -07:00
|
|
|
user = Fabricate.build(:user, otp_required_for_login: true)
|
|
|
|
user.disable_two_factor!
|
2017-05-30 06:28:56 -07:00
|
|
|
expect(user.reload.otp_required_for_login).to be false
|
2017-05-02 12:07:12 -07:00
|
|
|
end
|
|
|
|
|
2017-05-30 06:28:56 -07:00
|
|
|
it 'saves cleared otp_backup_codes' do
|
2017-06-08 04:24:28 -07:00
|
|
|
user = Fabricate.build(:user, otp_backup_codes: %w(dummy dummy))
|
2017-05-02 12:07:12 -07:00
|
|
|
user.disable_two_factor!
|
2017-05-30 06:28:56 -07:00
|
|
|
expect(user.reload.otp_backup_codes.empty?).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#send_confirmation_instructions' do
|
|
|
|
around do |example|
|
|
|
|
queue_adapter = ActiveJob::Base.queue_adapter
|
|
|
|
example.run
|
|
|
|
ActiveJob::Base.queue_adapter = queue_adapter
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'delivers confirmation instructions later' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
ActiveJob::Base.queue_adapter = :test
|
|
|
|
|
|
|
|
expect { user.send_confirmation_instructions }.to have_enqueued_job(ActionMailer::DeliveryJob)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#setting_auto_play_gif' do
|
|
|
|
it 'returns auto-play gif setting' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
user.settings[:auto_play_gif] = false
|
|
|
|
expect(user.setting_auto_play_gif).to eq false
|
|
|
|
end
|
|
|
|
end
|
2017-07-06 13:39:56 -07:00
|
|
|
|
|
|
|
describe '#setting_system_font_ui' do
|
|
|
|
it 'returns system font ui setting' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
user.settings[:system_font_ui] = false
|
|
|
|
expect(user.setting_system_font_ui).to eq false
|
|
|
|
end
|
|
|
|
end
|
2017-05-30 06:28:56 -07:00
|
|
|
|
|
|
|
describe '#setting_boost_modal' do
|
|
|
|
it 'returns boost modal setting' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
user.settings[:boost_modal] = false
|
|
|
|
expect(user.setting_boost_modal).to eq false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#setting_default_privacy' do
|
|
|
|
it 'returns default privacy setting if user has configured' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
user.settings[:default_privacy] = 'unlisted'
|
|
|
|
expect(user.setting_default_privacy).to eq 'unlisted'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns 'private' if user has not configured default privacy setting and account is locked" do
|
|
|
|
user = Fabricate(:user, account: Fabricate(:account, locked: true))
|
|
|
|
expect(user.setting_default_privacy).to eq 'private'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns 'public' if user has not configured default privacy setting and account is not locked" do
|
|
|
|
user = Fabricate(:user, account: Fabricate(:account, locked: false))
|
|
|
|
expect(user.setting_default_privacy).to eq 'public'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#setting_delete_modal' do
|
|
|
|
it 'returns delete modal setting' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
user.settings[:delete_modal] = false
|
|
|
|
expect(user.setting_delete_modal).to eq false
|
2017-05-02 12:07:12 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-04 08:04:44 -07:00
|
|
|
describe 'whitelist' do
|
|
|
|
around(:each) do |example|
|
|
|
|
old_whitelist = Rails.configuration.x.email_whitelist
|
|
|
|
|
|
|
|
Rails.configuration.x.email_domains_whitelist = 'mastodon.space'
|
|
|
|
|
|
|
|
example.run
|
|
|
|
|
|
|
|
Rails.configuration.x.email_domains_whitelist = old_whitelist
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not allow a user to be created unless they are whitelisted' do
|
|
|
|
user = User.new(email: 'foo@example.com', account: account, password: password)
|
|
|
|
expect(user.valid?).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should allow a user to be created if they are whitelisted' do
|
|
|
|
user = User.new(email: 'foo@mastodon.space', account: account, password: password)
|
|
|
|
expect(user.valid?).to be_truthy
|
2017-04-04 18:27:38 -07:00
|
|
|
end
|
2017-04-25 16:22:51 -07:00
|
|
|
|
|
|
|
it 'should not allow a user with a whitelisted top domain as subdomain in their email address to be created' do
|
|
|
|
user = User.new(email: 'foo@mastodon.space.userdomain.com', account: account, password: password)
|
|
|
|
expect(user.valid?).to be_falsey
|
|
|
|
end
|
|
|
|
|
2017-05-30 06:28:56 -07:00
|
|
|
context do
|
|
|
|
around do |example|
|
|
|
|
old_blacklist = Rails.configuration.x.email_blacklist
|
|
|
|
example.run
|
|
|
|
Rails.configuration.x.email_domains_blacklist = old_blacklist
|
|
|
|
end
|
2017-04-25 16:22:51 -07:00
|
|
|
|
2017-05-30 06:28:56 -07:00
|
|
|
it 'should not allow a user to be created with a specific blacklisted subdomain even if the top domain is whitelisted' do
|
|
|
|
Rails.configuration.x.email_domains_blacklist = 'blacklisted.mastodon.space'
|
2017-04-25 16:22:51 -07:00
|
|
|
|
2017-05-30 06:28:56 -07:00
|
|
|
user = User.new(email: 'foo@blacklisted.mastodon.space', account: account, password: password)
|
|
|
|
expect(user.valid?).to be_falsey
|
|
|
|
end
|
2017-04-25 16:22:51 -07:00
|
|
|
end
|
2017-04-04 15:29:56 -07:00
|
|
|
end
|
2017-06-04 08:07:39 -07:00
|
|
|
|
|
|
|
it_behaves_like 'Settings-extended' do
|
|
|
|
def create!
|
|
|
|
User.create!(account: Fabricate(:account), email: 'foo@mastodon.space', password: 'abcd1234' )
|
|
|
|
end
|
|
|
|
|
|
|
|
def fabricate
|
|
|
|
Fabricate(:user)
|
|
|
|
end
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|