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.
122 lines
3.7 KiB
122 lines
3.7 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'
|
|
|
|
describe 'backup', type: :feature, js: true do
|
|
let(:current_user) { FactoryBot.create :admin, password: user_password, password_confirmation: user_password }
|
|
let!(:backup_token) { FactoryBot.create :backup_token, user: current_user }
|
|
let(:user_password) { "adminadmin!" }
|
|
|
|
before do
|
|
@download_list = DownloadList.new
|
|
|
|
login_as current_user
|
|
end
|
|
|
|
after do
|
|
DownloadList.clear
|
|
end
|
|
|
|
subject { @download_list.refresh_from(page).latest_download.to_s }
|
|
|
|
it "can be downloaded" do
|
|
visit '/admin/backups'
|
|
|
|
fill_in 'backupToken', with: backup_token.plain_value
|
|
click_on "Request backup"
|
|
|
|
expect(page).to have_content I18n.t('js.job_status.generic_messages.in_queue'), wait: 10
|
|
|
|
begin
|
|
perform_enqueued_jobs
|
|
rescue StandardError
|
|
# nothing
|
|
end
|
|
|
|
expect(page).to have_text "The export has completed successfully"
|
|
expect(subject).to end_with ".zip"
|
|
end
|
|
|
|
context "with an error" do
|
|
it "shows the error" do
|
|
visit "/admin/backups"
|
|
|
|
fill_in "backupToken", with: "foobar"
|
|
click_on "Request backup"
|
|
|
|
expect(page).to have_content I18n.t("backup.error.invalid_token")
|
|
end
|
|
end
|
|
|
|
describe "token reset" do
|
|
let(:dialog) { ::Components::PasswordConfirmationDialog.new }
|
|
|
|
before do
|
|
visit "/admin/backups"
|
|
click_on I18n.t("backup.label_reset_token")
|
|
|
|
expect(page).to have_content /#{I18n.t('backup.reset_token.heading_reset')}/i
|
|
|
|
fill_in "login_verification", with: "reset"
|
|
click_on "Reset"
|
|
end
|
|
|
|
it 'works given the correct password' do
|
|
dialog.confirm_flow_with(user_password)
|
|
|
|
new_token = Token::Backup.find_by(user: current_user)
|
|
|
|
expect(new_token.plain_value).not_to eq backup_token.plain_value
|
|
expect(page).to have_content new_token.plain_value
|
|
end
|
|
|
|
it 'declines the change when an invalid password is given' do
|
|
dialog.confirm_flow_with(user_password + 'INVALID', should_fail: true)
|
|
|
|
new_token = Token::Backup.find_by_plaintext_value backup_token.plain_value
|
|
|
|
expect(new_token).to eq backup_token
|
|
end
|
|
end
|
|
|
|
it "allows the backup token to be deleted" do
|
|
visit "/admin/backups"
|
|
|
|
expect(page).to have_content /#{I18n.t('js.backup.title')}/i
|
|
|
|
click_on I18n.t("backup.label_delete_token")
|
|
|
|
expect(page).to have_content I18n.t("backup.text_token_deleted")
|
|
|
|
token = Token::Backup.find_by(user: current_user)
|
|
|
|
expect(token).to be_nil
|
|
expect(page).not_to have_content /#{I18n.t('js.backup.title')}/i
|
|
end
|
|
end
|
|
|