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.
124 lines
3.3 KiB
124 lines
3.3 KiB
#-- encoding: UTF-8
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2021 the OpenProject GmbH
|
|
#
|
|
# 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 COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Authentication::OmniauthAuthHashContract do
|
|
let(:auth_hash) do
|
|
OmniAuth::AuthHash.new(
|
|
provider: 'google',
|
|
uid: '123545',
|
|
info: { name: 'foo',
|
|
email: 'foo@bar.com',
|
|
first_name: 'foo',
|
|
last_name: 'bar' }
|
|
)
|
|
end
|
|
|
|
let(:instance) { described_class.new(auth_hash) }
|
|
|
|
subject do
|
|
instance.validate
|
|
instance
|
|
end
|
|
|
|
shared_examples_for 'has error on' do |property, message|
|
|
it property do
|
|
expect(subject.errors[property]).to include message
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'is valid' do
|
|
it 'is valid' do
|
|
expect(subject).to be_valid
|
|
expect(subject.errors).to be_empty
|
|
end
|
|
end
|
|
|
|
describe '#validate_auth_hash' do
|
|
context 'if valid' do
|
|
it_behaves_like 'is valid'
|
|
end
|
|
|
|
context 'if invalid' do
|
|
before do
|
|
allow(auth_hash).to receive(:valid?).and_return false
|
|
end
|
|
|
|
it_behaves_like 'has error on', :base, I18n.t(:error_omniauth_invalid_auth)
|
|
end
|
|
end
|
|
|
|
describe '#validate_auth_hash_not_expired' do
|
|
context 'hash contains valid timestamp' do
|
|
before do
|
|
auth_hash[:timestamp] = Time.now
|
|
end
|
|
|
|
it_behaves_like 'is valid'
|
|
end
|
|
|
|
context 'hash contains invalid timestamp' do
|
|
before do
|
|
auth_hash[:timestamp] = Time.now - 1.hour
|
|
end
|
|
|
|
it_behaves_like 'has error on', :base, I18n.t(:error_omniauth_registration_timed_out)
|
|
end
|
|
|
|
context 'hash contains no timestamp' do
|
|
it_behaves_like 'is valid'
|
|
end
|
|
end
|
|
|
|
describe '#validate_authorization_callback' do
|
|
let(:auth_double) { double('Authorization', approve?: authorized, message: message) }
|
|
|
|
before do
|
|
allow(OpenProject::OmniAuth::Authorization)
|
|
.to(receive(:authorized?))
|
|
.with(auth_hash)
|
|
.and_return(auth_double)
|
|
end
|
|
|
|
context 'if authorized' do
|
|
let(:authorized) { true }
|
|
let(:message) { nil }
|
|
it_behaves_like 'is valid'
|
|
end
|
|
|
|
context 'if invalid' do
|
|
let(:authorized) { false }
|
|
let(:message) { 'ERROR!' }
|
|
|
|
it_behaves_like 'has error on', :base, 'ERROR!'
|
|
end
|
|
end
|
|
end
|
|
|