2019-10-17 02:07:30 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-03 15:48:37 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.context 'U2F' do
|
2017-01-03 15:48:37 -05:00
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
2019-02-21 11:55:42 -05:00
|
|
|
let(:user) { create(:user, :two_factor_via_u2f, otp_secret: 'otpsecret:coolkids') }
|
2017-01-03 15:48:37 -05:00
|
|
|
|
2020-09-07 08:08:27 -04:00
|
|
|
before do
|
|
|
|
stub_feature_flags(webauthn: false)
|
|
|
|
end
|
|
|
|
|
2017-01-03 15:48:37 -05:00
|
|
|
describe SessionsController, '(JavaScript fixtures)', type: :controller do
|
2017-07-09 04:51:59 -04:00
|
|
|
include DeviseHelpers
|
|
|
|
|
2017-01-03 15:48:37 -05:00
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
2017-07-09 04:51:59 -04:00
|
|
|
set_devise_mapping(context: @request)
|
2017-01-03 15:48:37 -05:00
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'u2f/authenticate.html' do
|
2017-01-03 15:48:37 -05:00
|
|
|
allow(controller).to receive(:find_user).and_return(user)
|
|
|
|
|
2018-12-19 14:50:20 -05:00
|
|
|
post :create, params: { user: { login: user.username, password: user.password } }
|
2017-01-03 15:48:37 -05:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2017-01-03 15:48:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe Profiles::TwoFactorAuthsController, '(JavaScript fixtures)', type: :controller do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
2019-11-13 22:06:25 -05:00
|
|
|
allow_next_instance_of(Profiles::TwoFactorAuthsController) do |instance|
|
|
|
|
allow(instance).to receive(:build_qr_code).and_return('qrcode:blackandwhitesquares')
|
|
|
|
end
|
2017-01-03 15:48:37 -05:00
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'u2f/register.html' do
|
2017-01-03 15:48:37 -05:00
|
|
|
get :show
|
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2017-01-03 15:48:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|