summaryrefslogtreecommitdiff
path: root/spec/lib/auth_spec.rb
blob: 073b811c3fb66243e636532ed8d7860c84077294 (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
require 'spec_helper'

describe Gitlab::Auth do
  let(:gl_auth) { Gitlab::Auth.new }

  describe :find do
    before do
      @user = create(
        :user,
        username: 'john',
        password: '88877711',
        password_confirmation: '88877711'
      )
    end

    it "should find user by valid login/password" do
      gl_auth.find('john', '88877711').should == @user
    end

    it "should not find user with invalid password" do
      gl_auth.find('john', 'invalid11').should_not == @user
    end

    it "should not find user with invalid login and password" do
      gl_auth.find('jon', 'invalid11').should_not == @user
    end
  end
end