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
4c5acdda
Commit
4c5acdda
authored
Sep 21, 2017
by
Tiago Botelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds EE tag detection to remove_old in gitlab backup.
parent
cfccb278
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
6 deletions
+12
-6
lib/backup/manager.rb
lib/backup/manager.rb
+1
-1
spec/lib/gitlab/backup/manager_spec.rb
spec/lib/gitlab/backup/manager_spec.rb
+11
-5
No files found.
lib/backup/manager.rb
View file @
4c5acdda
...
...
@@ -79,7 +79,7 @@ module Backup
# - 1495527122_gitlab_backup.tar
# - 1495527068_2017_05_23_gitlab_backup.tar
# - 1495527097_2017_05_23_9.3.0-pre_gitlab_backup.tar
next
unless
file
=~
/^(\d{10})(?:_\d{4}_\d{2}_\d{2}(_\d+\.\d+\.\d+((-|\.)(pre|rc\d))?)?)?_gitlab_backup\.tar$/
next
unless
file
=~
/^(\d{10})(?:_\d{4}_\d{2}_\d{2}(_\d+\.\d+\.\d+((-|\.)(pre|rc\d))?
(-ee)?
)?)?_gitlab_backup\.tar$/
timestamp
=
$1
.
to_i
...
...
spec/lib/gitlab/backup/manager_spec.rb
View file @
4c5acdda
...
...
@@ -28,6 +28,7 @@ describe Backup::Manager do
'1451520000_2015_12_31_4.5.6_gitlab_backup.tar'
,
'1451520000_2015_12_31_4.5.6-pre_gitlab_backup.tar'
,
'1451520000_2015_12_31_4.5.6-rc1_gitlab_backup.tar'
,
'1451520000_2015_12_31_4.5.6-pre-ee_gitlab_backup.tar'
,
'1451510000_2015_12_30_gitlab_backup.tar'
,
'1450742400_2015_12_22_gitlab_backup.tar'
,
'1449878400_gitlab_backup.tar'
,
...
...
@@ -114,14 +115,18 @@ describe Backup::Manager do
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
3
])
end
it
'removes matching files with a human-readable
non-versioned timestamp
'
do
it
'removes matching files with a human-readable
versioned timestamp with tagged EE
'
do
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
4
])
end
it
'removes matching files with a human-readable non-versioned timestamp'
do
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
5
])
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
6
])
end
it
'removes matching files without a human-readable timestamp'
do
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
6
])
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
7
])
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
8
])
end
it
'does not remove files that are not old enough'
do
...
...
@@ -129,11 +134,11 @@ describe Backup::Manager do
end
it
'does not remove non-matching files'
do
expect
(
FileUtils
).
not_to
have_received
(
:rm
).
with
(
files
[
8
])
expect
(
FileUtils
).
not_to
have_received
(
:rm
).
with
(
files
[
9
])
end
it
'prints a done message'
do
expect
(
progress
).
to
have_received
(
:puts
).
with
(
'done. (
7
removed)'
)
expect
(
progress
).
to
have_received
(
:puts
).
with
(
'done. (
8
removed)'
)
end
end
...
...
@@ -153,10 +158,11 @@ describe Backup::Manager do
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
5
])
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
6
])
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
7
])
expect
(
FileUtils
).
to
have_received
(
:rm
).
with
(
files
[
8
])
end
it
'sets the correct removed count'
do
expect
(
progress
).
to
have_received
(
:puts
).
with
(
'done. (
6
removed)'
)
expect
(
progress
).
to
have_received
(
:puts
).
with
(
'done. (
7
removed)'
)
end
it
'prints the error from file that could not be removed'
do
...
...
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