2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ProjectsFinder do
|
2015-11-26 14:37:03 +05:30
|
|
|
describe '#execute' do
|
|
|
|
let(:user) { create(:user) }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
let!(:private_project) { create(:project, :private) }
|
|
|
|
let!(:internal_project) { create(:project, :internal) }
|
|
|
|
let!(:public_project) { create(:project, :public) }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
let(:finder) { described_class.new }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
describe 'without a group' do
|
|
|
|
describe 'without a user' do
|
|
|
|
subject { finder.execute }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
it { is_expected.to eq([public_project]) }
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
describe 'with a user' do
|
|
|
|
subject { finder.execute(user) }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
describe 'without private projects' do
|
|
|
|
it { is_expected.to eq([public_project, internal_project]) }
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
describe 'with private projects' do
|
|
|
|
before do
|
|
|
|
private_project.team.add_user(user, Gitlab::Access::MASTER)
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
it do
|
|
|
|
is_expected.to eq([public_project, internal_project,
|
|
|
|
private_project])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with a group' do
|
|
|
|
let(:group) { public_project.group }
|
|
|
|
|
|
|
|
describe 'without a user' do
|
|
|
|
subject { finder.execute(nil, group: group) }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
it { is_expected.to eq([public_project]) }
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
describe 'with a user' do
|
|
|
|
subject { finder.execute(user, group: group) }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
it { is_expected.to eq([public_project, internal_project]) }
|
|
|
|
end
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|