Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

251 lines
7.0 KiB
Ruby
Raw Permalink Normal View History

2025-05-05 09:29:55 +02:00
# frozen_string_literal: true
2013-08-29 17:31:05 +01:00
#-- copyright
2020-01-15 11:31:26 +01:00
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
2013-08-29 17:31:05 +01:00
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
2013-09-16 17:59:31 +02:00
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
2021-01-13 17:47:45 +01:00
# Copyright (C) 2006-2013 Jean-Philippe Lang
2013-09-16 17:59:31 +02:00
# 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.
2013-08-29 17:31:05 +01:00
#++
require "spec_helper"
2023-05-31 12:15:15 +02:00
RSpec.describe ApplicationController do
2023-11-20 15:40:05 +01:00
let(:user) { create(:user, lastname: "Crazy name") }
2013-08-29 17:31:05 +01:00
# Fake controller to test calling an action
controller do
no_authorization_required! :index
2013-08-29 17:31:05 +01:00
def index
# just do anything that doesn't require an extra template
2016-09-09 15:41:12 +02:00
redirect_to root_path
2013-08-29 17:31:05 +01:00
end
end
describe "logging requesting users", with_settings: { login_required: false } do
2019-06-18 11:12:53 +02:00
let(:user_message) do
2023-11-20 15:40:05 +01:00
"OpenProject User: #{user.firstname} Crazy name (#{user.login} ID: #{user.id} <#{user.mail}>)"
2019-06-18 11:12:53 +02:00
end
2013-08-29 17:31:05 +01:00
2014-11-03 23:43:33 +01:00
let(:anonymous_message) { "OpenProject User: Anonymous" }
2013-08-29 17:31:05 +01:00
2013-10-17 15:39:26 +02:00
describe "with log_requesting_user enabled" do
before do
2016-09-09 15:41:12 +02:00
allow(Rails.logger).to receive(:info)
allow(Setting).to receive(:log_requesting_user?).and_return(true)
2013-08-29 17:31:05 +01:00
end
2013-10-17 15:39:26 +02:00
it "logs the current user" do
expect(Rails.logger).to receive(:info).once.with(user_message)
2013-08-29 17:31:05 +01:00
2013-10-17 15:39:26 +02:00
as_logged_in_user(user) do
get(:index)
end
2013-08-29 17:31:05 +01:00
end
2013-10-17 15:39:26 +02:00
it "logs an anonymous user" do
expect(Rails.logger).to receive(:info).once.with(anonymous_message)
2013-08-29 17:31:05 +01:00
2013-10-17 15:39:26 +02:00
# no login, so this is done as Anonymous
get(:index)
end
2013-08-29 17:31:05 +01:00
end
2013-10-17 15:39:26 +02:00
describe "with log_requesting_user disabled" do
before do
allow(Setting).to receive(:log_requesting_user?).and_return(false)
2013-08-29 17:31:05 +01:00
end
2013-10-17 15:39:26 +02:00
it "does not log the current user" do
expect(Rails.logger).not_to receive(:info).with(user_message)
2013-08-29 17:31:05 +01:00
2013-10-17 15:39:26 +02:00
as_logged_in_user(user) do
get(:index)
end
end
2013-08-29 17:31:05 +01:00
end
end
describe "unverified request", with_settings: { login_required: false } do
shared_examples "handle_unverified_request resets session" do
2016-09-09 15:41:12 +02:00
before do
ActionController::Base.allow_forgery_protection = true
end
after do
ActionController::Base.allow_forgery_protection = false
end
it "deletes the autologin cookie" do
2016-09-09 15:41:12 +02:00
cookies_double = double("cookies").as_null_object
allow(controller)
.to receive(:cookies)
.and_return(cookies_double)
2016-09-09 15:41:12 +02:00
expect(cookies_double)
.to receive(:delete)
.with(OpenProject::Configuration["autologin_cookie_name"])
2016-09-09 15:41:12 +02:00
post :index
end
it "logs out the user" do
2022-01-24 19:22:35 +01:00
@controller.send(:logged_user=, create(:user))
allow(@controller).to receive(:render_error)
@controller.send :handle_unverified_request
expect(@controller.send(:current_user).anonymous?).to be_truthy
end
end
context "for non-API resources" do
before do
allow(@controller).to receive(:api_request?).and_return(false)
end
it_behaves_like "handle_unverified_request resets session"
it "gives 422" do
expect(@controller).to receive(:render_error) do |options|
expect(options[:status]).to be(422)
end
@controller.send :handle_unverified_request
end
end
context "for API resources" do
before do
allow(@controller).to receive(:api_request?).and_return(true)
end
it_behaves_like "handle_unverified_request resets session"
it "does not render an error" do
2015-03-11 16:16:25 -03:00
expect(@controller).not_to receive(:render_error)
@controller.send :handle_unverified_request
end
end
end
describe "rack timeout duplicate error suppression", with_settings: { login_required: false } do
controller do
include OpenProjectErrorHelper
no_authorization_required! :index
def index
op_handle_error "fail"
redirect_to root_path
end
end
before do
2023-01-13 14:28:59 +01:00
allow(OpenProject.logger).to receive(:error)
end
it "doesn't suppress errors when there is no timeout" do
get :index
2023-01-13 14:28:59 +01:00
expect(OpenProject.logger).to have_received(:error) do |msg, _|
expect(msg).to eq "fail"
end
end
context "when there is a rack timeout" do
controller do
include OpenProjectErrorHelper
prepend Rack::Timeout::SuppressInternalErrorReportOnTimeout
def index
op_handle_error "fail"
redirect_to root_path
end
end
before do
allow(controller.request.env).to receive(:[]).and_call_original
allow(controller.request.env)
.to receive(:[])
.with(Rack::Timeout::ENV_INFO_KEY)
.and_return(OpenStruct.new(state: :timed_out))
end
it "suppresses the (duplicate) error report" do
get :index
2023-01-13 14:28:59 +01:00
expect(OpenProject.logger).not_to have_received(:error)
end
end
context "when used outside of a controller" do
let(:object) do
klass = Class.new(Object) do
include OpenProjectErrorHelper
prepend Rack::Timeout::SuppressInternalErrorReportOnTimeout
end
klass.new
end
it "does nothing as there is no duplicate to suppress" do
expect { object.op_handle_error "fail" }.not_to raise_error
2023-01-13 14:28:59 +01:00
expect(OpenProject.logger).to have_received(:error)
end
end
end
describe "#require_login redirect target", with_settings: { login_required: true } do
before do
allow(controller).to receive(:current_user).and_return(User.anonymous)
end
context "when back_url points to home" do
it "redirects to signin without back_url" do
allow(controller).to receive(:login_back_url).and_return(controller.home_url)
get :index
expect(response).to redirect_to(signin_path)
end
end
context "when back_url points to another page" do
it "redirects to signin with back_url" do
allow(controller).to receive(:login_back_url).and_return("http://test.host/projects")
get :index
expect(response).to redirect_to(signin_path(back_url: "http://test.host/projects"))
end
end
end
2013-08-29 17:31:05 +01:00
end