2012-11-19 08:38:58 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'rake'
|
|
|
|
|
|
|
|
describe 'gitlab:app namespace rake task' do
|
|
|
|
before :all do
|
2012-12-24 22:14:05 -05:00
|
|
|
Rake.application.rake_require "tasks/gitlab/task_helpers"
|
2012-11-19 08:38:58 -05:00
|
|
|
Rake.application.rake_require "tasks/gitlab/backup"
|
2014-01-15 06:00:11 -05:00
|
|
|
Rake.application.rake_require "tasks/gitlab/shell"
|
2012-11-19 08:38:58 -05:00
|
|
|
# empty task as env is already loaded
|
|
|
|
Rake::Task.define_task :environment
|
|
|
|
end
|
|
|
|
|
2015-03-15 14:54:36 -04:00
|
|
|
def run_rake_task(task_name)
|
|
|
|
Rake::Task[task_name].reenable
|
|
|
|
Rake.application.invoke_task task_name
|
|
|
|
end
|
|
|
|
|
2015-07-24 12:34:00 -04:00
|
|
|
def reenable_backup_sub_tasks
|
2015-09-15 18:00:08 -04:00
|
|
|
%w{db repo uploads builds}.each do |subtask|
|
2015-07-24 12:34:00 -04:00
|
|
|
Rake::Task["gitlab:backup:#{subtask}:create"].reenable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-19 08:38:58 -05:00
|
|
|
describe 'backup_restore' do
|
|
|
|
before do
|
|
|
|
# avoid writing task output to spec progress
|
2015-02-12 13:17:35 -05:00
|
|
|
allow($stdout).to receive :write
|
2012-11-19 08:38:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'gitlab version' do
|
|
|
|
before do
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(Dir).to receive(:glob).and_return([])
|
|
|
|
allow(Dir).to receive(:chdir)
|
|
|
|
allow(File).to receive(:exists?).and_return(true)
|
|
|
|
allow(Kernel).to receive(:system).and_return(true)
|
|
|
|
allow(FileUtils).to receive(:cp_r).and_return(true)
|
|
|
|
allow(FileUtils).to receive(:mv).and_return(true)
|
|
|
|
allow(Rake::Task["gitlab:shell:setup"]).
|
|
|
|
to receive(:invoke).and_return(true)
|
2012-11-19 08:38:58 -05:00
|
|
|
end
|
|
|
|
|
2014-02-28 05:57:58 -05:00
|
|
|
let(:gitlab_version) { Gitlab::VERSION }
|
2012-11-19 08:38:58 -05:00
|
|
|
|
2013-07-29 06:46:00 -04:00
|
|
|
it 'should fail on mismatch' do
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(YAML).to receive(:load_file).
|
2015-06-23 04:46:29 -04:00
|
|
|
and_return({ gitlab_version: "not #{gitlab_version}" })
|
2015-05-21 17:49:06 -04:00
|
|
|
|
|
|
|
expect { run_rake_task('gitlab:backup:restore') }.
|
|
|
|
to raise_error(SystemExit)
|
2012-11-19 08:38:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should invoke restoration on mach' do
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(YAML).to receive(:load_file).
|
2015-06-23 04:46:29 -04:00
|
|
|
and_return({ gitlab_version: gitlab_version })
|
2015-05-21 17:49:06 -04:00
|
|
|
expect(Rake::Task["gitlab:backup:db:restore"]).to receive(:invoke)
|
|
|
|
expect(Rake::Task["gitlab:backup:repo:restore"]).to receive(:invoke)
|
2015-09-15 04:24:30 -04:00
|
|
|
expect(Rake::Task["gitlab:backup:builds:restore"]).to receive(:invoke)
|
2015-05-21 17:49:06 -04:00
|
|
|
expect(Rake::Task["gitlab:shell:setup"]).to receive(:invoke)
|
|
|
|
expect { run_rake_task('gitlab:backup:restore') }.not_to raise_error
|
2012-11-19 08:38:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end # backup_restore task
|
2015-03-15 14:54:36 -04:00
|
|
|
|
|
|
|
describe 'backup_create' do
|
|
|
|
def tars_glob
|
|
|
|
Dir.glob(File.join(Gitlab.config.backup.path, '*_gitlab_backup.tar'))
|
|
|
|
end
|
|
|
|
|
2015-07-07 13:03:29 -04:00
|
|
|
def create_backup
|
2015-07-24 12:54:06 -04:00
|
|
|
FileUtils.rm tars_glob
|
2015-03-15 14:54:36 -04:00
|
|
|
|
|
|
|
# Redirect STDOUT and run the rake task
|
|
|
|
orig_stdout = $stdout
|
|
|
|
$stdout = StringIO.new
|
2015-07-24 12:34:00 -04:00
|
|
|
reenable_backup_sub_tasks
|
2015-03-15 14:54:36 -04:00
|
|
|
run_rake_task('gitlab:backup:create')
|
2015-07-24 12:34:00 -04:00
|
|
|
reenable_backup_sub_tasks
|
2015-03-15 14:54:36 -04:00
|
|
|
$stdout = orig_stdout
|
|
|
|
|
2015-07-24 12:54:06 -04:00
|
|
|
@backup_tar = tars_glob.first
|
2015-03-15 14:54:36 -04:00
|
|
|
end
|
|
|
|
|
2015-07-24 12:34:00 -04:00
|
|
|
before do
|
2015-07-07 13:03:29 -04:00
|
|
|
create_backup
|
|
|
|
end
|
|
|
|
|
2015-07-24 12:34:00 -04:00
|
|
|
after do
|
2015-03-15 14:54:36 -04:00
|
|
|
FileUtils.rm(@backup_tar)
|
|
|
|
end
|
|
|
|
|
2015-07-07 13:03:29 -04:00
|
|
|
context 'archive file permissions' do
|
|
|
|
it 'should set correct permissions on the tar file' do
|
|
|
|
expect(File.exist?(@backup_tar)).to be_truthy
|
|
|
|
expect(File::Stat.new(@backup_tar).mode.to_s(8)).to eq('100600')
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with custom archive_permissions' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab.config.backup).to receive(:archive_permissions).and_return(0651)
|
|
|
|
# We created a backup in a before(:all) so it got the default permissions.
|
|
|
|
# We now need to do some work to create a _new_ backup file using our stub.
|
|
|
|
FileUtils.rm(@backup_tar)
|
|
|
|
create_backup
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses the custom permissions' do
|
|
|
|
expect(File::Stat.new(@backup_tar).mode.to_s(8)).to eq('100651')
|
|
|
|
end
|
|
|
|
end
|
2015-03-15 14:54:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should set correct permissions on the tar contents' do
|
|
|
|
tar_contents, exit_status = Gitlab::Popen.popen(
|
2015-09-15 16:21:51 -04:00
|
|
|
%W{tar -tvf #{@backup_tar} db uploads repositories builds}
|
2015-03-15 14:54:36 -04:00
|
|
|
)
|
|
|
|
expect(exit_status).to eq(0)
|
|
|
|
expect(tar_contents).to match('db/')
|
|
|
|
expect(tar_contents).to match('uploads/')
|
|
|
|
expect(tar_contents).to match('repositories/')
|
2015-09-15 04:24:30 -04:00
|
|
|
expect(tar_contents).to match('builds/')
|
2015-09-15 16:21:51 -04:00
|
|
|
expect(tar_contents).not_to match(/^.{4,9}[rwx].* (db|uploads|repositories|builds)\/$/)
|
2015-03-15 14:54:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should delete temp directories' do
|
|
|
|
temp_dirs = Dir.glob(
|
2015-09-15 16:21:51 -04:00
|
|
|
File.join(Gitlab.config.backup.path, '{db,repositories,uploads,builds}')
|
2015-03-15 14:54:36 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
expect(temp_dirs).to be_empty
|
|
|
|
end
|
|
|
|
end # backup_create task
|
2015-03-27 09:18:59 -04:00
|
|
|
|
|
|
|
describe "Skipping items" do
|
|
|
|
def tars_glob
|
|
|
|
Dir.glob(File.join(Gitlab.config.backup.path, '*_gitlab_backup.tar'))
|
|
|
|
end
|
|
|
|
|
|
|
|
before :all do
|
|
|
|
@origin_cd = Dir.pwd
|
|
|
|
|
2015-07-24 12:34:00 -04:00
|
|
|
reenable_backup_sub_tasks
|
2015-03-27 09:18:59 -04:00
|
|
|
|
2015-07-24 12:54:06 -04:00
|
|
|
FileUtils.rm tars_glob
|
2015-03-27 09:18:59 -04:00
|
|
|
|
|
|
|
# Redirect STDOUT and run the rake task
|
|
|
|
orig_stdout = $stdout
|
|
|
|
$stdout = StringIO.new
|
|
|
|
ENV["SKIP"] = "repositories"
|
|
|
|
run_rake_task('gitlab:backup:create')
|
|
|
|
$stdout = orig_stdout
|
|
|
|
|
2015-07-24 12:54:06 -04:00
|
|
|
@backup_tar = tars_glob.first
|
2015-03-27 09:18:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after :all do
|
|
|
|
FileUtils.rm(@backup_tar)
|
|
|
|
Dir.chdir @origin_cd
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not contain skipped item" do
|
2015-10-03 17:02:21 -04:00
|
|
|
tar_contents, _exit_status = Gitlab::Popen.popen(
|
2015-09-15 18:00:08 -04:00
|
|
|
%W{tar -tvf #{@backup_tar} db uploads repositories builds}
|
2015-03-27 09:18:59 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
expect(tar_contents).to match('db/')
|
|
|
|
expect(tar_contents).to match('uploads/')
|
2015-09-15 04:24:30 -04:00
|
|
|
expect(tar_contents).to match('builds/')
|
2015-03-27 09:18:59 -04:00
|
|
|
expect(tar_contents).not_to match('repositories/')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not invoke repositories restore' do
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(Rake::Task["gitlab:shell:setup"]).
|
|
|
|
to receive(:invoke).and_return(true)
|
2015-03-27 09:18:59 -04:00
|
|
|
allow($stdout).to receive :write
|
|
|
|
|
|
|
|
expect(Rake::Task["gitlab:backup:db:restore"]).to receive :invoke
|
|
|
|
expect(Rake::Task["gitlab:backup:repo:restore"]).not_to receive :invoke
|
2015-09-15 04:24:30 -04:00
|
|
|
expect(Rake::Task["gitlab:backup:builds:restore"]).to receive :invoke
|
2015-03-27 09:18:59 -04:00
|
|
|
expect(Rake::Task["gitlab:shell:setup"]).to receive :invoke
|
2015-06-17 21:30:58 -04:00
|
|
|
expect { run_rake_task('gitlab:backup:restore') }.not_to raise_error
|
2015-03-27 09:18:59 -04:00
|
|
|
end
|
|
|
|
end
|
2012-11-19 08:38:58 -05:00
|
|
|
end # gitlab:app namespace
|