debian-mirror-gitlab/spec/lib/gitlab/ldap/user_spec.rb

232 lines
6.8 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe Gitlab::LDAP::User do
let(:ldap_user) { described_class.new(auth_hash) }
2015-04-26 12:48:37 +05:30
let(:gl_user) { ldap_user.gl_user }
let(:info) do
{
name: 'John',
email: 'john@example.com',
nickname: 'john'
}
end
let(:auth_hash) do
2015-09-25 12:07:36 +05:30
OmniAuth::AuthHash.new(uid: 'my-uid', provider: 'ldapmain', info: info)
2015-04-26 12:48:37 +05:30
end
2017-09-10 17:25:29 +05:30
let(:ldap_user_upper_case) { described_class.new(auth_hash_upper_case) }
2015-10-24 18:46:33 +05:30
let(:info_upper_case) do
{
name: 'John',
email: 'John@Example.com', # Email address has upper case chars
nickname: 'john'
}
end
let(:auth_hash_upper_case) do
OmniAuth::AuthHash.new(uid: 'my-uid', provider: 'ldapmain', info: info_upper_case)
end
2015-04-26 12:48:37 +05:30
2016-08-24 12:49:21 +05:30
describe '#changed?' do
2015-04-26 12:48:37 +05:30
it "marks existing ldap user as changed" do
2015-09-11 14:41:01 +05:30
create(:omniauth_user, extern_uid: 'my-uid', provider: 'ldapmain')
2015-04-26 12:48:37 +05:30
expect(ldap_user.changed?).to be_truthy
end
it "marks existing non-ldap user if the email matches as changed" do
2015-09-11 14:41:01 +05:30
create(:user, email: 'john@example.com')
2015-04-26 12:48:37 +05:30
expect(ldap_user.changed?).to be_truthy
end
2016-09-13 17:45:13 +05:30
it "does not mark existing ldap user as changed" do
2017-09-10 17:25:29 +05:30
create(:omniauth_user, email: 'john@example.com', extern_uid: 'my-uid', provider: 'ldapmain', external_email: true, email_provider: 'ldapmain')
2015-04-26 12:48:37 +05:30
expect(ldap_user.changed?).to be_falsey
end
end
describe '.find_by_uid_and_provider' do
it 'retrieves the correct user' do
special_info = {
name: 'John Åström',
email: 'john@example.com',
nickname: 'jastrom'
}
special_hash = OmniAuth::AuthHash.new(uid: 'CN=John Åström,CN=Users,DC=Example,DC=com', provider: 'ldapmain', info: special_info)
special_chars_user = described_class.new(special_hash)
user = special_chars_user.save
expect(described_class.find_by_uid_and_provider(special_hash.uid, special_hash.provider)).to eq user
end
end
2017-08-17 22:00:37 +05:30
describe 'find or create' do
2015-04-26 12:48:37 +05:30
it "finds the user if already existing" do
2015-09-11 14:41:01 +05:30
create(:omniauth_user, extern_uid: 'my-uid', provider: 'ldapmain')
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
expect{ ldap_user.save }.not_to change{ User.count }
2015-04-26 12:48:37 +05:30
end
it "connects to existing non-ldap user if the email matches" do
existing_user = create(:omniauth_user, email: 'john@example.com', provider: "twitter")
2015-09-11 14:41:01 +05:30
expect{ ldap_user.save }.not_to change{ User.count }
2015-04-26 12:48:37 +05:30
existing_user.reload
expect(existing_user.ldap_identity.extern_uid).to eql 'my-uid'
expect(existing_user.ldap_identity.provider).to eql 'ldapmain'
end
2015-09-25 12:07:36 +05:30
it 'connects to existing ldap user if the extern_uid changes' do
existing_user = create(:omniauth_user, email: 'john@example.com', extern_uid: 'old-uid', provider: 'ldapmain')
expect{ ldap_user.save }.not_to change{ User.count }
existing_user.reload
expect(existing_user.ldap_identity.extern_uid).to eql 'my-uid'
expect(existing_user.ldap_identity.provider).to eql 'ldapmain'
2015-10-24 18:46:33 +05:30
expect(existing_user.id).to eql ldap_user.gl_user.id
end
it 'connects to existing ldap user if the extern_uid changes and email address has upper case characters' do
existing_user = create(:omniauth_user, email: 'john@example.com', extern_uid: 'old-uid', provider: 'ldapmain')
expect{ ldap_user_upper_case.save }.not_to change{ User.count }
existing_user.reload
expect(existing_user.ldap_identity.extern_uid).to eql 'my-uid'
expect(existing_user.ldap_identity.provider).to eql 'ldapmain'
2015-09-25 12:07:36 +05:30
expect(existing_user.id).to eql ldap_user.gl_user.id
end
it 'maintains an identity per provider' do
existing_user = create(:omniauth_user, email: 'john@example.com', provider: 'twitter')
2017-08-17 22:00:37 +05:30
expect(existing_user.identities.count).to be(1)
2015-09-25 12:07:36 +05:30
ldap_user.save
2017-08-17 22:00:37 +05:30
expect(ldap_user.gl_user.identities.count).to be(2)
2015-09-25 12:07:36 +05:30
# Expect that find_by provider only returns a single instance of an identity and not an Enumerable
expect(ldap_user.gl_user.identities.find_by(provider: 'twitter')).to be_instance_of Identity
expect(ldap_user.gl_user.identities.find_by(provider: auth_hash.provider)).to be_instance_of Identity
end
2015-04-26 12:48:37 +05:30
it "creates a new user if not found" do
expect{ ldap_user.save }.to change{ User.count }.by(1)
end
2017-08-17 22:00:37 +05:30
context 'when signup is disabled' do
before do
stub_application_setting signup_enabled: false
end
it 'creates the user' do
ldap_user.save
expect(gl_user).to be_persisted
end
end
context 'when user confirmation email is enabled' do
before do
stub_application_setting send_user_confirmation_email: true
end
it 'creates and confirms the user anyway' do
ldap_user.save
expect(gl_user).to be_persisted
expect(gl_user).to be_confirmed
end
end
2015-04-26 12:48:37 +05:30
end
2016-01-29 22:53:50 +05:30
describe 'updating email' do
context "when LDAP sets an email" do
it "has a real email" do
expect(ldap_user.gl_user.email).to eq(info[:email])
end
2017-09-10 17:25:29 +05:30
it "has external_email set to true" do
expect(ldap_user.gl_user.external_email?).to be(true)
end
it "has email_provider set to provider" do
expect(ldap_user.gl_user.email_provider).to eql 'ldapmain'
2016-01-29 22:53:50 +05:30
end
end
context "when LDAP doesn't set an email" do
before do
info.delete(:email)
end
it "has a temp email" do
expect(ldap_user.gl_user.temp_oauth_email?).to be(true)
end
2017-09-10 17:25:29 +05:30
it "has external_email set to false" do
expect(ldap_user.gl_user.external_email?).to be(false)
2016-01-29 22:53:50 +05:30
end
end
end
2015-04-26 12:48:37 +05:30
describe 'blocking' do
2015-09-11 14:41:01 +05:30
def configure_block(value)
2017-09-10 17:25:29 +05:30
allow_any_instance_of(Gitlab::LDAP::Config)
.to receive(:block_auto_created_users).and_return(value)
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
context 'signup' do
context 'dont block on create' do
2017-09-10 17:25:29 +05:30
before do
configure_block(false)
end
2015-04-26 12:48:37 +05:30
it do
ldap_user.save
expect(gl_user).to be_valid
expect(gl_user).not_to be_blocked
end
end
context 'block on create' do
2017-09-10 17:25:29 +05:30
before do
configure_block(true)
end
2015-04-26 12:48:37 +05:30
it do
ldap_user.save
expect(gl_user).to be_valid
expect(gl_user).to be_blocked
end
end
end
context 'sign-in' do
before do
ldap_user.save
ldap_user.gl_user.activate
end
context 'dont block on create' do
2017-09-10 17:25:29 +05:30
before do
configure_block(false)
end
2015-04-26 12:48:37 +05:30
it do
ldap_user.save
expect(gl_user).to be_valid
expect(gl_user).not_to be_blocked
end
end
context 'block on create' do
2017-09-10 17:25:29 +05:30
before do
configure_block(true)
end
2015-04-26 12:48:37 +05:30
it do
ldap_user.save
expect(gl_user).to be_valid
expect(gl_user).not_to be_blocked
end
end
end
end
end