Welcome to mirror list, hosted at ThFree Co, Russian Federation.

confirmations_controller_spec.rb « controllers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49a39f257fe3faf5248826ab4cf42de95a5e555f (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ConfirmationsController do
  include DeviseHelpers

  before do
    set_devise_mapping(context: @request)
  end

  describe '#show' do
    render_views

    subject { get :show, params: { confirmation_token: confirmation_token } }

    context 'user is already confirmed' do
      let_it_be_with_reload(:user) { create(:user, :unconfirmed) }
      let(:confirmation_token) { user.confirmation_token }

      before do
        user.confirm
        subject
      end

      it 'renders `new`' do
        expect(response).to render_template(:new)
      end

      it 'displays an error message' do
        expect(response.body).to include('Email was already confirmed, please try signing in')
      end

      it 'does not display the email of the user' do
        expect(response.body).not_to include(user.email)
      end
    end

    context 'user accesses the link after the expiry of confirmation token has passed' do
      let_it_be_with_reload(:user) { create(:user, :unconfirmed) }
      let(:confirmation_token) { user.confirmation_token }

      before do
        allow(Devise).to receive(:confirm_within).and_return(1.day)

        travel_to(3.days.from_now) do
          subject
        end
      end

      it 'renders `new`' do
        expect(response).to render_template(:new)
      end

      it 'displays an error message' do
        expect(response.body).to include('Email needs to be confirmed within 1 day, please request a new one below')
      end

      it 'does not display the email of the user' do
        expect(response.body).not_to include(user.email)
      end
    end

    context 'with an invalid confirmation token' do
      let(:confirmation_token) { 'invalid_confirmation_token' }

      before do
        subject
      end

      it 'renders `new`' do
        expect(response).to render_template(:new)
      end

      it 'displays an error message' do
        expect(response.body).to include('Confirmation token is invalid')
      end
    end
  end
end