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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
1b76c719
Commit
1b76c719
authored
Jun 07, 2017
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add more spec examples
parent
6e92d902
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
6 deletions
+41
-6
spec/lib/gitlab/backup/repository_spec.rb
spec/lib/gitlab/backup/repository_spec.rb
+41
-6
No files found.
spec/lib/gitlab/backup/repository_spec.rb
View file @
1b76c719
...
@@ -22,14 +22,49 @@ describe Backup::Repository, lib: true do
...
@@ -22,14 +22,49 @@ describe Backup::Repository, lib: true do
$progress
=
@old_progress
# rubocop:disable Style/GlobalVars
$progress
=
@old_progress
# rubocop:disable Style/GlobalVars
end
end
describe
'repo failure'
do
describe
'.dump'
do
before
do
describe
'repo failure'
do
allow_any_instance_of
(
Project
).
to
receive
(
:empty_repo?
).
and_raise
(
Rugged
::
OdbError
)
before
do
allow
(
Gitlab
::
Popen
).
to
receive
(
:popen
).
and_return
([
'normal output'
,
0
])
allow_any_instance_of
(
Project
).
to
receive
(
:empty_repo?
).
and_raise
(
Rugged
::
OdbError
)
allow
(
Gitlab
::
Popen
).
to
receive
(
:popen
).
and_return
([
'normal output'
,
0
])
end
it
'does not raise error'
do
expect
{
described_class
.
new
.
dump
}.
not_to
raise_error
end
it
'shows the appropriate error'
do
described_class
.
new
.
dump
expect
(
progress
).
to
have_received
(
:puts
).
with
(
"Ignoring error on
#{
project
.
full_path
}
repository - Rugged::OdbError"
)
end
end
describe
'command failure'
do
before
do
allow_any_instance_of
(
Project
).
to
receive
(
:empty_repo?
).
and_return
(
false
)
allow
(
Gitlab
::
Popen
).
to
receive
(
:popen
).
and_return
([
'error'
,
1
])
end
it
'shows the appropriate error'
do
described_class
.
new
.
dump
expect
(
progress
).
to
have_received
(
:puts
).
with
(
"Ignoring error on
#{
project
.
full_path
}
- error"
)
end
end
end
end
describe
'.restore'
do
describe
'command failure'
do
before
do
allow
(
Gitlab
::
Popen
).
to
receive
(
:popen
).
and_return
([
'error'
,
1
])
end
it
'shows the appropriate error'
do
described_class
.
new
.
restore
it
'does not raise error'
do
expect
(
progress
).
to
have_received
(
:puts
).
with
(
"Ignoring error on
#{
project
.
full_path
}
- error"
)
e
xpect
{
described_class
.
new
.
dump
}.
not_to
raise_error
e
nd
end
end
end
end
end
end
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