gitlab-org--gitlab-foss/spec/lib/gitlab/ldap/access_spec.rb

92 lines
2.4 KiB
Ruby
Raw Normal View History

2014-05-14 16:14:06 +00:00
require 'spec_helper'
2015-12-09 10:55:36 +00:00
describe Gitlab::LDAP::Access, lib: true do
let(:access) { Gitlab::LDAP::Access.new user }
2014-12-04 11:43:08 +00:00
let(:user) { create(:omniauth_user) }
2014-05-14 16:14:06 +00:00
describe :allowed? do
subject { access.allowed? }
2014-05-14 16:14:06 +00:00
context 'when the user cannot be found' do
2015-05-21 21:49:06 +00:00
before do
allow(Gitlab::LDAP::Person).to receive(:find_by_dn).and_return(nil)
end
2014-05-14 16:14:06 +00:00
it { is_expected.to be_falsey }
it 'should block user in GitLab' do
access.allowed?
expect(user).to be_blocked
end
2014-05-14 16:14:06 +00:00
end
context 'when the user is found' do
2015-05-21 21:49:06 +00:00
before do
allow(Gitlab::LDAP::Person).
to receive(:find_by_dn).and_return(:ldap_user)
end
2014-05-14 16:14:06 +00:00
context 'and the user is disabled via active directory' do
2015-05-21 21:49:06 +00:00
before do
allow(Gitlab::LDAP::Person).
to receive(:disabled_via_active_directory?).and_return(true)
end
2014-05-14 16:14:06 +00:00
it { is_expected.to be_falsey }
it "should block user in GitLab" do
access.allowed?
expect(user).to be_blocked
end
2014-05-14 16:14:06 +00:00
end
context 'and has no disabled flag in active diretory' do
before do
user.block
2015-05-21 21:49:06 +00:00
allow(Gitlab::LDAP::Person).
to receive(:disabled_via_active_directory?).and_return(false)
end
2014-05-14 16:14:06 +00:00
it { is_expected.to be_truthy }
context 'when auto-created users are blocked' do
before do
2015-05-21 21:49:06 +00:00
allow_any_instance_of(Gitlab::LDAP::Config).
to receive(:block_auto_created_users).and_return(true)
end
it "does not unblock user in GitLab" do
access.allowed?
expect(user).to be_blocked
end
end
context "when auto-created users are not blocked" do
before do
2015-05-21 21:49:06 +00:00
allow_any_instance_of(Gitlab::LDAP::Config).
to receive(:block_auto_created_users).and_return(false)
end
it "should unblock user in GitLab" do
access.allowed?
expect(user).not_to be_blocked
end
end
2014-05-14 16:14:06 +00:00
end
context 'without ActiveDirectory enabled' do
before do
2015-05-21 21:49:06 +00:00
allow(Gitlab::LDAP::Config).to receive(:enabled?).and_return(true)
allow_any_instance_of(Gitlab::LDAP::Config).
to receive(:active_directory).and_return(false)
end
it { is_expected.to be_truthy }
end
2014-05-14 16:14:06 +00:00
end
end
end