summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ldap/authentication_spec.rb
blob: 11fdf1087562992f10da62d4dc225139eaffa866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
require 'spec_helper'

describe Gitlab::LDAP::Authentication do
  let(:klass) { Gitlab::LDAP::Authentication }
  let(:user) { create(:omniauth_user, extern_uid: dn) }
  let(:dn) { 'uid=john,ou=people,dc=example,dc=com' }
  let(:login) { 'john' }
  let(:password) { 'password' }

  describe :login do
    let(:adapter) { double :adapter }
    before do
      Gitlab::LDAP::Config.stub(enabled?: true)
    end

    it "finds the user if authentication is successful" do
      user
      # try only to fake the LDAP call
      klass.any_instance.stub(adapter: double(:adapter,
        bind_as: double(:ldap_user, dn: dn)
      ))
      expect(klass.login(login, password)).to be_true
    end

    it "is false if the user does not exist" do
      # try only to fake the LDAP call
      klass.any_instance.stub(adapter: double(:adapter,
        bind_as: double(:ldap_user, dn: dn)
      ))
      expect(klass.login(login, password)).to be_false
    end

    it "is false if authentication fails" do
      user
      # try only to fake the LDAP call
      klass.any_instance.stub(adapter: double(:adapter, bind_as: nil))
      expect(klass.login(login, password)).to be_false
    end

    it "fails if ldap is disabled" do
      Gitlab::LDAP::Config.stub(enabled?: false)
      expect(klass.login(login, password)).to be_false
    end

    it "fails if no login is supplied" do
      expect(klass.login('', password)).to be_false
    end

    it "fails if no password is supplied" do
      expect(klass.login(login, '')).to be_false
    end
  end
end