2014-02-25 07:36:36 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2014-02-25 12:21:53 -05:00
|
|
|
describe ProjectsFinder do
|
2014-02-25 07:36:36 -05:00
|
|
|
let(:user) { create :user }
|
|
|
|
let(:group) { create :group }
|
|
|
|
|
2014-03-19 05:15:24 -04:00
|
|
|
let(:project1) { create(:empty_project, :public, group: group) }
|
|
|
|
let(:project2) { create(:empty_project, :internal, group: group) }
|
|
|
|
let(:project3) { create(:empty_project, :private, group: group) }
|
|
|
|
let(:project4) { create(:empty_project, :private, group: group) }
|
2014-02-25 07:36:36 -05:00
|
|
|
|
|
|
|
context 'non authenticated' do
|
2014-02-25 12:21:53 -05:00
|
|
|
subject { ProjectsFinder.new.execute(nil, group: group) }
|
2014-02-25 07:36:36 -05:00
|
|
|
|
|
|
|
it { should include(project1) }
|
|
|
|
it { should_not include(project2) }
|
|
|
|
it { should_not include(project3) }
|
|
|
|
it { should_not include(project4) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'authenticated' do
|
2014-02-25 12:21:53 -05:00
|
|
|
subject { ProjectsFinder.new.execute(user, group: group) }
|
2014-02-25 07:36:36 -05:00
|
|
|
|
|
|
|
it { should include(project1) }
|
|
|
|
it { should include(project2) }
|
|
|
|
it { should_not include(project3) }
|
|
|
|
it { should_not include(project4) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'authenticated, project member' do
|
|
|
|
before { project3.team << [user, :developer] }
|
|
|
|
|
2014-02-25 12:21:53 -05:00
|
|
|
subject { ProjectsFinder.new.execute(user, group: group) }
|
2014-02-25 07:36:36 -05:00
|
|
|
|
|
|
|
it { should include(project1) }
|
|
|
|
it { should include(project2) }
|
|
|
|
it { should include(project3) }
|
|
|
|
it { should_not include(project4) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'authenticated, group member' do
|
|
|
|
before { group.add_user(user, Gitlab::Access::DEVELOPER) }
|
|
|
|
|
2014-02-25 12:21:53 -05:00
|
|
|
subject { ProjectsFinder.new.execute(user, group: group) }
|
2014-02-25 07:36:36 -05:00
|
|
|
|
|
|
|
it { should include(project1) }
|
|
|
|
it { should include(project2) }
|
|
|
|
it { should include(project3) }
|
|
|
|
it { should include(project4) }
|
|
|
|
end
|
|
|
|
end
|