kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
311 lines
9.8 KiB
311 lines
9.8 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2014 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2014 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2014 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
# Concern is included into AccountController and depends on methods available there
|
|
describe AccountController do
|
|
after do
|
|
User.current = nil
|
|
end
|
|
|
|
context 'GET #omniauth_login' do
|
|
before do
|
|
allow(Setting).to receive(:self_registration?).and_return(true)
|
|
allow(Setting).to receive(:self_registration).and_return('3')
|
|
end
|
|
|
|
describe 'with on-the-fly registration' do
|
|
context 'providing all required fields' do
|
|
let(:omniauth_hash) do
|
|
OmniAuth::AuthHash.new(
|
|
provider: 'google',
|
|
uid: '123545',
|
|
info: { name: 'foo',
|
|
email: 'foo@bar.com',
|
|
first_name: 'foo',
|
|
last_name: 'bar'
|
|
}
|
|
)
|
|
end
|
|
|
|
before do
|
|
request.env['omniauth.auth'] = omniauth_hash
|
|
request.env['omniauth.origin'] = 'https://example.net/some_back_url'
|
|
post :omniauth_login
|
|
end
|
|
|
|
it 'registers the user on-the-fly' do
|
|
user = User.find_by_login('foo@bar.com')
|
|
expect(user).to be_an_instance_of(User)
|
|
expect(user.auth_source_id).to be_nil
|
|
expect(user.current_password).to be_nil
|
|
expect(user.identity_url).to eql('google:123545')
|
|
expect(user.login).to eql('foo@bar.com')
|
|
expect(user.firstname).to eql('foo')
|
|
expect(user.lastname).to eql('bar')
|
|
expect(user.mail).to eql('foo@bar.com')
|
|
end
|
|
|
|
it 'redirects to the first login page with a back_url' do
|
|
expect(response).to redirect_to(
|
|
my_first_login_path(:back_url => 'https://example.net/some_back_url'))
|
|
end
|
|
end
|
|
|
|
context 'not providing all required fields' do
|
|
let(:omniauth_hash) do
|
|
OmniAuth::AuthHash.new(
|
|
provider: 'google',
|
|
uid: '123545',
|
|
info: { name: 'foo', email: 'foo@bar.com' }
|
|
# first_name and last_name not set
|
|
)
|
|
end
|
|
|
|
it 'renders user form' do
|
|
request.env['omniauth.auth'] = omniauth_hash
|
|
post :omniauth_login
|
|
expect(response).to render_template :register
|
|
expect(assigns(:user).mail).to eql('foo@bar.com')
|
|
end
|
|
|
|
it 'registers user via post' do
|
|
auth_source_registration = omniauth_hash.merge(
|
|
omniauth: true,
|
|
timestamp: Time.new)
|
|
session[:auth_source_registration] = auth_source_registration
|
|
post :register, :user => { :login => 'login@bar.com',
|
|
:firstname => 'Foo',
|
|
:lastname => 'Smith',
|
|
:mail => 'foo@bar.com' }
|
|
expect(response).to redirect_to my_first_login_path
|
|
|
|
user = User.find_by_login('login@bar.com')
|
|
expect(user).to be_an_instance_of(User)
|
|
expect(user.auth_source_id).to be_nil
|
|
expect(user.current_password).to be_nil
|
|
expect(user.identity_url).to eql('google:123545')
|
|
end
|
|
|
|
context 'after a timeout expired' do
|
|
|
|
before do
|
|
session[:auth_source_registration] = omniauth_hash.merge(
|
|
omniauth: true,
|
|
timestamp: Time.new - 42.days)
|
|
end
|
|
|
|
it 'does not register the user when providing all the missing fields' do
|
|
post :register, :user => { firstname: 'Foo',
|
|
lastname: 'Smith',
|
|
mail: 'foo@bar.com' }
|
|
|
|
expect(response).to redirect_to signin_path
|
|
expect(flash[:error]).to eq(I18n.t(:error_omniauth_registration_timed_out))
|
|
expect(User.find_by_login('foo@bar.com')).to be_nil
|
|
end
|
|
|
|
it 'does not register the user when providing all the missing fields' do
|
|
post :register, :user => { firstname: 'Foo',
|
|
# lastname intentionally not provided
|
|
mail: 'foo@bar.com' }
|
|
|
|
expect(response).to redirect_to signin_path
|
|
expect(flash[:error]).to eq(I18n.t(:error_omniauth_registration_timed_out))
|
|
expect(User.find_by_login('foo@bar.com')).to be_nil
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with self-registration disabled' do
|
|
let(:omniauth_hash) do
|
|
OmniAuth::AuthHash.new(
|
|
provider: 'google',
|
|
uid: '123',
|
|
info: { name: 'foo',
|
|
email: 'foo@bar.com',
|
|
first_name: 'foo',
|
|
last_name: 'bar'
|
|
}
|
|
)
|
|
end
|
|
|
|
before do
|
|
allow(Setting).to receive(:self_registration?).and_return(false)
|
|
|
|
request.env['omniauth.auth'] = omniauth_hash
|
|
request.env['omniauth.origin'] = 'https://example.net/some_back_url'
|
|
|
|
post :omniauth_login
|
|
end
|
|
|
|
it 'redirects to signin_path' do
|
|
expect(response).to redirect_to signin_path
|
|
end
|
|
|
|
it 'shows the right flash message' do
|
|
expect(flash[:error]).to eq(I18n.t('account.error_self_registration_disabled'))
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'login' do
|
|
let(:omniauth_hash) do
|
|
OmniAuth::AuthHash.new(
|
|
provider: 'google',
|
|
uid: '123545',
|
|
info: { name: 'foo',
|
|
email: 'foo@bar.com'
|
|
}
|
|
)
|
|
end
|
|
|
|
let(:user) do
|
|
FactoryGirl.build(:user, force_password_change: false,
|
|
identity_url: 'google:123545')
|
|
end
|
|
|
|
before do
|
|
request.env['omniauth.auth'] = omniauth_hash
|
|
end
|
|
|
|
context 'with an active account' do
|
|
before do
|
|
user.save!
|
|
end
|
|
|
|
it 'should sign in the user after successful external authentication' do
|
|
post :omniauth_login
|
|
|
|
expect(response).to redirect_to my_page_path
|
|
end
|
|
|
|
it 'should log a successful login' do
|
|
post_at = Time.now.utc
|
|
post :omniauth_login
|
|
|
|
user.reload
|
|
expect(user.last_login_on.utc.to_i).to be >= post_at.utc.to_i
|
|
end
|
|
end
|
|
|
|
context 'with a registered and not activated accout' do
|
|
before do
|
|
user.register
|
|
user.save!
|
|
|
|
with_settings(self_registration: '1') do
|
|
post :omniauth_login
|
|
end
|
|
end
|
|
|
|
it 'should show an error about a not activated account' do
|
|
expect(flash[:error]).to eql(I18n.t('account.error_inactive_manual_activation'))
|
|
end
|
|
|
|
it 'should redirect to signin_path' do
|
|
expect(response).to redirect_to signin_path
|
|
end
|
|
end
|
|
|
|
context 'with a locked account' do
|
|
before do
|
|
user.lock
|
|
user.save!
|
|
|
|
# Make sure we don't get a specific message when brute-force protection is enabled
|
|
with_settings(brute_force_block_after_failed_logins: '0') do
|
|
post :omniauth_login
|
|
end
|
|
end
|
|
|
|
it 'should show an error indicating a failed login' do
|
|
expect(flash[:error]).to eql(I18n.t(:notice_account_invalid_credentials))
|
|
end
|
|
|
|
it 'should redirect to signin_path' do
|
|
expect(response).to redirect_to signin_path
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
describe 'with an invalid auth_hash' do
|
|
let(:omniauth_hash) do
|
|
OmniAuth::AuthHash.new(
|
|
provider: 'google',
|
|
# id is deliberately missing here to make the auth_hash invalid
|
|
info: { name: 'foo',
|
|
email: 'foo@bar.com'
|
|
}
|
|
)
|
|
end
|
|
|
|
before do
|
|
request.env['omniauth.auth'] = omniauth_hash
|
|
|
|
post :omniauth_login
|
|
end
|
|
|
|
it 'should respond with a 400' do
|
|
expect(response.code.to_i).to eql(400)
|
|
end
|
|
|
|
it 'should not sign in the user' do
|
|
expect(controller.send(:current_user).logged?).to be_false
|
|
end
|
|
|
|
it 'does not set registration information in the session' do
|
|
expect(session[:auth_source_registration]).to be_nil
|
|
end
|
|
end
|
|
|
|
describe 'Error occurs during authentication' do
|
|
it 'should redirect to login page' do
|
|
post :omniauth_failure
|
|
expect(response).to redirect_to signin_path
|
|
end
|
|
|
|
it 'should log a warn message' do
|
|
expect(Rails.logger).to receive(:warn).with('invalid_credentials')
|
|
post :omniauth_failure, message: 'invalid_credentials'
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#identity_url_from_omniauth' do
|
|
let(:omniauth_hash) { { provider: 'developer', uid: 'veryuniqueid' } }
|
|
|
|
it 'should return the correct identity_url' do
|
|
result = AccountController.new.send(:identity_url_from_omniauth, omniauth_hash)
|
|
expect(result).to eql('developer:veryuniqueid')
|
|
end
|
|
end
|
|
|
|
end
|
|
|