2013-09-17 16:37:36 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ApplicationController do
|
|
|
|
describe '#check_password_expiration' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:controller) { ApplicationController.new }
|
|
|
|
|
|
|
|
it 'should redirect if the user is over their password expiry' do
|
|
|
|
user.password_expires_at = Time.new(2002)
|
|
|
|
user.ldap_user?.should be_false
|
2013-12-14 08:43:48 -05:00
|
|
|
controller.stub(:current_user).and_return(user)
|
2013-09-17 16:37:36 -04:00
|
|
|
controller.should_receive(:redirect_to)
|
|
|
|
controller.should_receive(:new_profile_password_path)
|
|
|
|
controller.send(:check_password_expiration)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not redirect if the user is under their password expiry' do
|
|
|
|
user.password_expires_at = Time.now + 20010101
|
|
|
|
user.ldap_user?.should be_false
|
2013-12-14 08:43:48 -05:00
|
|
|
controller.stub(:current_user).and_return(user)
|
2013-09-17 16:37:36 -04:00
|
|
|
controller.should_not_receive(:redirect_to)
|
|
|
|
controller.send(:check_password_expiration)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not redirect if the user is over their password expiry but they are an ldap user' do
|
|
|
|
user.password_expires_at = Time.new(2002)
|
2013-12-14 08:43:48 -05:00
|
|
|
user.stub(:ldap_user?).and_return(true)
|
|
|
|
controller.stub(:current_user).and_return(user)
|
2013-09-17 16:37:36 -04:00
|
|
|
controller.should_not_receive(:redirect_to)
|
|
|
|
controller.send(:check_password_expiration)
|
|
|
|
end
|
|
|
|
end
|
2014-06-21 05:18:57 -04:00
|
|
|
end
|