BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
a8eb3fe1
Commit
a8eb3fe1
authored
Nov 19, 2012
by
Hugo Duksis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests for issue #1984
parent
be1dc554
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
backup_rake_spec.rb
spec/tasks/gitlab/backup_rake_spec.rb
+45
-0
No files found.
spec/tasks/gitlab/backup_rake_spec.rb
0 → 100644
View file @
a8eb3fe1
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment