Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/finders/group_children_finder.rb4
-rw-r--r--app/serializers/group_child_entity.rb8
-rw-r--r--spec/controllers/groups_controller_spec.rb85
3 files changed, 84 insertions, 13 deletions
diff --git a/app/finders/group_children_finder.rb b/app/finders/group_children_finder.rb
index bac3fb208d0..07b97163c62 100644
--- a/app/finders/group_children_finder.rb
+++ b/app/finders/group_children_finder.rb
@@ -65,7 +65,7 @@ class GroupChildrenFinder
base_groups
end
groups = groups
- groups.sort(params[:sort])
+ groups.sort(params[:sort]).includes(:route)
end
def base_projects
@@ -86,6 +86,6 @@ class GroupChildrenFinder
else
base_projects
end
- projects.sort(params[:sort])
+ projects.sort(params[:sort]).includes(:route, :namespace)
end
end
diff --git a/app/serializers/group_child_entity.rb b/app/serializers/group_child_entity.rb
index bc870541795..ab0d8a32312 100644
--- a/app/serializers/group_child_entity.rb
+++ b/app/serializers/group_child_entity.rb
@@ -32,11 +32,9 @@ class GroupChildEntity < Grape::Entity
end
def permission
- if project?
- object.project_members.find_by(user_id: request.current_user)&.human_access
- else
- object.group_members.find_by(user_id: request.current_user)&.human_access
- end
+ return unless request&.current_user
+
+ request.current_user.members.find_by(source: object)&.human_access
end
# Project only attributes
diff --git a/spec/controllers/groups_controller_spec.rb b/spec/controllers/groups_controller_spec.rb
index 9cddb538a59..25778cc2b59 100644
--- a/spec/controllers/groups_controller_spec.rb
+++ b/spec/controllers/groups_controller_spec.rb
@@ -226,14 +226,10 @@ describe GroupsController do
end
context 'filtering children' do
- def get_filtered_list
- get :children, id: group.to_param, filter: 'filter', format: :json
- end
-
it 'expands the tree for matching projects' do
project = create(:project, :public, namespace: public_subgroup, name: 'filterme')
- get_filtered_list
+ get :children, id: group.to_param, filter: 'filter', format: :json
group_json = json_response.first
project_json = group_json['children'].first
@@ -245,7 +241,7 @@ describe GroupsController do
it 'expands the tree for matching subgroups' do
matched_group = create(:group, :public, parent: public_subgroup, name: 'filterme')
- get_filtered_list
+ get :children, id: group.to_param, filter: 'filter', format: :json
group_json = json_response.first
matched_group_json = group_json['children'].first
@@ -254,6 +250,83 @@ describe GroupsController do
expect(matched_group_json['id']).to eq(matched_group.id)
end
end
+
+ context 'queries per rendered element' do
+ # The expected extra queries for the rendered group are:
+ # 1. Count of memberships of the group
+ # 2. Count of visible projects in the element
+ # 3. Count of visible subgroups in the element
+ let(:expected_queries_per_group) { 3 }
+ let(:expected_queries_per_project) { 0 }
+
+ def get_list
+ get :children, id: group.to_param, format: :json
+ end
+
+ it 'queries the expected amount for a group row' do
+ control_count = ActiveRecord::QueryRecorder.new { get_list }.count
+
+ _new_group = create(:group, :public, parent: group)
+
+ expect { get_list }.not_to exceed_query_limit(control_count + expected_queries_per_group)
+ end
+
+ it 'queries the expected amount for a project row' do
+ control_count = ActiveRecord::QueryRecorder.new { get_list }.count
+
+ _new_project = create(:project, :public, namespace: group)
+
+ expect { get_list }.not_to exceed_query_limit(control_count + expected_queries_per_project)
+ end
+
+ context 'when rendering hierarchies' do
+ def get_filtered_list
+ get :children, id: group.to_param, filter: 'filter', format: :json
+ end
+
+ it 'queries the expected amount when nested rows are rendered for a group' do
+ matched_group = create(:group, :public, parent: public_subgroup, name: 'filterme')
+
+ control_count = ActiveRecord::QueryRecorder.new { get_filtered_list }.count
+
+ nested_group = create(:group, :public, parent: public_subgroup)
+ matched_group.update!(parent: nested_group)
+
+ expect { get_filtered_list }.not_to exceed_query_limit(control_count + expected_queries_per_group)
+ end
+
+ it 'queries the expected amount when a new group match is added' do
+ create(:group, :public, parent: public_subgroup, name: 'filterme')
+
+ control_count = ActiveRecord::QueryRecorder.new { get_filtered_list }.count
+
+ create(:group, :public, parent: public_subgroup, name: 'filterme2')
+
+ expect { get_filtered_list }.not_to exceed_query_limit(control_count + expected_queries_per_group)
+ end
+
+ it 'queries the expected amount when nested rows are rendered for a project' do
+ matched_project = create(:project, :public, namespace: public_subgroup, name: 'filterme')
+
+ control_count = ActiveRecord::QueryRecorder.new { get_filtered_list }.count
+
+ nested_group = create(:group, :public, parent: public_subgroup)
+ matched_project.update!(namespace: nested_group)
+
+ expect { get_filtered_list }.not_to exceed_query_limit(control_count + expected_queries_per_group)
+ end
+
+ it 'queries the expected amount when a new project match is added' do
+ create(:project, :public, namespace: public_subgroup, name: 'filterme')
+
+ control_count = ActiveRecord::QueryRecorder.new { get_filtered_list }.count
+
+ create(:project, :public, namespace: public_subgroup, name: 'filterme2')
+
+ expect { get_filtered_list }.not_to exceed_query_limit(control_count + expected_queries_per_project)
+ end
+ end
+ end
end
end