OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/controllers/account_controller_spec.rb

204 lines
5.9 KiB

#-- copyright
# OpenProject is a project management system.
#
# Copyright (C) 2012-2013 the OpenProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
describe AccountController do
after do
User.delete_all
User.current = nil
end
describe "Login for user with forced password change" do
let(:user) do
FactoryGirl.create(:admin, force_password_change: true)
User.any_instance.stub(:change_password_allowed?).and_return(false)
end
before do
User.current = user
end
describe "User who is not allowed to change password can't login" do
before do
admin = User.find_by_admin(true)
post "change_password", :username => admin.login,
:password => 'adminADMIN!',
:new_password => 'adminADMIN!New',
:new_password_confirmation => 'adminADMIN!New'
end
it "should redirect to the login page" do
expect(response).to redirect_to '/login'
end
end
describe "User who is not allowed to change password, is not redirected to the login page" do
before do
admin = User.find_by_admin(true)
post "login", {:username => admin.login, :password => 'adminADMIN!'}
end
it "should redirect ot the login page" do
expect(response).to redirect_to '/login'
end
end
end
context "GET #register" do
context "with self registration on" do
before do
Setting.stub(:self_registration).and_return("3")
get :register
end
it "is successful" do
should respond_with :success
expect(response).to render_template :register
expect(assigns[:user]).not_to be_nil
end
end
context "with self registration off" do
before do
Setting.stub(:self_registration).and_return("0")
Setting.stub(:self_registration?).and_return(false)
get :register
end
it "redirects to home" do
should redirect_to('/') { home_url }
end
end
end
# See integration/account_test.rb for the full test
context "POST #register" do
context "with self registration on automatic" do
before do
Setting.stub(:self_registration).and_return("3")
post :register, :user => {
:login => 'register',
:password => 'adminADMIN!',
:password_confirmation => 'adminADMIN!',
:firstname => 'John',
:lastname => 'Doe',
:mail => 'register@example.com'
}
end
it "redirects to my account page" do
should respond_with :redirect
expect(assigns[:user]).not_to be_nil
should redirect_to('/my/account')
expect(User.last(:conditions => {:login => 'register'})).not_to be_nil
end
it 'set the user status to active' do
user = User.last(:conditions => {:login => 'register'})
expect(user).not_to be_nil
expect(user.status).to eq(User::STATUSES[:active])
end
end
context "with self registration by email" do
before do
Setting.stub(:self_registration).and_return("1")
Token.delete_all
post :register, :user => {
:login => 'register',
:password => 'adminADMIN!',
:password_confirmation => 'adminADMIN!',
:firstname => 'John',
:lastname => 'Doe',
:mail => 'register@example.com'
}
end
it "redirects to the login page" do
should redirect_to '/login'
end
it "doesn't activate the user but sends out a token instead" do
expect(User.find_by_login('register')).not_to be_active
token = Token.find(:first)
expect(token.action).to eq('register')
expect(token.user.mail).to eq('register@example.com')
expect(token).not_to be_expired
end
end
context "with manual activation" do
before do
Setting.stub(:self_registration).and_return("2")
post :register, :user => {
:login => 'register',
:password => 'adminADMIN!',
:password_confirmation => 'adminADMIN!',
:firstname => 'John',
:lastname => 'Doe',
:mail => 'register@example.com'
}
end
it "redirects to the login page" do
should redirect_to '/login'
end
it "doesn't activate the user" do
expect(User.find_by_login('register')).not_to be_active
end
end
context "with self registration off" do
before do
Setting.stub(:self_registration).and_return("0")
Setting.stub(:self_registration?).and_return(false)
post :register, :user => {
:login => 'register',
:password => 'adminADMIN!',
:password_confirmation => 'adminADMIN!',
:firstname => 'John',
:lastname => 'Doe',
:mail => 'register@example.com'
}
end
it "redirects to home" do
should redirect_to('/') { home_url }
end
end
context "with on-the-fly registration" do
before do
Setting.stub(:self_registration).and_return("0")
Setting.stub(:self_registration?).and_return(false)
AuthSource.stub(:authenticate).and_return({:login => 'foo', :lastname => 'Smith', :auth_source_id => 66})
post :login, :username => 'foo', :password => 'bar'
end
it "registers the user on-the-fly" do
should respond_with :success
expect(response).to render_template :register
post :register, :user => {:firstname => 'Foo', :lastname => 'Smith', :mail => 'foo@bar.com'}
should redirect_to '/my/account'
user = User.find_by_login('foo')
assert user.is_a?(User)
assert_equal 66, user.auth_source_id
assert user.current_password.nil?
end
end
end
end