2018-03-27 05:22:58 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe UniqueUsernameValidator do
|
|
|
|
describe '#validate' do
|
2020-02-01 15:42:24 +01:00
|
|
|
context 'when local account' do
|
|
|
|
it 'does not add errors if username is nil' do
|
|
|
|
account = double(username: nil, domain: nil, persisted?: false, errors: double(add: nil))
|
|
|
|
subject.validate(account)
|
|
|
|
expect(account.errors).to_not have_received(:add)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not add errors when existing one is subject itself' do
|
|
|
|
account = Fabricate(:account, username: 'abcdef')
|
|
|
|
expect(account).to be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds an error when the username is already used with ignoring cases' do
|
|
|
|
Fabricate(:account, username: 'ABCdef')
|
|
|
|
account = double(username: 'abcDEF', domain: nil, persisted?: false, errors: double(add: nil))
|
|
|
|
subject.validate(account)
|
|
|
|
expect(account.errors).to have_received(:add)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not add errors when same username remote account exists' do
|
|
|
|
Fabricate(:account, username: 'abcdef', domain: 'example.com')
|
|
|
|
account = double(username: 'abcdef', domain: nil, persisted?: false, errors: double(add: nil))
|
|
|
|
subject.validate(account)
|
|
|
|
expect(account.errors).to_not have_received(:add)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when remote account' do
|
2018-03-27 05:22:58 +02:00
|
|
|
it 'does not add errors if username is nil' do
|
2020-02-01 15:42:24 +01:00
|
|
|
account = double(username: nil, domain: 'example.com', persisted?: false, errors: double(add: nil))
|
2018-03-27 05:22:58 +02:00
|
|
|
subject.validate(account)
|
|
|
|
expect(account.errors).to_not have_received(:add)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not add errors when existing one is subject itself' do
|
2020-02-01 15:42:24 +01:00
|
|
|
account = Fabricate(:account, username: 'abcdef', domain: 'example.com')
|
2018-03-27 05:22:58 +02:00
|
|
|
expect(account).to be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds an error when the username is already used with ignoring cases' do
|
2020-02-01 15:42:24 +01:00
|
|
|
Fabricate(:account, username: 'ABCdef', domain: 'example.com')
|
|
|
|
account = double(username: 'abcDEF', domain: 'example.com', persisted?: false, errors: double(add: nil))
|
|
|
|
subject.validate(account)
|
|
|
|
expect(account.errors).to have_received(:add)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds an error when the domain is already used with ignoring cases' do
|
|
|
|
Fabricate(:account, username: 'ABCdef', domain: 'example.com')
|
|
|
|
account = double(username: 'ABCdef', domain: 'EXAMPLE.COM', persisted?: false, errors: double(add: nil))
|
2018-03-27 05:22:58 +02:00
|
|
|
subject.validate(account)
|
|
|
|
expect(account.errors).to have_received(:add)
|
|
|
|
end
|
2020-02-01 15:42:24 +01:00
|
|
|
|
|
|
|
it 'does not add errors when account with the same username and another domain exists' do
|
|
|
|
Fabricate(:account, username: 'abcdef', domain: 'example.com')
|
|
|
|
account = double(username: 'abcdef', domain: 'example2.com', persisted?: false, errors: double(add: nil))
|
|
|
|
subject.validate(account)
|
|
|
|
expect(account.errors).to_not have_received(:add)
|
|
|
|
end
|
2018-03-27 05:22:58 +02:00
|
|
|
end
|
|
|
|
end
|