summaryrefslogtreecommitdiff
path: root/spec/models/webauthn_registration_spec.rb
blob: 6813854bf6c766af85c2f53459e4fed2366679e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe WebauthnRegistration do
  describe 'relations' do
    it { is_expected.to belong_to(:user) }
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:credential_xid) }
    it { is_expected.to validate_presence_of(:public_key) }
    it { is_expected.to validate_presence_of(:counter) }
    it { is_expected.to validate_length_of(:name).is_at_least(0) }
    it { is_expected.not_to allow_value(nil).for(:name) }
    it do
      is_expected.to validate_numericality_of(:counter)
          .only_integer
          .is_greater_than_or_equal_to(0)
          .is_less_than_or_equal_to(4294967295)
    end
  end
end