2014-10-07 09:05:24 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 05:55:36 -05:00
|
|
|
describe Gitlab::GitAccessWiki, lib: true do
|
2016-09-16 05:06:31 -04:00
|
|
|
let(:access) { Gitlab::GitAccessWiki.new(user, project, 'web', authentication_abilities: authentication_abilities) }
|
2014-10-07 09:05:24 -04:00
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:user) { create(:user) }
|
2016-09-16 03:59:10 -04:00
|
|
|
let(:authentication_abilities) do
|
2016-09-15 09:40:53 -04:00
|
|
|
[
|
|
|
|
:read_project,
|
|
|
|
:download_code,
|
|
|
|
:push_code
|
|
|
|
]
|
|
|
|
end
|
2014-10-07 09:05:24 -04:00
|
|
|
|
|
|
|
describe 'push_allowed?' do
|
|
|
|
before do
|
|
|
|
create(:protected_branch, name: 'master', project: project)
|
|
|
|
project.team << [user, :developer]
|
|
|
|
end
|
|
|
|
|
2016-11-02 17:50:44 -04:00
|
|
|
subject { access.check('git-receive-pack', changes) }
|
2014-10-07 09:05:24 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(subject.allowed?).to be_truthy }
|
2014-10-07 09:05:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def changes
|
|
|
|
['6f6d7e7ed 570e7b2ab refs/heads/master']
|
|
|
|
end
|
2016-11-29 14:31:42 -05:00
|
|
|
|
|
|
|
describe '#download_access_check' do
|
|
|
|
subject { access.check('git-upload-pack', '_any') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.team << [user, :developer]
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when wiki feature is enabled' do
|
|
|
|
it 'give access to download wiki code' do
|
|
|
|
project.project_feature.update_attribute(:wiki_access_level, ProjectFeature::ENABLED)
|
|
|
|
|
|
|
|
expect(subject.allowed?).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when wiki feature is disabled' do
|
|
|
|
it 'does not give access to download wiki code' do
|
|
|
|
project.project_feature.update_attribute(:wiki_access_level, ProjectFeature::DISABLED)
|
|
|
|
|
|
|
|
expect(subject.allowed?).to be_falsey
|
|
|
|
expect(subject.message).to match(/You are not allowed to download code/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-10-07 09:05:24 -04:00
|
|
|
end
|