summaryrefslogtreecommitdiff
path: root/spec/models/u2f_registration_spec.rb
blob: 1fab3882c2ade338dc6f020bf4d14ece8221444b (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe U2fRegistration do
  let_it_be(:user) { create(:user) }

  let(:u2f_registration_name) { 'u2f_device' }
  let(:app_id) { FFaker::BaconIpsum.characters(5) }
  let(:device) { U2F::FakeU2F.new(app_id) }

  describe '.authenticate' do
    context 'when registration is found' do
      it 'returns true' do
        create_u2f_registration
        device_challenge = U2F.urlsafe_encode64(SecureRandom.random_bytes(32))
        sign_response_json = device.sign_response(device_challenge)

        response = U2fRegistration.authenticate(
          user,
          app_id,
          sign_response_json,
          device_challenge
        )

        expect(response).to eq true
      end
    end

    context 'when registration not found' do
      it 'returns nil' do
        device_challenge = U2F.urlsafe_encode64(SecureRandom.random_bytes(32))
        sign_response_json = device.sign_response(device_challenge)

        # data is valid but user does not have any u2f_registrations
        response = U2fRegistration.authenticate(
          user,
          app_id,
          sign_response_json,
          device_challenge
        )

        expect(response).to eq nil
      end
    end

    context 'when args passed in are invalid' do
      it 'returns false' do
        some_app_id = 123
        invalid_json = 'invalid JSON'
        challenges = 'whatever'

        response = U2fRegistration.authenticate(
          user,
          some_app_id,
          invalid_json,
          challenges
        )

        expect(response).to eq false
      end
    end
  end

  describe 'callbacks' do
    describe 'after create' do
      shared_examples_for 'creates webauthn registration' do
        it 'creates webauthn registration' do
          u2f_registration = create_u2f_registration
          webauthn_registration = WebauthnRegistration.where(u2f_registration_id: u2f_registration.id)
          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 }

        it_behaves_like 'creates webauthn registration'
      end

      it 'logs error' do
        allow(Gitlab::Auth::U2fWebauthnConverter).to receive(:new).and_raise('boom!')

        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))

        create_u2f_registration
      end
    end

    describe 'after update' do
      context 'when counter is updated' do
        it 'updates the webauthn registration counter to be the same value' do
          u2f_registration = create_u2f_registration
          new_counter = u2f_registration.counter + 1
          webauthn_registration = WebauthnRegistration.find_by(u2f_registration_id: u2f_registration.id)

          u2f_registration.update!(counter: new_counter)

          expect(u2f_registration.reload.counter).to eq(new_counter)
          expect(webauthn_registration.reload.counter).to eq(new_counter)
        end
      end

      context 'when sign count of registration is not updated' do
        it 'does not update the counter' do
          u2f_registration = create_u2f_registration
          webauthn_registration = WebauthnRegistration.find_by(u2f_registration_id: u2f_registration.id)

          expect do
            u2f_registration.update!(name: 'a new name')
          end.not_to change { webauthn_registration.counter }
        end
      end
    end
  end

  def create_u2f_registration
    create(
      :u2f_registration,
      name: u2f_registration_name,
      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
end