2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::GitAccessWiki do
|
2020-10-24 23:57:45 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
2022-05-03 16:02:30 +05:30
|
|
|
let_it_be_with_reload(:project) { create(:project, :wiki_repo) }
|
|
|
|
|
|
|
|
let(:wiki) { create(:project_wiki, project: project) }
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
let(:changes) { ['6f6d7e7ed 570e7b2ab refs/heads/master'] }
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:authentication_abilities) { %i[read_project download_code push_code] }
|
2017-09-10 17:25:29 +05:30
|
|
|
let(:redirected_path) { nil }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
let(:access) do
|
|
|
|
described_class.new(user, wiki, 'web',
|
|
|
|
authentication_abilities: authentication_abilities,
|
|
|
|
redirected_path: redirected_path)
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
RSpec.shared_examples 'download wiki access by level' do
|
2022-05-03 16:02:30 +05:30
|
|
|
where(:project_visibility, :project_member?, :wiki_access_level, :wiki_repo?, :expected_behavior) do
|
|
|
|
[
|
|
|
|
# Private project - is a project member
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, true, ProjectFeature::ENABLED, true, :no_error],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, true, ProjectFeature::PRIVATE, true, :no_error],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, true, ProjectFeature::DISABLED, true, :forbidden_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, true, ProjectFeature::ENABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, true, ProjectFeature::DISABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, true, ProjectFeature::PRIVATE, false, :not_found_wiki],
|
|
|
|
# Private project - is NOT a project member
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, false, ProjectFeature::ENABLED, true, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, false, ProjectFeature::PRIVATE, true, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, false, ProjectFeature::DISABLED, true, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, false, ProjectFeature::ENABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, false, ProjectFeature::DISABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PRIVATE, false, ProjectFeature::PRIVATE, false, :not_found_wiki],
|
|
|
|
# Public project - is a project member
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, true, ProjectFeature::ENABLED, true, :no_error],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, true, ProjectFeature::PRIVATE, true, :no_error],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, true, ProjectFeature::DISABLED, true, :forbidden_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, true, ProjectFeature::ENABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, true, ProjectFeature::DISABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, true, ProjectFeature::PRIVATE, false, :not_found_wiki],
|
|
|
|
# Public project - is NOT a project member
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, false, ProjectFeature::ENABLED, true, :no_error],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, false, ProjectFeature::PRIVATE, true, :forbidden_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, false, ProjectFeature::DISABLED, true, :forbidden_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, false, ProjectFeature::ENABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, false, ProjectFeature::DISABLED, false, :not_found_wiki],
|
|
|
|
[Gitlab::VisibilityLevel::PUBLIC, false, ProjectFeature::PRIVATE, false, :not_found_wiki]
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
before do
|
|
|
|
project.update!(visibility_level: project_visibility)
|
|
|
|
project.add_developer(user) if project_member?
|
|
|
|
project.project_feature.update_attribute(:wiki_access_level, wiki_access_level)
|
|
|
|
allow(wiki.repository).to receive(:exists?).and_return(wiki_repo?)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'provides access by level' do
|
|
|
|
case expected_behavior
|
|
|
|
when :no_error
|
|
|
|
expect { subject }.not_to raise_error
|
|
|
|
when :forbidden_wiki
|
|
|
|
expect { subject }.to raise_wiki_forbidden
|
|
|
|
when :not_found_wiki
|
|
|
|
expect { subject }.to raise_wiki_not_found
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
describe '#push_access_check' do
|
2020-10-24 23:57:45 +05:30
|
|
|
subject { access.check('git-receive-pack', changes) }
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
context 'when user can :create_wiki' do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
it { expect { subject }.not_to raise_error }
|
|
|
|
|
|
|
|
context 'when in a read-only GitLab instance' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::Database).to receive(:read_only?) { true }
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2022-05-03 16:02:30 +05:30
|
|
|
it_behaves_like 'forbidden git access' do
|
|
|
|
let(:message) { "You can't push code to a read-only GitLab instance." }
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'the user cannot :create_wiki' do
|
2022-05-03 16:02:30 +05:30
|
|
|
it { expect { subject }.to raise_wiki_not_found }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
describe '#check_download_access!' do
|
2019-02-15 15:39:39 +05:30
|
|
|
subject { access.check('git-upload-pack', Gitlab::GitAccess::ANY) }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2022-05-03 16:02:30 +05:30
|
|
|
context 'when actor is a user' do
|
2022-07-23 23:45:48 +05:30
|
|
|
it_behaves_like 'download wiki access by level'
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
2021-12-07 22:27:20 +05:30
|
|
|
|
|
|
|
context 'when the actor is a deploy token' do
|
|
|
|
let_it_be(:actor) { create(:deploy_token, projects: [project]) }
|
|
|
|
let_it_be(:user) { actor }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.project_feature.update_attribute(:wiki_access_level, wiki_access_level)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { access.check('git-upload-pack', changes) }
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
context 'when the wiki feature is enabled' do
|
|
|
|
let(:wiki_access_level) { ProjectFeature::ENABLED }
|
|
|
|
|
|
|
|
it { expect { subject }.not_to raise_error }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the wiki feature is disabled' do
|
|
|
|
let(:wiki_access_level) { ProjectFeature::DISABLED }
|
|
|
|
|
|
|
|
it { expect { subject }.to raise_wiki_forbidden }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the wiki feature is private' do
|
|
|
|
let(:wiki_access_level) { ProjectFeature::PRIVATE }
|
|
|
|
|
|
|
|
it { expect { subject }.to raise_wiki_forbidden }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the actor is a deploy key' do
|
|
|
|
let_it_be(:actor) { create(:deploy_key) }
|
|
|
|
let_it_be(:deploy_key_project) { create(:deploy_keys_project, project: project, deploy_key: actor) }
|
|
|
|
let_it_be(:user) { actor }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.project_feature.update_attribute(:wiki_access_level, wiki_access_level)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { access.check('git-upload-pack', changes) }
|
|
|
|
|
2021-12-07 22:27:20 +05:30
|
|
|
context 'when the wiki is enabled' do
|
|
|
|
let(:wiki_access_level) { ProjectFeature::ENABLED }
|
|
|
|
|
|
|
|
it { expect { subject }.not_to raise_error }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the wiki is disabled' do
|
|
|
|
let(:wiki_access_level) { ProjectFeature::DISABLED }
|
|
|
|
|
2022-05-03 16:02:30 +05:30
|
|
|
it { expect { subject }.to raise_wiki_forbidden }
|
2021-12-07 22:27:20 +05:30
|
|
|
end
|
|
|
|
end
|
2022-05-03 16:02:30 +05:30
|
|
|
|
|
|
|
describe 'when actor is a user provided by build via CI_JOB_TOKEN' do
|
|
|
|
let(:protocol) { 'http' }
|
|
|
|
let(:authentication_abilities) { [:build_download_code] }
|
|
|
|
let(:auth_result_type) { :build }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.project_feature.update_attribute(:wiki_access_level, wiki_access_level)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { access.check('git-upload-pack', changes) }
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it_behaves_like 'download wiki access by level'
|
2022-05-03 16:02:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
RSpec::Matchers.define :raise_wiki_not_found do
|
|
|
|
match do |actual|
|
|
|
|
expect { actual.call }.to raise_error(Gitlab::GitAccess::NotFoundError, include('wiki'))
|
|
|
|
end
|
|
|
|
def supports_block_expectations?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
RSpec::Matchers.define :raise_wiki_forbidden do
|
|
|
|
match do |actual|
|
|
|
|
expect { subject }.to raise_error(Gitlab::GitAccess::ForbiddenError, include('wiki'))
|
|
|
|
end
|
|
|
|
def supports_block_expectations?
|
|
|
|
true
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|