summaryrefslogtreecommitdiff
path: root/spec/controllers/passwords_controller_spec.rb
blob: 2955d01fad0472b96126e4de26f478f68ba3f75a (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
require 'spec_helper'

describe PasswordsController do
  describe '#check_password_authentication_available' do
    before do
      @request.env["devise.mapping"] = Devise.mappings[:user]
    end

    context 'when password authentication is disabled' do
      it 'prevents a password reset' do
        stub_application_setting(password_authentication_enabled: false)

        post :create

        expect(flash[:alert]).to eq 'Password authentication is unavailable.'
      end
    end

    context 'when reset email belongs to an ldap user' do
      let(:user) { create(:omniauth_user, provider: 'ldapmain', email: 'ldapuser@gitlab.com') }

      it 'prevents a password reset' do
        post :create, user: { email: user.email }

        expect(flash[:alert]).to eq 'Password authentication is unavailable.'
      end
    end
  end
end