mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
127 lines
3.9 KiB
Ruby
127 lines
3.9 KiB
Ruby
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 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"
|
|
require "rack/test"
|
|
|
|
RSpec.describe "API v3 User avatar resource", content_type: :json do
|
|
include Rack::Test::Methods
|
|
include API::V3::Utilities::PathHelper
|
|
|
|
let(:current_user) { create(:admin) }
|
|
let(:setup) { nil }
|
|
let(:other_user) { create(:user) }
|
|
|
|
subject(:response) { last_response }
|
|
|
|
before do
|
|
login_as current_user
|
|
end
|
|
|
|
describe "/avatar", with_settings: { protocol: "http" } do
|
|
before do
|
|
allow(Setting)
|
|
.to receive(:plugin_openproject_avatars)
|
|
.and_return(enable_gravatars: gravatars, enable_local_avatars: local_avatars)
|
|
|
|
setup
|
|
|
|
get api_v3_paths.user(other_user.id) + "/avatar"
|
|
end
|
|
|
|
context "with neither enabled" do
|
|
let(:gravatars) { false }
|
|
let(:local_avatars) { false }
|
|
|
|
it "renders a 404" do
|
|
expect(response).to have_http_status :not_found
|
|
end
|
|
end
|
|
|
|
shared_examples_for "cache headers set to 24 hours" do
|
|
it "has the cache headers set to 24 hours" do
|
|
expect(response.headers["Cache-Control"]).to eq "public, max-age=86400"
|
|
expect(response.headers["Expires"]).to be_present
|
|
|
|
expires_time = Time.parse response.headers["Expires"]
|
|
|
|
expect(expires_time < Time.now.utc + 86400).to be_truthy
|
|
expect(expires_time > Time.now.utc + 86400 - 60).to be_truthy
|
|
end
|
|
end
|
|
|
|
context "when gravatar enabled" do
|
|
let(:gravatars) { true }
|
|
let(:local_avatars) { false }
|
|
|
|
it "redirects to gravatar" do
|
|
expect(response).to have_http_status :found
|
|
expect(response.location).to match /gravatar\.com/
|
|
end
|
|
|
|
it_behaves_like "cache headers set to 24 hours"
|
|
end
|
|
|
|
context "with local avatar" do
|
|
let(:gravatars) { true }
|
|
let(:local_avatars) { true }
|
|
|
|
let(:other_user) do
|
|
u = create(:user)
|
|
u.attachments = [build(:avatar_attachment, author: u)]
|
|
u
|
|
end
|
|
|
|
it "serves the attachment file" do
|
|
expect(response).to have_http_status :ok
|
|
end
|
|
|
|
it_behaves_like "cache headers set to 24 hours"
|
|
|
|
context "with external file storage (S3)" do
|
|
let(:setup) do
|
|
allow_any_instance_of(Attachment).to receive(:external_storage?).and_return true
|
|
|
|
expect_any_instance_of(Attachment)
|
|
.to receive(:external_url)
|
|
.with(expires_in: 86400)
|
|
.and_return("external URL")
|
|
end
|
|
|
|
# we test that Attachment#external_url works in `attachments_spec.rb`
|
|
# so here we just make sue it's called accordingly when the external
|
|
# storage is configured
|
|
it "redirects to temporary external URL" do
|
|
expect(response).to have_http_status :found
|
|
expect(response.location).to eq "external URL"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|