2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-02 17:50:44 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Guest do
|
2018-05-11 14:19:49 -04:00
|
|
|
set(:public_project) { create(:project, :public) }
|
|
|
|
set(:private_project) { create(:project, :private) }
|
|
|
|
set(:internal_project) { create(:project, :internal) }
|
2016-11-02 17:50:44 -04:00
|
|
|
|
|
|
|
describe '.can_pull?' do
|
|
|
|
context 'when project is private' do
|
|
|
|
it 'does not allow to pull the repo' do
|
2017-07-25 13:09:00 -04:00
|
|
|
expect(described_class.can?(:download_code, private_project)).to eq(false)
|
2016-11-02 17:50:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project is internal' do
|
|
|
|
it 'does not allow to pull the repo' do
|
2017-07-25 13:09:00 -04:00
|
|
|
expect(described_class.can?(:download_code, internal_project)).to eq(false)
|
2016-11-02 17:50:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project is public' do
|
|
|
|
context 'when repository is disabled' do
|
|
|
|
it 'does not allow to pull the repo' do
|
|
|
|
public_project.project_feature.update_attribute(:repository_access_level, ProjectFeature::DISABLED)
|
|
|
|
|
2017-07-25 13:09:00 -04:00
|
|
|
expect(described_class.can?(:download_code, public_project)).to eq(false)
|
2016-11-02 17:50:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when repository is accessible only by team members' do
|
|
|
|
it 'does not allow to pull the repo' do
|
|
|
|
public_project.project_feature.update_attribute(:repository_access_level, ProjectFeature::PRIVATE)
|
|
|
|
|
2017-07-25 13:09:00 -04:00
|
|
|
expect(described_class.can?(:download_code, public_project)).to eq(false)
|
2016-11-02 17:50:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when repository is enabled' do
|
|
|
|
it 'allows to pull the repo' do
|
2017-07-25 13:09:00 -04:00
|
|
|
expect(described_class.can?(:download_code, public_project)).to eq(true)
|
2016-11-02 17:50:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|