OpenProject is the leading open source project management software.
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.
openproject/spec/requests/api/v3/backups/backups_api_spec.rb

154 lines
4.5 KiB

#-- 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 docs/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
require 'rack/test'
describe API::V3::Backups::BackupsAPI, type: :request, with_config: { backup_enabled: true } do
include API::V3::Utilities::PathHelper
let(:user) { FactoryBot.create :user, global_permissions: [:create_backup] }
let(:params) { { backupToken: backup_token.plain_value } }
let(:backup_token) { FactoryBot.create :backup_token, user: user }
before do
login_as user
end
def create_backup
post api_v3_paths.backups, params.to_json, "CONTENT_TYPE" => "application/json"
end
describe "POST /api/v3/backups" do
shared_context "request" do
before do
create_backup
end
end
context "with no pending backups" do
context "with no params" do
let(:params) { {} }
include_context "request"
it "results in a bad request error" do
expect(last_response.status).to eq 400
end
end
context "with no options" do
before do
expect(Backups::CreateService)
.to receive(:new)
.with(user: user, backup_token: backup_token.plain_value, include_attachments: true)
.and_call_original
create_backup
end
it "enqueues the backup including attachments" do
expect(last_response.status).to eq 202
end
end
context "with include_attachments: false" do
let(:params) { { backupToken: backup_token.plain_value, attachments: false } }
before do
expect(Backups::CreateService)
.to receive(:new)
.with(user: user, backup_token: backup_token.plain_value, include_attachments: false)
.and_call_original
create_backup
end
it "enqueues a backup not including attachments" do
expect(last_response.status).to eq 202
end
end
end
context "with pending backups" do
let!(:backup) { FactoryBot.create :backup }
let!(:status) { FactoryBot.create :delayed_job_status, user: user, reference: backup }
include_context "request"
it "results in a conflict" do
expect(last_response.status).to eq 409
end
end
context "with missing permissions" do
let(:user) { FactoryBot.create :user }
include_context "request"
it "is forbidden" do
expect(last_response.status).to eq 403
end
end
context "with another user's token" do
let(:other_user) { FactoryBot.create :user }
let(:backup_token) { FactoryBot.create :backup_token, user: other_user }
include_context "request"
it "is forbidden" do
expect(last_response.status).to eq 403
end
end
context "with daily backup limit reached", with_config: { backup_daily_limit: -1 } do
include_context "request"
it "is rate limited" do
expect(last_response.status).to eq 429
end
end
context "with backup token on cooldown", with_config: { backup_initial_waiting_period: 24.hours } do
let(:backup_token) { FactoryBot.create :backup_token, :with_waiting_period, user: user, since: 5.hours }
include_context "request"
it "is forbidden" do
expect(last_response.status).to eq 403
end
it "shows the remaining hours until the token is valid" do
expect(last_response.body).to include "19 hours"
end
end
end
end