summaryrefslogtreecommitdiff
path: root/spec/controllers/groups_controller_spec.rb
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@vanlanduyt.co>2017-10-11 18:27:53 +0200
committerBob Van Landuyt <bob@vanlanduyt.co>2017-10-12 11:36:55 +0200
commit2c25a7ae3453e72ad6cab504255e327c17df0a95 (patch)
tree73b9299225b80b728f5aaa58d8964bd00643dfdd /spec/controllers/groups_controller_spec.rb
parentd8e504a8f790f032f5d7757c6d61093faa7a2542 (diff)
downloadgitlab-ce-2c25a7ae3453e72ad6cab504255e327c17df0a95.tar.gz
Nest the group_children_path inside the canonical group path
Diffstat (limited to 'spec/controllers/groups_controller_spec.rb')
-rw-r--r--spec/controllers/groups_controller_spec.rb270
1 files changed, 0 insertions, 270 deletions
diff --git a/spec/controllers/groups_controller_spec.rb b/spec/controllers/groups_controller_spec.rb
index 827c4cd3d19..e7631d4d709 100644
--- a/spec/controllers/groups_controller_spec.rb
+++ b/spec/controllers/groups_controller_spec.rb
@@ -150,276 +150,6 @@ describe GroupsController do
end
end
- describe 'GET #children' do
- context 'for projects' do
- let!(:public_project) { create(:project, :public, namespace: group) }
- let!(:private_project) { create(:project, :private, namespace: group) }
-
- context 'as a user' do
- before do
- sign_in(user)
- end
-
- it 'shows all children' do
- get :children, id: group.to_param, format: :json
-
- expect(assigns(:children)).to contain_exactly(public_project, private_project)
- end
-
- context 'being member of private subgroup' do
- it 'shows public and private children the user is member of' do
- group_member.destroy!
- private_project.add_guest(user)
-
- get :children, id: group.to_param, format: :json
-
- expect(assigns(:children)).to contain_exactly(public_project, private_project)
- end
- end
- end
-
- context 'as a guest' do
- it 'shows the public children' do
- get :children, id: group.to_param, format: :json
-
- expect(assigns(:children)).to contain_exactly(public_project)
- end
- end
- end
-
- context 'for subgroups', :nested_groups do
- let!(:public_subgroup) { create(:group, :public, parent: group) }
- let!(:private_subgroup) { create(:group, :private, parent: group) }
- let!(:public_project) { create(:project, :public, namespace: group) }
- let!(:private_project) { create(:project, :private, namespace: group) }
-
- context 'as a user' do
- before do
- sign_in(user)
- end
-
- it 'shows all children' do
- get :children, id: group.to_param, format: :json
-
- expect(assigns(:children)).to contain_exactly(public_subgroup, private_subgroup, public_project, private_project)
- end
-
- context 'being member of private subgroup' do
- it 'shows public and private children the user is member of' do
- group_member.destroy!
- private_subgroup.add_guest(user)
- private_project.add_guest(user)
-
- get :children, id: group.to_param, format: :json
-
- expect(assigns(:children)).to contain_exactly(public_subgroup, private_subgroup, public_project, private_project)
- end
- end
- end
-
- context 'as a guest' do
- it 'shows the public children' do
- get :children, id: group.to_param, format: :json
-
- expect(assigns(:children)).to contain_exactly(public_subgroup, public_project)
- end
- end
-
- context 'filtering children' do
- it 'expands the tree for matching projects' do
- project = create(:project, :public, namespace: public_subgroup, name: 'filterme')
-
- get :children, id: group.to_param, filter: 'filter', format: :json
-
- group_json = json_response.first
- project_json = group_json['children'].first
-
- expect(group_json['id']).to eq(public_subgroup.id)
- expect(project_json['id']).to eq(project.id)
- end
-
- it 'expands the tree for matching subgroups' do
- matched_group = create(:group, :public, parent: public_subgroup, name: 'filterme')
-
- get :children, id: group.to_param, filter: 'filter', format: :json
-
- group_json = json_response.first
- matched_group_json = group_json['children'].first
-
- expect(group_json['id']).to eq(public_subgroup.id)
- expect(matched_group_json['id']).to eq(matched_group.id)
- end
-
- it 'merges the trees correctly' do
- shared_subgroup = create(:group, :public, parent: group, path: 'hardware')
- matched_project_1 = create(:project, :public, namespace: shared_subgroup, name: 'mobile-soc')
-
- l2_subgroup = create(:group, :public, parent: shared_subgroup, path: 'broadcom')
- l3_subgroup = create(:group, :public, parent: l2_subgroup, path: 'wifi-group')
- matched_project_2 = create(:project, :public, namespace: l3_subgroup, name: 'mobile')
-
- get :children, id: group.to_param, filter: 'mobile', format: :json
-
- shared_group_json = json_response.first
- expect(shared_group_json['id']).to eq(shared_subgroup.id)
-
- matched_project_1_json = shared_group_json['children'].detect { |child| child['type'] == 'project' }
- expect(matched_project_1_json['id']).to eq(matched_project_1.id)
-
- l2_subgroup_json = shared_group_json['children'].detect { |child| child['type'] == 'group' }
- expect(l2_subgroup_json['id']).to eq(l2_subgroup.id)
-
- l3_subgroup_json = l2_subgroup_json['children'].first
- expect(l3_subgroup_json['id']).to eq(l3_subgroup.id)
-
- matched_project_2_json = l3_subgroup_json['children'].first
- expect(matched_project_2_json['id']).to eq(matched_project_2.id)
- end
-
- it 'expands the tree upto a specified parent' do
- subgroup = create(:group, :public, parent: group)
- l2_subgroup = create(:group, :public, parent: subgroup)
- create(:project, :public, namespace: l2_subgroup, name: 'test')
-
- get :children, id: subgroup.to_param, filter: 'test', format: :json
-
- expect(response).to have_http_status(200)
- end
-
- it 'returns an empty array when there are no search results' do
- subgroup = create(:group, :public, parent: group)
- l2_subgroup = create(:group, :public, parent: subgroup)
- create(:project, :public, namespace: l2_subgroup, name: 'no-match')
-
- get :children, id: subgroup.to_param, filter: 'test', format: :json
-
- expect(json_response).to eq([])
- end
-
- it 'includes pagination headers' do
- 2.times { |i| create(:group, :public, parent: public_subgroup, name: "filterme#{i}") }
-
- get :children, id: group.to_param, filter: 'filter', per_page: 1, format: :json
-
- expect(response).to include_pagination_headers
- end
- end
-
- context 'queries per rendered element', :request_store do
- # We need to make sure the following counts are preloaded
- # otherwise they will cause an extra query
- # 1. Count of visible projects in the element
- # 2. Count of visible subgroups in the element
- # 3. Count of members of a group
- let(:expected_queries_per_group) { 0 }
- 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 = ActiveRecord::QueryRecorder.new { get_list }
-
- _new_group = create(:group, :public, parent: group)
-
- expect { get_list }.not_to exceed_query_limit(control).with_threshold(expected_queries_per_group)
- end
-
- it 'queries the expected amount for a project row' do
- control = ActiveRecord::QueryRecorder.new { get_list }
- _new_project = create(:project, :public, namespace: group)
-
- expect { get_list }.not_to exceed_query_limit(control).with_threshold(expected_queries_per_project)
- end
-
- context 'when rendering hierarchies' do
- # When loading hierarchies we load the all the ancestors for matched projects
- # in 1 separate query
- let(:extra_queries_for_hierarchies) { 1 }
-
- def get_filtered_list
- get :children, id: group.to_param, filter: 'filter', format: :json
- end
-
- it 'queries the expected amount when nested rows are increased for a group' do
- matched_group = create(:group, :public, parent: group, name: 'filterme')
-
- control = ActiveRecord::QueryRecorder.new { get_filtered_list }
-
- matched_group.update!(parent: public_subgroup)
-
- expect { get_filtered_list }.not_to exceed_query_limit(control).with_threshold(extra_queries_for_hierarchies)
- end
-
- it 'queries the expected amount when a new group match is added' do
- create(:group, :public, parent: public_subgroup, name: 'filterme')
-
- control = ActiveRecord::QueryRecorder.new { get_filtered_list }
-
- create(:group, :public, parent: public_subgroup, name: 'filterme2')
- create(:group, :public, parent: public_subgroup, name: 'filterme3')
-
- expect { get_filtered_list }.not_to exceed_query_limit(control).with_threshold(extra_queries_for_hierarchies)
- end
-
- it 'queries the expected amount when nested rows are increased for a project' do
- matched_project = create(:project, :public, namespace: group, name: 'filterme')
-
- control = ActiveRecord::QueryRecorder.new { get_filtered_list }
-
- matched_project.update!(namespace: public_subgroup)
-
- expect { get_filtered_list }.not_to exceed_query_limit(control).with_threshold(extra_queries_for_hierarchies)
- end
- end
- end
- end
-
- context 'pagination' do
- let(:per_page) { 3 }
-
- before do
- allow(Kaminari.config).to receive(:default_per_page).and_return(per_page)
- end
-
- context 'with only projects' do
- let!(:other_project) { create(:project, :public, namespace: group) }
- let!(:first_page_projects) { create_list(:project, per_page, :public, namespace: group ) }
-
- it 'has projects on the first page' do
- get :children, id: group.to_param, sort: 'id_desc', format: :json
-
- expect(assigns(:children)).to contain_exactly(*first_page_projects)
- end
-
- it 'has projects 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_project)
- end
- end
-
- context 'with subgroups and projects', :nested_groups do
- let!(:first_page_subgroups) { create_list(:group, per_page, :public, parent: group) }
- let!(:other_subgroup) { create(:group, :public, parent: group) }
- let!(:next_page_projects) { create_list(:project, per_page, :public, namespace: group) }
-
- it 'contains all subgroups' do
- get :children, id: group.to_param, sort: 'id_asc', 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_asc', page: 2, format: :json
-
- expect(assigns(:children)).to contain_exactly(other_subgroup, *next_page_projects.take(per_page - 1))
- end
- end
- end
- end
-
describe 'GET #issues' do
let(:issue_1) { create(:issue, project: project) }
let(:issue_2) { create(:issue, project: project) }