gitlab-ce/spec/lib/gitlab/auth/saml/config_spec.rb

83 lines
2.4 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Auth::Saml::Config do
include LoginHelpers
describe '.enabled?' do
subject { described_class.enabled? }
it { is_expected.to eq(false) }
context 'when SAML is enabled' do
before do
stub_basic_saml_config
end
it { is_expected.to eq(true) }
end
end
describe '.default_attribute_statements' do
it 'includes upstream defaults, nickname and Microsoft values' do
expect(described_class.default_attribute_statements).to eq(
{
nickname: %w[username nickname],
name: [
'name',
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name',
'http://schemas.microsoft.com/ws/2008/06/identity/claims/name'
],
email: [
'email',
'mail',
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress',
'http://schemas.microsoft.com/ws/2008/06/identity/claims/emailaddress'
],
first_name: [
'first_name',
'firstname',
'firstName',
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname',
'http://schemas.microsoft.com/ws/2008/06/identity/claims/givenname'
],
last_name: [
'last_name',
'lastname',
'lastName',
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname',
'http://schemas.microsoft.com/ws/2008/06/identity/claims/surname'
]
}
)
end
end
describe '#external_groups' do
let(:config_1) { described_class.new('saml1') }
let(:config_2) { described_class.new('saml2') }
before do
saml1_config = ActiveSupport::InheritableOptions.new(name: 'saml1', label: 'saml1', args: {
'strategy_class' => 'OmniAuth::Strategies::SAML'
})
saml2_config = ActiveSupport::InheritableOptions.new(name: 'saml2',
external_groups: ['FreeLancers'],
label: 'saml2',
args: {
'strategy_class' => 'OmniAuth::Strategies::SAML'
})
stub_omniauth_setting(enabled: true, auto_link_saml_user: true, providers: [saml1_config, saml2_config])
end
it "lists groups" do
expect(config_1.external_groups).to be_nil
expect(config_2.external_groups).to be_eql(['FreeLancers'])
end
end
end