2016-03-21 18:11:24 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe GroupProjectsFinder do
|
|
|
|
let(:group) { create(:group) }
|
|
|
|
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-01-25 16:49:52 -05:00
|
|
|
let!(:public_project) { create(:empty_project, :public, group: group, path: '1') }
|
|
|
|
let!(:private_project) { create(:empty_project, :private, group: group, path: '2') }
|
|
|
|
let!(:shared_project_1) { create(:empty_project, :public, path: '3') }
|
|
|
|
let!(:shared_project_2) { create(:empty_project, :private, path: '4') }
|
|
|
|
let!(:shared_project_3) { create(:empty_project, :internal, path: '5') }
|
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 } }
|
|
|
|
|
|
|
|
it { is_expected.to match_array([private_project, public_project]) }
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "all" do
|
2017-03-03 05:35:04 -05:00
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1, private_project, public_project]) }
|
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
|
|
|
|
shared_project_2.team << [current_user, Gitlab::Access::MASTER]
|
|
|
|
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
|
|
|
|
private_project.team << [current_user, Gitlab::Access::MASTER]
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to match_array([private_project, public_project]) }
|
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
|
|
|
|
2017-03-03 05:35:04 -05:00
|
|
|
it { is_expected.to eq([public_project]) }
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
end
|
2017-03-03 05:35:04 -05:00
|
|
|
|
|
|
|
context "all" do
|
|
|
|
it { is_expected.to match_array([shared_project_3, shared_project_2, shared_project_1, public_project]) }
|
|
|
|
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 } }
|
|
|
|
|
|
|
|
it { is_expected.to eq([public_project]) }
|
2016-03-21 18:11:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|