2021-03-11 19:13:27 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe U2fRegistration do
|
|
|
|
let_it_be(:user) { create(:user) }
|
2021-09-30 23:02:18 +05:30
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
let(:u2f_registration_name) { 'u2f_device' }
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
let(:u2f_registration) do
|
|
|
|
device = U2F::FakeU2F.new(FFaker::BaconIpsum.characters(5))
|
2021-12-11 22:18:48 +05:30
|
|
|
create(:u2f_registration, name: u2f_registration_name,
|
2021-03-11 19:13:27 +05:30
|
|
|
user: user,
|
|
|
|
certificate: Base64.strict_encode64(device.cert_raw),
|
|
|
|
key_handle: U2F.urlsafe_encode64(device.key_handle_raw),
|
|
|
|
public_key: Base64.strict_encode64(device.origin_public_key_raw))
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'callbacks' do
|
|
|
|
describe '#create_webauthn_registration' do
|
2021-12-11 22:18:48 +05:30
|
|
|
shared_examples_for 'creates webauthn registration' do
|
|
|
|
it 'creates webauthn registration' do
|
2022-01-26 12:08:38 +05:30
|
|
|
created_record = u2f_registration
|
2021-12-11 22:18:48 +05:30
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
webauthn_registration = WebauthnRegistration.where(u2f_registration_id: created_record.id)
|
2021-12-11 22:18:48 +05:30
|
|
|
expect(webauthn_registration).to exist
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'creates webauthn registration'
|
|
|
|
|
|
|
|
context 'when the u2f_registration has a blank name' do
|
|
|
|
let(:u2f_registration_name) { '' }
|
|
|
|
|
|
|
|
it_behaves_like 'creates webauthn registration'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the u2f_registration has the name as `nil`' do
|
|
|
|
let(:u2f_registration_name) { nil }
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
it_behaves_like 'creates webauthn registration'
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'logs error' do
|
|
|
|
allow(Gitlab::Auth::U2fWebauthnConverter).to receive(:new).and_raise('boom!')
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
allow_next_instance_of(U2fRegistration) do |u2f_registration|
|
|
|
|
allow(u2f_registration).to receive(:id).and_return(123)
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(Gitlab::ErrorTracking).to(
|
|
|
|
receive(:track_exception).with(kind_of(StandardError),
|
|
|
|
u2f_registration_id: 123))
|
|
|
|
|
|
|
|
u2f_registration
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|