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

require 'rails_helper'

describe Settings::TwoFactorAuthenticationMethodsController do
  render_views

  let(:user) { Fabricate(:user) }

  describe 'GET #index' do
    context 'when signed in' do
      before do
        sign_in user, scope: :user
      end

      describe 'when user has enabled otp' do
        before do
          user.update(otp_required_for_login: true)
        end

        it 'returns http success' do
          get :index

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

      describe 'when user has not enabled otp' do
        before do
          user.update(otp_required_for_login: false)
        end

        it 'redirects to enable otp' do
          get :index

          expect(response).to redirect_to(settings_otp_authentication_path)
        end
      end
    end

    context 'when not signed in' do
      it 'redirects' do
        get :index

        expect(response).to redirect_to '/auth/sign_in'
      end
    end
  end
end