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
f7d1ffb9
Commit
f7d1ffb9
authored
Sep 16, 2021
by
Jan Provaznik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Validate project namespace's parent
parent
4c04855e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
25 deletions
+60
-25
app/models/namespace.rb
app/models/namespace.rb
+14
-4
locale/gitlab.pot
locale/gitlab.pot
+15
-0
spec/factories/namespaces/project_namespaces.rb
spec/factories/namespaces/project_namespaces.rb
+1
-0
spec/models/group_spec.rb
spec/models/group_spec.rb
+1
-1
spec/models/namespace_spec.rb
spec/models/namespace_spec.rb
+29
-20
No files found.
app/models/namespace.rb
View file @
f7d1ffb9
...
...
@@ -530,17 +530,27 @@ class Namespace < ApplicationRecord
def
nesting_level_allowed
if
ancestors
.
count
>
Group
::
NUMBER_OF_ANCESTORS_ALLOWED
errors
.
add
(
:parent_id
,
'has too deep level of nesting'
)
errors
.
add
(
:parent_id
,
_
(
'has too deep level of nesting'
)
)
end
end
def
validate_parent_type
return
unless
has_parent?
unless
has_parent?
if
project?
errors
.
add
(
:parent_id
,
_
(
'must be set for a project namespace'
))
end
return
end
if
parent
.
project?
errors
.
add
(
:parent_id
,
_
(
'project namespace cannot be the parent of another namespace'
))
end
if
user?
errors
.
add
(
:parent_id
,
'a user namespace cannot have a parent'
)
errors
.
add
(
:parent_id
,
_
(
'cannot not be used for user namespace'
)
)
elsif
group?
errors
.
add
(
:parent_id
,
'a group cannot have a user namespace as its parent'
)
if
parent
.
user?
errors
.
add
(
:parent_id
,
_
(
'user namespace cannot be the parent of another namespace'
)
)
if
parent
.
user?
end
end
...
...
locale/gitlab.pot
View file @
f7d1ffb9
...
...
@@ -39445,6 +39445,9 @@ msgstr ""
msgid "cannot merge"
msgstr ""
msgid "cannot not be used for user namespace"
msgstr ""
msgid "ciReport|%{degradedNum} degraded"
msgstr ""
...
...
@@ -39955,6 +39958,9 @@ msgstr ""
msgid "has been completed."
msgstr ""
msgid "has too deep level of nesting"
msgstr ""
msgid "help"
msgstr ""
...
...
@@ -40503,6 +40509,9 @@ msgstr ""
msgid "must be less than the limit of %{tag_limit} tags"
msgstr ""
msgid "must be set for a project namespace"
msgstr ""
msgid "must be unique by status and elapsed time within a policy"
msgstr ""
...
...
@@ -40664,6 +40673,9 @@ msgstr ""
msgid "project name"
msgstr ""
msgid "project namespace cannot be the parent of another namespace"
msgstr ""
msgid "projects"
msgstr ""
...
...
@@ -40900,6 +40912,9 @@ msgstr ""
msgid "user avatar"
msgstr ""
msgid "user namespace cannot be the parent of another namespace"
msgstr ""
msgid "user preferences"
msgstr ""
...
...
spec/factories/namespaces/project_namespaces.rb
View file @
f7d1ffb9
...
...
@@ -7,5 +7,6 @@ FactoryBot.define do
path
{
project
.
path
}
type
{
Namespaces
::
ProjectNamespace
.
sti_name
}
owner
{
nil
}
parent
factory: :group
end
end
spec/models/group_spec.rb
View file @
f7d1ffb9
...
...
@@ -82,7 +82,7 @@ RSpec.describe Group do
group
=
build
(
:group
,
parent:
build
(
:namespace
))
expect
(
group
).
not_to
be_valid
expect
(
group
.
errors
[
:parent_id
].
first
).
to
eq
(
'
a group cannot have a user namespace as its parent
'
)
expect
(
group
.
errors
[
:parent_id
].
first
).
to
eq
(
'
user namespace cannot be the parent of another namespace
'
)
end
it
'allows a group to have another group as its parent'
do
...
...
spec/models/namespace_spec.rb
View file @
f7d1ffb9
...
...
@@ -36,27 +36,34 @@ RSpec.describe Namespace do
it
{
is_expected
.
to
validate_numericality_of
(
:max_artifacts_size
).
only_integer
.
is_greater_than
(
0
)
}
context
'validating the parent of a namespace'
do
context
'when the namespace has no parent'
do
it
'allows a namespace to have no parent associated with it'
do
namespace
=
build
(
:namespace
)
expect
(
namespace
).
to
be_valid
end
using
RSpec
::
Parameterized
::
TableSyntax
where
(
:parent_type
,
:child_type
,
:error
)
do
nil
|
'User'
|
nil
nil
|
'Group'
|
nil
nil
|
'Project'
|
'must be set for a project namespace'
'Project'
|
'User'
|
'project namespace cannot be the parent of another namespace'
'Project'
|
'Group'
|
'project namespace cannot be the parent of another namespace'
'Project'
|
'Project'
|
'project namespace cannot be the parent of another namespace'
'Group'
|
'User'
|
'cannot not be used for user namespace'
'Group'
|
'Group'
|
nil
'Group'
|
'Project'
|
nil
'User'
|
'User'
|
'cannot not be used for user namespace'
'User'
|
'Group'
|
'user namespace cannot be the parent of another namespace'
'User'
|
'Project'
|
nil
end
context
'when the namespace has a parent'
do
it
'does not allow a namespace to have a group as its parent'
do
namespace
=
build
(
:namespace
,
parent:
build
(
:group
))
expect
(
namespace
).
not_to
be_valid
expect
(
namespace
.
errors
[
:parent_id
].
first
).
to
eq
(
'a user namespace cannot have a parent'
)
end
it
'does not allow a namespace to have another namespace as its parent'
do
namespace
=
build
(
:namespace
,
parent:
build
(
:namespace
))
expect
(
namespace
).
not_to
be_valid
expect
(
namespace
.
errors
[
:parent_id
].
first
).
to
eq
(
'a user namespace cannot have a parent'
)
with_them
do
it
'validates namespace parent'
do
parent
=
build
(
:namespace
,
type:
parent_type
)
if
parent_type
namespace
=
build
(
:namespace
,
type:
child_type
,
parent:
parent
)
if
error
expect
(
namespace
).
not_to
be_valid
expect
(
namespace
.
errors
[
:parent_id
].
first
).
to
eq
(
error
)
else
expect
(
namespace
).
to
be_valid
end
end
end
...
...
@@ -159,7 +166,8 @@ RSpec.describe Namespace do
describe
'handling STI'
,
:aggregate_failures
do
let
(
:namespace_type
)
{
nil
}
let
(
:namespace
)
{
Namespace
.
find
(
create
(
:namespace
,
type:
namespace_type
).
id
)
}
let
(
:parent
)
{
nil
}
let
(
:namespace
)
{
Namespace
.
find
(
create
(
:namespace
,
type:
namespace_type
,
parent:
parent
).
id
)
}
context
'creating a Group'
do
let
(
:namespace_type
)
{
'Group'
}
...
...
@@ -173,6 +181,7 @@ RSpec.describe Namespace do
context
'creating a ProjectNamespace'
do
let
(
:namespace_type
)
{
'Project'
}
let
(
:parent
)
{
create
(
:group
)
}
it
'is valid'
do
expect
(
Namespace
.
find
(
namespace
.
id
)).
to
be_a
(
Namespaces
::
ProjectNamespace
)
...
...
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