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
3e7c4a91
Commit
3e7c4a91
authored
Nov 24, 2017
by
Gabriel Mazetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport EE changes to make test possible when prepending modules
parent
de63b9c3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
7 deletions
+19
-7
app/services/projects/hashed_storage/migrate_attachments_service.rb
...es/projects/hashed_storage/migrate_attachments_service.rb
+4
-0
app/services/projects/hashed_storage/migrate_repository_service.rb
...ces/projects/hashed_storage/migrate_repository_service.rb
+5
-1
spec/services/projects/hashed_storage_migration_service_spec.rb
...ervices/projects/hashed_storage_migration_service_spec.rb
+10
-6
No files found.
app/services/projects/hashed_storage/migrate_attachments_service.rb
View file @
3e7c4a91
...
...
@@ -17,6 +17,10 @@ module Projects
move_folder!
(
old_path
,
new_path
)
project
.
save!
if
block_given?
yield
end
end
private
...
...
app/services/projects/hashed_storage/migrate_repository_service.rb
View file @
3e7c4a91
...
...
@@ -37,7 +37,11 @@ module Projects
project
.
repository_read_only
=
false
project
.
save!
block_given?
?
yield
:
result
if
result
&&
block_given?
yield
end
result
end
private
...
...
spec/services/projects/hashed_storage_migration_service_spec.rb
View file @
3e7c4a91
...
...
@@ -6,32 +6,36 @@ describe Projects::HashedStorageMigrationService do
describe
'#execute'
do
context
'repository migration'
do
let
(
:repository_service
)
{
Projects
::
HashedStorage
::
MigrateRepositoryService
.
new
(
project
,
subject
.
logger
)
}
it
'delegates migration to Projects::HashedStorage::MigrateRepositoryService'
do
expect
(
Projects
::
HashedStorage
::
MigrateRepositoryService
).
to
receive
(
:new
).
with
(
project
,
subject
.
logger
).
and_
call_original
expect
_any_instance_of
(
Projects
::
HashedStorage
::
MigrateRepositoryS
ervice
).
to
receive
(
:execute
)
expect
(
Projects
::
HashedStorage
::
MigrateRepositoryService
).
to
receive
(
:new
).
with
(
project
,
subject
.
logger
).
and_
return
(
repository_service
)
expect
(
repository_s
ervice
).
to
receive
(
:execute
)
service
.
execute
end
it
'does not delegate migration if repository is already migrated'
do
project
.
storage_version
=
::
Project
::
LATEST_STORAGE_VERSION
expect
_any_instance_of
(
Projects
::
HashedStorage
::
MigrateRepositoryService
).
not_to
receive
(
:execute
)
expect
(
Projects
::
HashedStorage
::
MigrateRepositoryService
).
not_to
receive
(
:new
)
service
.
execute
end
end
context
'attachments migration'
do
let
(
:attachments_service
)
{
Projects
::
HashedStorage
::
MigrateAttachmentsService
.
new
(
project
,
subject
.
logger
)
}
it
'delegates migration to Projects::HashedStorage::MigrateRepositoryService'
do
expect
(
Projects
::
HashedStorage
::
MigrateAttachmentsService
).
to
receive
(
:new
).
with
(
project
,
subject
.
logger
).
and_
call_original
expect
_any_instance_of
(
Projects
::
HashedStorage
::
MigrateAttachmentsS
ervice
).
to
receive
(
:execute
)
expect
(
Projects
::
HashedStorage
::
MigrateAttachmentsService
).
to
receive
(
:new
).
with
(
project
,
subject
.
logger
).
and_
return
(
attachments_service
)
expect
(
attachments_s
ervice
).
to
receive
(
:execute
)
service
.
execute
end
it
'does not delegate migration if attachments are already migrated'
do
project
.
storage_version
=
::
Project
::
LATEST_STORAGE_VERSION
expect
_any_instance_of
(
Projects
::
HashedStorage
::
MigrateAttachmentsService
).
not_to
receive
(
:execute
)
expect
(
Projects
::
HashedStorage
::
MigrateAttachmentsService
).
not_to
receive
(
:new
)
service
.
execute
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