51 lines
1.6 KiB
Ruby
51 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe AuthenticationEvent do
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:user).optional }
|
|
end
|
|
|
|
describe 'validations' do
|
|
it { is_expected.to validate_presence_of(:provider) }
|
|
it { is_expected.to validate_presence_of(:user_name) }
|
|
it { is_expected.to validate_presence_of(:result) }
|
|
|
|
include_examples 'validates IP address' do
|
|
let(:attribute) { :ip_address }
|
|
let(:object) { create(:authentication_event) }
|
|
end
|
|
end
|
|
|
|
describe 'scopes' do
|
|
let_it_be(:ldap_event) { create(:authentication_event, provider: :ldapmain, result: :failed) }
|
|
let_it_be(:google_oauth2) { create(:authentication_event, provider: :google_oauth2, result: :success) }
|
|
|
|
describe '.for_provider' do
|
|
it 'returns events only for the specified provider' do
|
|
expect(described_class.for_provider(:ldapmain)).to match_array ldap_event
|
|
end
|
|
end
|
|
|
|
describe '.ldap' do
|
|
it 'returns all events for an LDAP provider' do
|
|
expect(described_class.ldap).to match_array ldap_event
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '.providers' do
|
|
before do
|
|
create(:authentication_event, provider: :ldapmain)
|
|
create(:authentication_event, provider: :google_oauth2)
|
|
create(:authentication_event, provider: :standard)
|
|
create(:authentication_event, provider: :standard)
|
|
create(:authentication_event, provider: :standard)
|
|
end
|
|
|
|
it 'returns an array of distinct providers' do
|
|
expect(described_class.providers).to match_array %w(ldapmain google_oauth2 standard)
|
|
end
|
|
end
|
|
end
|