diff options
author | Hugo Duksis <hugo.duksis@tieto.com> | 2012-11-19 15:38:58 +0200 |
---|---|---|
committer | Hugo Duksis <hugo.duksis@tieto.com> | 2012-11-19 22:42:58 +0200 |
commit | a8eb3fe1d2def9d4cc78003cd0a14de573a11fc5 (patch) | |
tree | c56ab97d1bc431b2711145c42571c6b14bb68f7d /spec/tasks | |
parent | be1dc5544a7840d17657d3d8fcecb0d0fd4401b5 (diff) | |
download | gitlab-ce-a8eb3fe1d2def9d4cc78003cd0a14de573a11fc5.tar.gz |
tests for issue #1984
Diffstat (limited to 'spec/tasks')
-rw-r--r-- | spec/tasks/gitlab/backup_rake_spec.rb | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/spec/tasks/gitlab/backup_rake_spec.rb b/spec/tasks/gitlab/backup_rake_spec.rb new file mode 100644 index 00000000000..62cd1135e87 --- /dev/null +++ b/spec/tasks/gitlab/backup_rake_spec.rb @@ -0,0 +1,45 @@ +require 'spec_helper' +require 'rake' + +describe 'gitlab:app namespace rake task' do + before :all do + Rake.application.rake_require "tasks/gitlab/backup" + # empty task as env is already loaded + Rake::Task.define_task :environment + end + + describe 'backup_restore' do + before do + # avoid writing task output to spec progress + $stdout.stub :write + end + + let :run_rake_task do + Rake::Task["gitlab:app:backup_restore"].reenable + Rake.application.invoke_task "gitlab:app:backup_restore" + end + + context 'gitlab version' do + before do + Dir.stub :glob => [] + File.stub :exists? => true + Kernel.stub :system => true + end + + let(:gitlab_version) { %x{git rev-parse HEAD}.gsub(/\n/,"") } + + it 'should fail on mismach' do + YAML.stub :load_file => {:gitlab_version => gitlab_version.reverse} + expect { run_rake_task }.to raise_error SystemExit + end + + it 'should invoke restoration on mach' do + YAML.stub :load_file => {:gitlab_version => gitlab_version} + Rake::Task["gitlab:app:db_restore"].should_receive :invoke + Rake::Task["gitlab:app:repo_restore"].should_receive :invoke + expect { run_rake_task }.to_not raise_error SystemExit + end + end + + end # backup_restore task +end # gitlab:app namespace |