2016-03-21 18:11:24 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe GroupProjectsFinder do
|
|
|
|
let(:group) { create(:group) }
|
2018-01-24 01:06:24 -05:00
|
|
|
let(:subgroup) { create(:group, parent: group) }
|
2016-03-21 18:11:24 -04:00
|
|
|
let(:current_user) { create(:user) }
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:options) { {} }
|
2016-03-21 18:11:24 -04:00
|
|
|
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:finder) { described_class.new(group: group, current_user: current_user, options: options) }
|
2016-03-21 18:11:24 -04:00
|
|
|
|
2017-08-02 15:55:11 -04:00
|
|
|
let!(:public_project) { create(:project, :public, group: group, path: '1') }
|
|
|
|
let!(:private_project) { create(:project, :private, group: group, path: '2') }
|
|
|
|
let!(:shared_project_1) { create(:project, :public, path: '3') }
|
|
|
|
let!(:shared_project_2) { create(:project, :private, path: '4') }
|
|
|
|
let!(:shared_project_3) { create(:project, :internal, path: '5') }
|
2018-01-24 01:06:24 -05:00
|
|
|
let!(:subgroup_project) { create(:project, :public, path: '6', group: subgroup) }
|
|
|
|
let!(:subgroup_private_project) { create(:project, :private, path: '7', group: subgroup) }
|
2016-03-21 18:11:24 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
shared_project_1.project_group_links.create(group_access: Gitlab::Access::MASTER, group: group)
|
|
|
|
shared_project_2.project_group_links.create(group_access: Gitlab::Access::MASTER, group: group)
|
|
|
|
shared_project_3.project_group_links.create(group_access: Gitlab::Access::MASTER, group: group)
|
|
|
|
end
|
|
|
|
|
2017-03-03 05:35:04 -05:00
|
|
|
subject { finder.execute }
|
|
|
|
|
2016-03-21 18:11:24 -04:00
|
|
|
describe 'with a group member current user' do
|
2017-03-03 05:35:04 -05:00
|
|
|
before do
|
|
|
|
group.add_master(current_user)
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
|
|
|
|
context "only shared" do
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:options) { { only_shared: true } }
|
|
|
|
|
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1]) }
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "only owned" do
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:options) { { only_owned: true } }
|
|
|
|
|
2018-01-24 01:06:24 -05:00
|
|
|
context 'with subgroups projects', :nested_groups do
|
|
|
|
before do
|
|
|
|
options[:include_subgroups] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([private_project, public_project, subgroup_project, subgroup_private_project]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without subgroups projects' do
|
|
|
|
it { is_expected.to match_array([private_project, public_project]) }
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "all" do
|
2018-01-24 01:06:24 -05:00
|
|
|
context 'with subgroups projects', :nested_groups do
|
|
|
|
before do
|
|
|
|
options[:include_subgroups] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1, private_project, public_project, subgroup_project, subgroup_private_project]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without subgroups projects' do
|
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1, private_project, public_project]) }
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'without group member current_user' do
|
2016-10-11 08:25:17 -04:00
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
shared_project_2.add_master(current_user)
|
2016-10-11 08:25:17 -04:00
|
|
|
current_user.reload
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
|
|
|
|
context "only shared" do
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:options) { { only_shared: true } }
|
|
|
|
|
2016-03-21 18:11:24 -04:00
|
|
|
context "without external user" do
|
2017-03-03 05:35:04 -05:00
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1]) }
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with external user" do
|
2017-03-03 05:35:04 -05:00
|
|
|
before do
|
|
|
|
current_user.update_attributes(external: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([shared_project_2, shared_project_1]) }
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "only owned" do
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:options) { { only_owned: true } }
|
|
|
|
|
2016-03-21 18:11:24 -04:00
|
|
|
context "without external user" do
|
2017-03-03 05:35:04 -05:00
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
private_project.add_master(current_user)
|
2018-01-24 01:06:24 -05:00
|
|
|
subgroup_private_project.add_master(current_user)
|
2017-03-03 05:35:04 -05:00
|
|
|
end
|
|
|
|
|
2018-01-24 01:06:24 -05:00
|
|
|
context 'with subgroups projects', :nested_groups do
|
|
|
|
before do
|
|
|
|
options[:include_subgroups] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([private_project, public_project, subgroup_project, subgroup_private_project]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without subgroups projects' do
|
|
|
|
it { is_expected.to match_array([private_project, public_project]) }
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with external user" do
|
2017-03-03 05:35:04 -05:00
|
|
|
before do
|
|
|
|
current_user.update_attributes(external: true)
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
|
2018-01-24 01:06:24 -05:00
|
|
|
context 'with subgroups projects', :nested_groups do
|
|
|
|
before do
|
|
|
|
options[:include_subgroups] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([public_project, subgroup_project]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without subgroups projects' do
|
|
|
|
it { is_expected.to eq([public_project]) }
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
end
|
2017-03-03 05:35:04 -05:00
|
|
|
|
|
|
|
context "all" do
|
2018-01-24 01:06:24 -05:00
|
|
|
context 'with subgroups projects', :nested_groups do
|
|
|
|
before do
|
|
|
|
options[:include_subgroups] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1, public_project, subgroup_project]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without subgroups projects' do
|
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1, public_project]) }
|
|
|
|
end
|
2017-03-03 05:35:04 -05:00
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "no user" do
|
|
|
|
context "only shared" do
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:options) { { only_shared: true } }
|
|
|
|
|
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_1]) }
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "only owned" do
|
2017-03-03 05:35:04 -05:00
|
|
|
let(:options) { { only_owned: true } }
|
|
|
|
|
2018-01-24 01:06:24 -05:00
|
|
|
context 'with subgroups projects', :nested_groups do
|
|
|
|
before do
|
|
|
|
options[:include_subgroups] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([public_project, subgroup_project]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without subgroups projects' do
|
|
|
|
it { is_expected.to eq([public_project]) }
|
|
|
|
end
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|