about summary refs log tree commit diff
path: root/spec/validators/blacklisted_email_validator_spec.rb
blob: 351de07076899d6b6e83b8602bc9045c32c9a197 (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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe BlacklistedEmailValidator, type: :validator do
  describe '#validate' do
    let(:user)   { double(email: 'info@mail.com', sign_up_ip: '1.2.3.4', errors: errors) }
    let(:errors) { double(add: nil) }

    before do
      allow(user).to receive(:valid_invitation?) { false }
      allow_any_instance_of(described_class).to receive(:blocked_email_provider?) { blocked_email }
    end

    subject { described_class.new.validate(user); errors }

    context 'when e-mail provider is blocked' do
      let(:blocked_email) { true }

      it 'adds error' do
        expect(subject).to have_received(:add).with(:email, :blocked)
      end
    end

    context 'when e-mail provider is not blocked' do
      let(:blocked_email) { false }

      it 'does not add errors' do
        expect(subject).not_to have_received(:add).with(:email, :blocked)
      end

      context 'when canonical e-mail is blocked' do
        let(:other_user) { Fabricate(:user, email: 'i.n.f.o@mail.com') }

        before do
          other_user.account.suspend!
        end

        it 'adds error' do
          expect(subject).to have_received(:add).with(:email, :taken)
        end
      end
    end
  end
end