about summary refs log tree commit diff
path: root/spec/controllers/admin/confirmations_controller_spec.rb
blob: d05711e272d13d76cf88a35112dd51611d23a163 (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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe Admin::ConfirmationsController, type: :controller do
  render_views

  before do
    sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
  end

  describe 'POST #create' do
    it 'confirms the user' do
      user = Fabricate(:user, confirmed_at: false)
      post :create, params: { account_id: user.account.id }

      expect(response).to redirect_to(admin_accounts_path)
      expect(user.reload).to be_confirmed
    end

    it 'raises an error when there is no account' do
      post :create, params: { account_id: 'fake' }

      expect(response).to have_http_status(404)
    end

    it 'raises an error when there is no user' do
      account = Fabricate(:account, user: nil)
      post :create, params: { account_id: account.id }

      expect(response).to have_http_status(404)
    end
  end

  describe 'POST #resernd' do
    subject { post :resend, params: { account_id: user.account.id } }

    let!(:user) { Fabricate(:user, confirmed_at: confirmed_at) }

    before do
      allow(UserMailer).to receive(:confirmation_instructions) { double(:email, deliver_later: nil) }
    end

    context 'when email is not confirmed' do
      let(:confirmed_at) { nil }

      it 'resends confirmation mail' do
        expect(subject).to redirect_to admin_accounts_path
        expect(flash[:notice]).to eq I18n.t('admin.accounts.resend_confirmation.success')
        expect(UserMailer).to have_received(:confirmation_instructions).once
      end
    end

    context 'when email is confirmed' do
      let(:confirmed_at) { Time.zone.now }

      it 'does not resend confirmation mail' do
        expect(subject).to redirect_to admin_accounts_path
        expect(flash[:error]).to eq I18n.t('admin.accounts.resend_confirmation.already_confirmed')
        expect(UserMailer).to_not have_received(:confirmation_instructions)
      end
    end
  end
end