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
3a4dc55f
Commit
3a4dc55f
authored
Sep 13, 2017
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reuse the groups tree for explore and dashboard.
parent
39df53ff
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
200 additions
and
104 deletions
+200
-104
app/controllers/concerns/group_tree.rb
app/controllers/concerns/group_tree.rb
+19
-0
app/controllers/dashboard/groups_controller.rb
app/controllers/dashboard/groups_controller.rb
+4
-16
app/controllers/explore/groups_controller.rb
app/controllers/explore/groups_controller.rb
+3
-13
spec/controllers/concerns/group_tree_spec.rb
spec/controllers/concerns/group_tree_spec.rb
+56
-0
spec/controllers/dashboard/groups_controller_spec.rb
spec/controllers/dashboard/groups_controller_spec.rb
+9
-15
spec/controllers/explore/groups_controller_spec.rb
spec/controllers/explore/groups_controller_spec.rb
+24
-0
spec/controllers/groups_controller_spec.rb
spec/controllers/groups_controller_spec.rb
+79
-60
spec/features/dashboard/groups_list_spec.rb
spec/features/dashboard/groups_list_spec.rb
+4
-0
spec/features/explore/groups_list_spec.rb
spec/features/explore/groups_list_spec.rb
+2
-0
No files found.
app/controllers/concerns/group_tree.rb
0 → 100644
View file @
3a4dc55f
module
GroupTree
def
render_group_tree
(
groups
)
# Only show root groups if no parent-id is given
@groups
=
groups
.
where
(
parent_id:
params
[
:parent_id
])
@groups
=
@groups
.
search
(
params
[
:filter
])
if
params
[
:filter
].
present?
@groups
=
@groups
.
includes
(
:route
)
@groups
=
@groups
.
sort
(
@sort
=
params
[
:sort
])
@groups
=
@groups
.
page
(
params
[
:page
])
respond_to
do
|
format
|
format
.
html
format
.
json
do
serializer
=
GroupChildSerializer
.
new
(
current_user:
current_user
)
.
with_pagination
(
request
,
response
)
render
json:
serializer
.
represent
(
@groups
)
end
end
end
end
app/controllers/dashboard/groups_controller.rb
View file @
3a4dc55f
class
Dashboard::GroupsController
<
Dashboard
::
ApplicationController
class
Dashboard::GroupsController
<
Dashboard
::
ApplicationController
def
index
include
GroupTree
@groups
=
GroupsFinder
.
new
(
current_user
,
all_available:
false
).
execute
# Only show root groups if no parent-id is given
@groups
=
@groups
.
where
(
parent_id:
params
[
:parent_id
])
@groups
=
@groups
.
search
(
params
[
:filter
])
if
params
[
:filter
].
present?
@groups
=
@groups
.
includes
(
:route
)
@groups
=
@groups
.
sort
(
@sort
=
params
[
:sort
])
@groups
=
@groups
.
page
(
params
[
:page
])
respond_to
do
|
format
|
def
index
format
.
html
groups
=
GroupsFinder
.
new
(
current_user
,
all_available:
false
).
execute
format
.
json
do
render_group_tree
(
groups
)
serializer
=
GroupChildSerializer
.
new
(
current_user:
current_user
)
.
with_pagination
(
request
,
response
)
render
json:
serializer
.
represent
(
@groups
)
end
end
end
end
end
end
app/controllers/explore/groups_controller.rb
View file @
3a4dc55f
class
Explore::GroupsController
<
Explore
::
ApplicationController
class
Explore::GroupsController
<
Explore
::
ApplicationController
def
index
include
GroupTree
@groups
=
GroupsFinder
.
new
(
current_user
).
execute
@groups
=
@groups
.
search
(
params
[
:filter_groups
])
if
params
[
:filter_groups
].
present?
@groups
=
@groups
.
sort
(
@sort
=
params
[
:sort
])
@groups
=
@groups
.
page
(
params
[
:page
])
respond_to
do
|
format
|
def
index
format
.
html
render_group_tree
GroupsFinder
.
new
(
current_user
).
execute
format
.
json
do
render
json:
{
html:
view_to_html_string
(
"explore/groups/_groups"
,
locals:
{
groups:
@groups
})
}
end
end
end
end
end
end
spec/controllers/concerns/group_tree_spec.rb
0 → 100644
View file @
3a4dc55f
require
'spec_helper'
describe
GroupTree
do
let
(
:group
)
{
create
(
:group
,
:public
)
}
let
(
:user
)
{
create
(
:user
)
}
controller
(
ApplicationController
)
do
include
GroupTree
# rubocop:disable Rspec/DescribedClass
def
index
render_group_tree
Group
.
all
end
end
before
do
group
.
add_owner
(
user
)
sign_in
(
user
)
end
describe
'GET #index'
do
it
'filters groups'
do
other_group
=
create
(
:group
,
name:
'filter'
)
other_group
.
add_owner
(
user
)
get
:index
,
filter:
'filt'
,
format: :json
expect
(
assigns
(
:groups
)).
to
contain_exactly
(
other_group
)
end
context
'for subgroups'
,
:nested_groups
do
it
'only renders root groups when no parent was given'
do
create
(
:group
,
:public
,
parent:
group
)
get
:index
,
format: :json
expect
(
assigns
(
:groups
)).
to
contain_exactly
(
group
)
end
it
'contains only the subgroup when a parent was given'
do
subgroup
=
create
(
:group
,
:public
,
parent:
group
)
get
:index
,
parent_id:
group
.
id
,
format: :json
expect
(
assigns
(
:groups
)).
to
contain_exactly
(
subgroup
)
end
end
context
'json content'
do
it
'shows groups as json'
do
get
:index
,
format: :json
expect
(
json_response
.
first
[
'id'
]).
to
eq
(
group
.
id
)
end
end
end
end
spec/controllers/dashboard/groups_controller_spec.rb
View file @
3a4dc55f
require
'spec_helper'
require
'spec_helper'
describe
Dashboard
::
GroupsController
do
describe
Dashboard
::
GroupsController
do
let
(
:group
)
{
create
(
:group
,
:public
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
before
do
before
do
group
.
add_owner
(
user
)
sign_in
(
user
)
sign_in
(
user
)
end
end
describe
'GET #index'
do
it
'renders group trees'
do
it
'shows child groups as json'
do
expect
(
described_class
).
to
include
(
GroupTree
)
get
:index
,
format: :json
end
expect
(
json_response
.
first
[
'id'
]).
to
eq
(
group
.
id
)
end
it
'filters groups'
do
it
'only includes projects the user is a member of'
do
other_group
=
create
(
:group
,
name:
'filter'
)
member_of_group
=
create
(
:group
)
other_group
.
add_owner
(
user
)
member_of_group
.
add_developer
(
user
)
create
(
:group
,
:public
)
get
:index
,
filter:
'filt'
,
format: :json
get
:index
all_ids
=
json_response
.
map
{
|
group_json
|
group_json
[
'id'
]
}
expect
(
all_ids
).
to
contain_exactly
(
other_group
.
id
)
expect
(
assigns
(
:groups
)).
to
contain_exactly
(
member_of_group
)
end
end
end
end
end
spec/controllers/explore/groups_controller_spec.rb
0 → 100644
View file @
3a4dc55f
require
'spec_helper'
describe
Explore
::
GroupsController
do
let
(
:user
)
{
create
(
:user
)
}
before
do
sign_in
(
user
)
end
it
'renders group trees'
do
expect
(
described_class
).
to
include
(
GroupTree
)
end
it
'includes public projects'
do
member_of_group
=
create
(
:group
)
member_of_group
.
add_developer
(
user
)
public_group
=
create
(
:group
,
:public
)
get
:index
expect
(
assigns
(
:groups
)).
to
contain_exactly
(
member_of_group
,
public_group
)
end
end
spec/controllers/groups_controller_spec.rb
View file @
3a4dc55f
require
'
rails
_helper'
require
'
spec
_helper'
describe
GroupsController
do
describe
GroupsController
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
...
@@ -150,6 +150,45 @@ describe GroupsController do
...
@@ -150,6 +150,45 @@ describe GroupsController do
end
end
end
end
describe
'GET #show'
do
context
'pagination'
do
context
'with only projects'
do
let!
(
:other_project
)
{
create
(
:project
,
:public
,
namespace:
group
)
}
let!
(
:first_page_projects
)
{
create_list
(
:project
,
Kaminari
.
config
.
default_per_page
,
:public
,
namespace:
group
)
}
it
'has projects on the first page'
do
get
:show
,
id:
group
.
to_param
,
sort:
'id_desc'
expect
(
assigns
(
:children
)).
to
contain_exactly
(
*
first_page_projects
)
end
it
'has projects on the second page'
do
get
:show
,
id:
group
.
to_param
,
sort:
'id_desc'
,
page:
2
expect
(
assigns
(
:children
)).
to
contain_exactly
(
other_project
)
end
end
context
'with subgroups and projects'
,
:nested_groups
do
let!
(
:other_subgroup
)
{
create
(
:group
,
:public
,
parent:
group
)
}
let!
(
:project
)
{
create
(
:project
,
:public
,
namespace:
group
)
}
let!
(
:first_page_subgroups
)
{
create_list
(
:group
,
Kaminari
.
config
.
default_per_page
,
parent:
group
)
}
it
'contains all subgroups'
do
get
:children
,
id:
group
.
to_param
,
sort:
'id_desc'
,
format: :json
expect
(
assigns
(
:children
)).
to
contain_exactly
(
*
first_page_subgroups
)
end
it
'contains the project and group on the second page'
do
get
:children
,
id:
group
.
to_param
,
sort:
'id_desc'
,
page:
2
,
format: :json
expect
(
assigns
(
:children
)).
to
contain_exactly
(
other_subgroup
,
project
)
end
end
end
end
describe
'GET #children'
do
describe
'GET #children'
do
context
'for projects'
do
context
'for projects'
do
let!
(
:public_project
)
{
create
(
:project
,
:public
,
namespace:
group
)
}
let!
(
:public_project
)
{
create
(
:project
,
:public
,
namespace:
group
)
}
...
@@ -251,12 +290,14 @@ describe GroupsController do
...
@@ -251,12 +290,14 @@ describe GroupsController do
end
end
end
end
context
'queries per rendered element'
do
context
'queries per rendered element'
,
:request_store
do
# The expected extra queries for the rendered group are:
# The expected extra queries for the rendered group are:
# 1. Count of memberships of the group
# 1. Count of memberships of the group
# 2. Count of visible projects in the element
# 2. Count of visible projects in the element
# 3. Count of visible subgroups in the element
# 3. Count of visible subgroups in the element
let
(
:expected_queries_per_group
)
{
3
}
# 4. Every parent
# 5. The route for a parent
let
(
:expected_queries_per_group
)
{
5
}
let
(
:expected_queries_per_project
)
{
0
}
let
(
:expected_queries_per_project
)
{
0
}
def
get_list
def
get_list
...
@@ -265,7 +306,6 @@ describe GroupsController do
...
@@ -265,7 +306,6 @@ describe GroupsController do
it
'queries the expected amount for a group row'
do
it
'queries the expected amount for a group row'
do
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_list
}.
count
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_list
}.
count
_new_group
=
create
(
:group
,
:public
,
parent:
group
)
_new_group
=
create
(
:group
,
:public
,
parent:
group
)
expect
{
get_list
}.
not_to
exceed_query_limit
(
control_count
+
expected_queries_per_group
)
expect
{
get_list
}.
not_to
exceed_query_limit
(
control_count
+
expected_queries_per_group
)
...
@@ -273,7 +313,6 @@ describe GroupsController do
...
@@ -273,7 +313,6 @@ describe GroupsController do
it
'queries the expected amount for a project row'
do
it
'queries the expected amount for a project row'
do
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_list
}.
count
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_list
}.
count
_new_project
=
create
(
:project
,
:public
,
namespace:
group
)
_new_project
=
create
(
:project
,
:public
,
namespace:
group
)
expect
{
get_list
}.
not_to
exceed_query_limit
(
control_count
+
expected_queries_per_project
)
expect
{
get_list
}.
not_to
exceed_query_limit
(
control_count
+
expected_queries_per_project
)
...
@@ -288,7 +327,6 @@ describe GroupsController do
...
@@ -288,7 +327,6 @@ describe GroupsController do
matched_group
=
create
(
:group
,
:public
,
parent:
public_subgroup
,
name:
'filterme'
)
matched_group
=
create
(
:group
,
:public
,
parent:
public_subgroup
,
name:
'filterme'
)
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_filtered_list
}.
count
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_filtered_list
}.
count
nested_group
=
create
(
:group
,
:public
,
parent:
public_subgroup
)
nested_group
=
create
(
:group
,
:public
,
parent:
public_subgroup
)
matched_group
.
update!
(
parent:
nested_group
)
matched_group
.
update!
(
parent:
nested_group
)
...
@@ -299,7 +337,6 @@ describe GroupsController do
...
@@ -299,7 +337,6 @@ describe GroupsController do
create
(
:group
,
:public
,
parent:
public_subgroup
,
name:
'filterme'
)
create
(
:group
,
:public
,
parent:
public_subgroup
,
name:
'filterme'
)
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_filtered_list
}.
count
control_count
=
ActiveRecord
::
QueryRecorder
.
new
{
get_filtered_list
}.
count
create
(
:group
,
:public
,
parent:
public_subgroup
,
name:
'filterme2'
)
create
(
:group
,
:public
,
parent:
public_subgroup
,
name:
'filterme2'
)
expect
{
get_filtered_list
}.
not_to
exceed_query_limit
(
control_count
+
expected_queries_per_group
)
expect
{
get_filtered_list
}.
not_to
exceed_query_limit
(
control_count
+
expected_queries_per_group
)
...
@@ -570,79 +607,61 @@ describe GroupsController do
...
@@ -570,79 +607,61 @@ describe GroupsController do
end
end
end
end
context
'pagination'
do
context
'for a POST request'
do
let!
(
:other_subgroup
)
{
create
(
:group
,
:public
,
parent:
group
)
}
context
'when requesting the canonical path with different casing'
do
let!
(
:project
)
{
create
(
:project
,
:public
,
namespace:
group
)
}
it
'does not 404'
do
let!
(
:first_page_subgroups
)
{
create_list
(
:group
,
Kaminari
.
config
.
default_per_page
,
parent:
group
)
}
post
:update
,
id:
group
.
to_param
.
upcase
,
group:
{
path:
'new_path'
}
it
'contains all subgroups'
do
get
:children
,
id:
group
.
to_param
,
sort:
'id'
,
format: :json
expect
(
assigns
(
:children
)).
to
contain_exactly
(
*
first_page_subgroups
)
end
it
'contains the project and group on the second page'
do
get
:children
,
id:
group
.
to_param
,
sort:
'id'
,
page:
2
,
format: :json
expect
(
assigns
(
:children
)).
to
contain_exactly
(
other_subgroup
,
project
)
end
end
end
context
'for a POST request'
do
context
'when requesting the canonical path with different casing'
do
it
'does not 404'
do
post
:update
,
id:
group
.
to_param
.
upcase
,
group:
{
path:
'new_path'
}
expect
(
response
).
not_to
have_http_status
(
404
)
expect
(
response
).
not_to
have_http_status
(
404
)
end
end
it
'does not redirect to the correct casing'
do
it
'does not redirect to the correct casing'
do
post
:update
,
id:
group
.
to_param
.
upcase
,
group:
{
path:
'new_path'
}
post
:update
,
id:
group
.
to_param
.
upcase
,
group:
{
path:
'new_path'
}
expect
(
response
).
not_to
have_http_status
(
301
)
expect
(
response
).
not_to
have_http_status
(
301
)
end
end
end
end
context
'when requesting a redirected path'
do
context
'when requesting a redirected path'
do
let
(
:redirect_route
)
{
group
.
redirect_routes
.
create
(
path:
'old-path'
)
}
let
(
:redirect_route
)
{
group
.
redirect_routes
.
create
(
path:
'old-path'
)
}
it
'returns not found'
do
it
'returns not found'
do
post
:update
,
id:
redirect_route
.
path
,
group:
{
path:
'new_path'
}
post
:update
,
id:
redirect_route
.
path
,
group:
{
path:
'new_path'
}
expect
(
response
).
to
have_http_status
(
404
)
expect
(
response
).
to
have_http_status
(
404
)
end
end
end
end
end
end
context
'for a DELETE request'
do
context
'for a DELETE request'
do
context
'when requesting the canonical path with different casing'
do
context
'when requesting the canonical path with different casing'
do
it
'does not 404'
do
it
'does not 404'
do
delete
:destroy
,
id:
group
.
to_param
.
upcase
delete
:destroy
,
id:
group
.
to_param
.
upcase
expect
(
response
).
not_to
have_http_status
(
404
)
expect
(
response
).
not_to
have_http_status
(
404
)
end
end
it
'does not redirect to the correct casing'
do
it
'does not redirect to the correct casing'
do
delete
:destroy
,
id:
group
.
to_param
.
upcase
delete
:destroy
,
id:
group
.
to_param
.
upcase
expect
(
response
).
not_to
have_http_status
(
301
)
expect
(
response
).
not_to
have_http_status
(
301
)
end
end
end
end
context
'when requesting a redirected path'
do
context
'when requesting a redirected path'
do
let
(
:redirect_route
)
{
group
.
redirect_routes
.
create
(
path:
'old-path'
)
}
let
(
:redirect_route
)
{
group
.
redirect_routes
.
create
(
path:
'old-path'
)
}
it
'returns not found'
do
it
'returns not found'
do
delete
:destroy
,
id:
redirect_route
.
path
delete
:destroy
,
id:
redirect_route
.
path
expect
(
response
).
to
have_http_status
(
404
)
expect
(
response
).
to
have_http_status
(
404
)
end
end
end
end
end
end
end
end
def
group_moved_message
(
redirect_route
,
group
)
def
group_moved_message
(
redirect_route
,
group
)
"Group '
#{
redirect_route
.
path
}
' was moved to '
#{
group
.
full_path
}
'. Please update any links and bookmarks that may still have the old path."
"Group '
#{
redirect_route
.
path
}
' was moved to '
#{
group
.
full_path
}
'. Please update any links and bookmarks that may still have the old path."
end
end
end
end
end
spec/features/dashboard/groups_list_spec.rb
View file @
3a4dc55f
...
@@ -6,6 +6,10 @@ feature 'Dashboard Groups page', :js do
...
@@ -6,6 +6,10 @@ feature 'Dashboard Groups page', :js do
let!
(
:nested_group
)
{
create
(
:group
,
:nested
)
}
let!
(
:nested_group
)
{
create
(
:group
,
:nested
)
}
let!
(
:another_group
)
{
create
(
:group
)
}
let!
(
:another_group
)
{
create
(
:group
)
}
before
do
pending
(
'Update for new group tree'
)
end
it
'shows groups user is member of'
do
it
'shows groups user is member of'
do
group
.
add_owner
(
user
)
group
.
add_owner
(
user
)
nested_group
.
add_owner
(
user
)
nested_group
.
add_owner
(
user
)
...
...
spec/features/explore/groups_list_spec.rb
View file @
3a4dc55f
...
@@ -8,6 +8,8 @@ describe 'Explore Groups page', :js do
...
@@ -8,6 +8,8 @@ describe 'Explore Groups page', :js do
let!
(
:empty_project
)
{
create
(
:project
,
group:
public_group
)
}
let!
(
:empty_project
)
{
create
(
:project
,
group:
public_group
)
}
before
do
before
do
pending
(
'Update for new group tree'
)
group
.
add_owner
(
user
)
group
.
add_owner
(
user
)
sign_in
(
user
)
sign_in
(
user
)
...
...
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