about summary refs log tree commit diff
path: root/spec/validators/unique_username_validator_spec.rb
blob: 6867cbc6ce2b6171d4f7e8bbc897f033f22290ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# frozen_string_literal: true

require 'rails_helper'

describe UniqueUsernameValidator do
  describe '#validate' do
    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
    it 'does not add errors if username is nil' do
      account = double(username: nil, domain: 'example.com', 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', domain: 'example.com')
      expect(account).to be_valid
    end

    it 'adds an error when the username 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))
      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))
      subject.validate(account)
      expect(account.errors).to have_received(:add)
    end

    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
  end
end