|
|
|
@@ -23,11 +23,15 @@ describe Gitlab::Saml::User, lib: true do
|
|
|
|
|
allow(Gitlab::LDAP::Config).to receive_messages(messages)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def stub_saml_config(messages)
|
|
|
|
|
allow(Gitlab::Saml::Config).to receive_messages(messages)
|
|
|
|
|
def stub_basic_saml_config
|
|
|
|
|
allow(Gitlab::Saml::Config).to receive_messages({ options: { name: 'saml', args: {} } })
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
before { stub_saml_config({ options: { name: 'saml', args: {} } }) }
|
|
|
|
|
def stub_saml_group_config(groups)
|
|
|
|
|
allow(Gitlab::Saml::Config).to receive_messages({ options: { name: 'saml', groups_attribute: 'groups', external_groups: groups, args: {} } })
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
before { stub_basic_saml_config }
|
|
|
|
|
|
|
|
|
|
describe 'account exists on server' do
|
|
|
|
|
before { stub_omniauth_config({ allow_single_sign_on: ['saml'], auto_link_saml_user: true }) }
|
|
|
|
@@ -45,15 +49,15 @@ describe Gitlab::Saml::User, lib: true do
|
|
|
|
|
|
|
|
|
|
context 'external groups' do
|
|
|
|
|
context 'are defined' do
|
|
|
|
|
before { stub_saml_config({ options: { name: 'saml', groups_attribute: 'groups', external_groups: %w(Freelancers), args: {} } }) }
|
|
|
|
|
it 'marks the user as external' do
|
|
|
|
|
stub_saml_group_config(%w(Freelancers))
|
|
|
|
|
saml_user.save
|
|
|
|
|
expect(gl_user).to be_valid
|
|
|
|
|
expect(gl_user.external).to be_truthy
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
before { stub_saml_config({ options: { name: 'saml', groups_attribute: 'groups', external_groups: %w(Interns), args: {} } }) }
|
|
|
|
|
before { stub_saml_group_config(%w(Interns)) }
|
|
|
|
|
context 'are defined but the user does not belong there' do
|
|
|
|
|
it 'does not mark the user as external' do
|
|
|
|
|
saml_user.save
|
|
|
|
@@ -105,17 +109,17 @@ describe Gitlab::Saml::User, lib: true do
|
|
|
|
|
|
|
|
|
|
context 'external groups' do
|
|
|
|
|
context 'are defined' do
|
|
|
|
|
before { stub_saml_config({ options: { name: 'saml', groups_attribute: 'groups', external_groups: %w(Freelancers), args: {} } }) }
|
|
|
|
|
it 'marks the user as external' do
|
|
|
|
|
stub_saml_group_config(%w(Freelancers))
|
|
|
|
|
saml_user.save
|
|
|
|
|
expect(gl_user).to be_valid
|
|
|
|
|
expect(gl_user.external).to be_truthy
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
before { stub_saml_config({ options: { name: 'saml', groups_attribute: 'groups', external_groups: %w(Interns), args: {} } }) }
|
|
|
|
|
context 'are defined but the user does not belong there' do
|
|
|
|
|
it 'does not mark the user as external' do
|
|
|
|
|
stub_saml_group_config(%w(Interns))
|
|
|
|
|
saml_user.save
|
|
|
|
|
expect(gl_user).to be_valid
|
|
|
|
|
expect(gl_user.external).to be_falsey
|
|
|
|
@@ -131,12 +135,6 @@ describe Gitlab::Saml::User, lib: true do
|
|
|
|
|
context 'with auto_link_ldap_user enabled' do
|
|
|
|
|
before { stub_omniauth_config({ auto_link_ldap_user: true, auto_link_saml_user: false }) }
|
|
|
|
|
|
|
|
|
|
context 'and no LDAP provider defined' do
|
|
|
|
|
before { stub_ldap_config(providers: []) }
|
|
|
|
|
|
|
|
|
|
include_examples 'to verify compliance with allow_single_sign_on'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'and at least one LDAP provider is defined' do
|
|
|
|
|
before { stub_ldap_config(providers: %w(ldapmain)) }
|
|
|
|
|
|
|
|
|
@@ -144,19 +142,18 @@ describe Gitlab::Saml::User, lib: true do
|
|
|
|
|
before do
|
|
|
|
|
allow(ldap_user).to receive(:uid) { uid }
|
|
|
|
|
allow(ldap_user).to receive(:username) { uid }
|
|
|
|
|
allow(ldap_user).to receive(:email) { ['johndoe@example.com','john2@example.com'] }
|
|
|
|
|
allow(ldap_user).to receive(:email) { %w(john@mail.com john2@example.com) }
|
|
|
|
|
allow(ldap_user).to receive(:dn) { 'uid=user1,ou=People,dc=example' }
|
|
|
|
|
allow(Gitlab::LDAP::Person).to receive(:find_by_uid).and_return(ldap_user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'and no account for the LDAP user' do
|
|
|
|
|
|
|
|
|
|
it 'creates a user with dual LDAP and SAML identities' do
|
|
|
|
|
saml_user.save
|
|
|
|
|
|
|
|
|
|
expect(gl_user).to be_valid
|
|
|
|
|
expect(gl_user.username).to eql uid
|
|
|
|
|
expect(gl_user.email).to eql 'johndoe@example.com'
|
|
|
|
|
expect(gl_user.email).to eql 'john@mail.com'
|
|
|
|
|
expect(gl_user.identities.length).to eql 2
|
|
|
|
|
identities_as_hash = gl_user.identities.map { |id| { provider: id.provider, extern_uid: id.extern_uid } }
|
|
|
|
|
expect(identities_as_hash).to match_array([ { provider: 'ldapmain', extern_uid: 'uid=user1,ou=People,dc=example' },
|
|
|
|
@@ -166,13 +163,13 @@ describe Gitlab::Saml::User, lib: true do
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'and LDAP user has an account already' do
|
|
|
|
|
let!(:existing_user) { create(:omniauth_user, email: 'john@example.com', extern_uid: 'uid=user1,ou=People,dc=example', provider: 'ldapmain', username: 'john') }
|
|
|
|
|
it "adds the omniauth identity to the LDAP account" do
|
|
|
|
|
let!(:existing_user) { create(:omniauth_user, email: 'john@mail.com', extern_uid: 'uid=user1,ou=People,dc=example', provider: 'ldapmain', username: 'john') }
|
|
|
|
|
it 'adds the omniauth identity to the LDAP account' do
|
|
|
|
|
saml_user.save
|
|
|
|
|
|
|
|
|
|
expect(gl_user).to be_valid
|
|
|
|
|
expect(gl_user.username).to eql 'john'
|
|
|
|
|
expect(gl_user.email).to eql 'john@example.com'
|
|
|
|
|
expect(gl_user.email).to eql 'john@mail.com'
|
|
|
|
|
expect(gl_user.identities.length).to eql 2
|
|
|
|
|
identities_as_hash = gl_user.identities.map { |id| { provider: id.provider, extern_uid: id.extern_uid } }
|
|
|
|
|
expect(identities_as_hash).to match_array([ { provider: 'ldapmain', extern_uid: 'uid=user1,ou=People,dc=example' },
|
|
|
|
@@ -181,12 +178,6 @@ describe Gitlab::Saml::User, lib: true do
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'and no corresponding LDAP person' do
|
|
|
|
|
before { allow(Gitlab::LDAP::Person).to receive(:find_by_uid).and_return(nil) }
|
|
|
|
|
|
|
|
|
|
include_examples 'to verify compliance with allow_single_sign_on'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|