recovery_codes_controller_spec.rb (919B)
- # frozen_string_literal: true
- require 'rails_helper'
- describe Settings::TwoFactorAuthentication::RecoveryCodesController do
- render_views
- describe 'POST #create' do
- it 'updates the codes and shows them on a view when signed in' do
- user = Fabricate(:user)
- otp_backup_codes = user.generate_otp_backup_codes!
- expect_any_instance_of(User).to receive(:generate_otp_backup_codes!) do |value|
- expect(value).to eq user
- otp_backup_codes
- end
- sign_in user, scope: :user
- post :create
- expect(assigns(:recovery_codes)).to eq otp_backup_codes
- expect(flash[:notice]).to eq 'Recovery codes successfully regenerated'
- expect(response).to have_http_status(:success)
- expect(response).to render_template(:index)
- end
- it 'redirects when not signed in' do
- post :create
- expect(response).to redirect_to '/auth/sign_in'
- end
- end
- end