about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorAboobacker MK <aboobacker@redpanthers.co>2018-01-21 17:51:28 +0530
committerEugen Rochko <eugen@zeonfederated.com>2018-01-21 13:21:28 +0100
commit112b1fa265f650c01eef2578e286214e3d82dcac (patch)
tree10dc6800e8112184e684114ebf77478dedb49557 /spec
parent31d148588737e5e5dc8aada7913884f226831fd1 (diff)
Redirect to 2FA creation page when otp_secret is not available (#6314)
Diffstat (limited to 'spec')
-rw-r--r--spec/controllers/settings/two_factor_authentication/confirmations_controller_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/controllers/settings/two_factor_authentication/confirmations_controller_spec.rb b/spec/controllers/settings/two_factor_authentication/confirmations_controller_spec.rb
index 0676d6161..aee82a3d8 100644
--- a/spec/controllers/settings/two_factor_authentication/confirmations_controller_spec.rb
+++ b/spec/controllers/settings/two_factor_authentication/confirmations_controller_spec.rb
@@ -6,6 +6,7 @@ describe Settings::TwoFactorAuthentication::ConfirmationsController do
   render_views
 
   let(:user) { Fabricate(:user, email: 'local-part@domain', otp_secret: 'thisisasecretforthespecofnewview') }
+  let(:user_without_otp_secret) { Fabricate(:user, email: 'local-part@domain') }
 
   shared_examples 'renders :new' do
     it 'renders the new view' do
@@ -33,6 +34,12 @@ describe Settings::TwoFactorAuthentication::ConfirmationsController do
       get :new
       expect(response).to redirect_to('/auth/sign_in')
     end
+
+    it 'redirects if user do not have otp_secret' do
+      sign_in user_without_otp_secret, scope: :user
+      get :new
+      expect(response).to redirect_to('/settings/two_factor_authentication')
+    end
   end
 
   describe 'POST #create' do