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
5d57030e
Commit
5d57030e
authored
Jan 04, 2018
by
Michael Kozono
Committed by
Stan Hu
Jan 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete conflicting orphaned routes
parent
792e9ed7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
0 deletions
+79
-0
app/models/route.rb
app/models/route.rb
+12
-0
changelogs/unreleased/mk-delete-orphaned-routes-before-validation.yml
...nreleased/mk-delete-orphaned-routes-before-validation.yml
+6
-0
spec/models/route_spec.rb
spec/models/route_spec.rb
+61
-0
No files found.
app/models/route.rb
View file @
5d57030e
class
Route
<
ActiveRecord
::
Base
include
CaseSensitivity
belongs_to
:source
,
polymorphic:
true
# rubocop:disable Cop/PolymorphicAssociations
validates
:source
,
presence:
true
...
...
@@ -10,6 +12,7 @@ class Route < ActiveRecord::Base
validate
:ensure_permanent_paths
,
if: :path_changed?
before_validation
:delete_conflicting_orphaned_routes
after_create
:delete_conflicting_redirects
after_update
:delete_conflicting_redirects
,
if: :path_changed?
after_update
:create_redirect_for_old_path
...
...
@@ -78,4 +81,13 @@ class Route < ActiveRecord::Base
def
conflicting_redirect_exists?
RedirectRoute
.
permanent
.
matching_path_and_descendants
(
path
).
exists?
end
def
delete_conflicting_orphaned_routes
conflicting
=
self
.
class
.
iwhere
(
path:
path
)
conflicting_orphaned_routes
=
conflicting
.
select
do
|
route
|
route
.
source
.
nil?
end
conflicting_orphaned_routes
.
each
(
&
:destroy
)
end
end
changelogs/unreleased/mk-delete-orphaned-routes-before-validation.yml
0 → 100644
View file @
5d57030e
---
title
:
Ensure that users can reclaim a namespace or project path that is blocked by
an orphaned route
merge_request
:
16242
author
:
type
:
fixed
spec/models/route_spec.rb
View file @
5d57030e
...
...
@@ -79,6 +79,13 @@ describe Route do
end
describe
'callbacks'
do
context
'before validation'
do
it
'calls #delete_conflicting_orphaned_routes'
do
expect
(
route
).
to
receive
(
:delete_conflicting_orphaned_routes
)
route
.
valid?
end
end
context
'after update'
do
it
'calls #create_redirect_for_old_path'
do
expect
(
route
).
to
receive
(
:create_redirect_for_old_path
)
...
...
@@ -378,4 +385,58 @@ describe Route do
end
end
end
describe
'#delete_conflicting_orphaned_routes'
do
context
'when there is a conflicting route'
do
let!
(
:conflicting_group
)
{
create
(
:group
,
path:
'foo'
)
}
before
do
route
.
path
=
conflicting_group
.
route
.
path
end
context
'when the route is orphaned'
do
let!
(
:offending_route
)
{
conflicting_group
.
route
}
before
do
Group
.
delete
(
conflicting_group
)
# Orphan the route
end
it
'deletes the orphaned route'
do
expect
do
route
.
valid?
end
.
to
change
{
described_class
.
count
}.
from
(
2
).
to
(
1
)
end
it
'passes validation, as usual'
do
expect
(
route
.
valid?
).
to
be_truthy
end
end
context
'when the route is not orphaned'
do
it
'does not delete the conflicting route'
do
expect
do
route
.
valid?
end
.
not_to
change
{
described_class
.
count
}
end
it
'fails validation, as usual'
do
expect
(
route
.
valid?
).
to
be_falsey
end
end
end
context
'when there are no conflicting routes'
do
it
'does not delete any routes'
do
route
expect
do
route
.
valid?
end
.
not_to
change
{
described_class
.
count
}
end
it
'passes validation, as usual'
do
expect
(
route
.
valid?
).
to
be_truthy
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