#-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2015 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-2013 Jean-Philippe Lang # Copyright (C) 2010-2013 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, type: :controller 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 describe 'strategy attribute mapping override' do let(:omniauth_strategy) { double('Google Strategy') } let(:omniauth_hash) do OmniAuth::AuthHash.new( provider: 'google', uid: 'foo', info: { email: 'whattheheck@example.com', first_name: 'what', last_name: 'theheck' }, extra: { raw_info: { real_uid: 'bar@example.org', first_name: 'foo', last_name: 'bar' } } ) end before do request.env['omniauth.auth'] = omniauth_hash request.env['omniauth.strategy'] = omniauth_strategy end context 'available' do it 'merges the strategy mapping' do allow(omniauth_strategy).to receive(:omniauth_hash_to_user_attributes) do |auth| raw_info = auth[:extra][:raw_info] { login: raw_info[:real_uid], firstname: raw_info[:first_name], lastname: raw_info[:last_name] } end expect(omniauth_strategy).to receive(:omniauth_hash_to_user_attributes) post :omniauth_login user = User.find_by_login('bar@example.org') expect(user).to be_an_instance_of(User) expect(user.firstname).to eql('foo') expect(user.lastname).to eql('bar') end end context 'unavailable' do it 'keeps the default mapping' do post :omniauth_login user = User.find_by_login('whattheheck@example.com') expect(user).to be_an_instance_of(User) expect(user.firstname).to eql('what') expect(user.lastname).to eql('theheck') end 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 expect(OpenProject::OmniAuth::Authorization).to receive(:after_login!) do |user, auth_hash| new_user = User.find_by_login('login@bar.com') expect(user).to eq new_user expect(auth_hash).to include(omniauth_hash) end 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', last_name: 'bar', 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 describe 'authorization' do let(:config) do Struct.new(:google_name, :global_email).new 'foo', 'foo@bar.com' end before do OpenProject::OmniAuth::Authorization.callbacks.clear # Let's set up a couple of authorization callbacks to see if the mechanism # works as intended. OpenProject::OmniAuth::Authorization.authorize_user provider: :google do |dec, auth| if auth.info.name == config.google_name dec.approve else dec.reject "#{auth.info.name} can fuck right off" end end OpenProject::OmniAuth::Authorization.authorize_user do |dec, auth| if auth.info.email == config.global_email dec.approve else dec.reject "I only want to see #{config[:global_email]} here." end end # ineffective callback OpenProject::OmniAuth::Authorization.authorize_user provider: :foobar do |dec, _| dec.reject 'Though shalt not pass!' end # free for all callback OpenProject::OmniAuth::Authorization.authorize_user do |dec, _| dec.approve end end after do OpenProject::OmniAuth::Authorization.callbacks.clear end it 'works' do expect(OpenProject::OmniAuth::Authorization).to receive(:after_login!) do |u, auth| expect(u).to eq user expect(auth).to eq omniauth_hash end post :omniauth_login expect(response).to redirect_to my_page_path end context 'with wrong email address' do before do config.global_email = 'other@mail.com' end it 'is rejected against google' do expect(OpenProject::OmniAuth::Authorization).not_to receive(:after_login!).with(user) post :omniauth_login expect(response).to redirect_to signin_path expect(flash[:error]).to eq 'I only want to see other@mail.com here.' end it 'is rejected against any other provider too' do expect(OpenProject::OmniAuth::Authorization).not_to receive(:after_login!).with(user) omniauth_hash.provider = 'any other' post :omniauth_login expect(response).to redirect_to signin_path expect(flash[:error]).to eq 'I only want to see other@mail.com here.' end end context 'with the wrong name' do render_views before do config.google_name = 'hans' end it 'is rejected against google' do expect(OpenProject::OmniAuth::Authorization).not_to receive(:after_login!).with(user) post :omniauth_login expect(response).to redirect_to signin_path expect(flash[:error]).to eq 'foo can fuck right off' end it 'is approved against any other provider' do expect(OpenProject::OmniAuth::Authorization).to receive(:after_login!) do |u| new_user = User.find_by_identity_url 'some other:123545' expect(u).to eq new_user end omniauth_hash.provider = 'some other' post :omniauth_login expect(response).to redirect_to my_first_login_path # authorization is successful which results in the registration # of a new user in this case because we changed the provider # and there isn't a user with that identity URL yet ... end # ... and to confirm that, here's what happens when the authorization fails it 'is rejected against any other provider with the wrong email' do expect(OpenProject::OmniAuth::Authorization).not_to receive(:after_login!).with(user) omniauth_hash.provider = 'yet another' config.global_email = 'yarrrr@joro.es' post :omniauth_login expect(response).to redirect_to signin_path expect(flash[:error]).to eq 'I only want to see yarrrr@joro.es here.' end end 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_falsey 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