Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
10ec9b22
Commit
10ec9b22
authored
Nov 30, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2017 from duksis/backup_restore
bugfix: backup data retrieved with the same type keys as saved
parents
c19e766f
a9c2500a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
1 deletion
+47
-1
lib/tasks/gitlab/backup.rake
lib/tasks/gitlab/backup.rake
+1
-1
spec/tasks/gitlab/backup_rake_spec.rb
spec/tasks/gitlab/backup_rake_spec.rb
+46
-0
No files found.
lib/tasks/gitlab/backup.rake
View file @
10ec9b22
...
...
@@ -82,7 +82,7 @@ namespace :gitlab do
end
settings
=
YAML
.
load_file
(
"backup_information.yml"
)
ENV
[
"VERSION"
]
=
"
#{
settings
[
"db_version"
]
}
"
if
settings
[
"db_version"
].
to_i
>
0
ENV
[
"VERSION"
]
=
"
#{
settings
[
:db_version
]
}
"
if
settings
[
:db_version
].
to_i
>
0
# restoring mismatching backups can lead to unexpected problems
if
settings
[
:gitlab_version
]
!=
%x{git rev-parse HEAD}
.
gsub
(
/\n/
,
""
)
...
...
spec/tasks/gitlab/backup_rake_spec.rb
0 → 100644
View file @
10ec9b22
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
=>
[]
Dir
.
stub
:chdir
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