2014-09-24 04:37:30 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 05:55:36 -05:00
|
|
|
describe Gitlab::GitAccess, lib: true do
|
2016-09-16 03:59:10 -04:00
|
|
|
let(:access) { Gitlab::GitAccess.new(actor, project, 'web', authentication_abilities: authentication_abilities) }
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :repository) }
|
2014-09-24 04:37:30 -04:00
|
|
|
let(:user) { create(:user) }
|
2015-03-24 09:10:55 -04:00
|
|
|
let(:actor) { user }
|
2016-09-16 03:59:10 -04:00
|
|
|
let(:authentication_abilities) do
|
2016-09-15 05:57:09 -04:00
|
|
|
[
|
|
|
|
:read_project,
|
|
|
|
:download_code,
|
|
|
|
:push_code
|
|
|
|
]
|
|
|
|
end
|
2014-09-24 04:37:30 -04:00
|
|
|
|
2016-06-22 20:16:24 -04:00
|
|
|
describe '#check with single protocols allowed' do
|
|
|
|
def disable_protocol(protocol)
|
|
|
|
settings = ::ApplicationSetting.create_from_defaults
|
2016-06-29 15:30:27 -04:00
|
|
|
settings.update_attribute(:enabled_git_access_protocol, protocol)
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'ssh disabled' do
|
|
|
|
before do
|
|
|
|
disable_protocol('ssh')
|
2016-09-16 03:59:10 -04:00
|
|
|
@acc = Gitlab::GitAccess.new(actor, project, 'ssh', authentication_abilities: authentication_abilities)
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'blocks ssh git push' do
|
2016-08-04 09:22:34 -04:00
|
|
|
expect(@acc.check('git-receive-pack', '_any').allowed?).to be_falsey
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'blocks ssh git pull' do
|
2016-08-04 09:22:34 -04:00
|
|
|
expect(@acc.check('git-upload-pack', '_any').allowed?).to be_falsey
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'http disabled' do
|
|
|
|
before do
|
|
|
|
disable_protocol('http')
|
2016-09-16 03:59:10 -04:00
|
|
|
@acc = Gitlab::GitAccess.new(actor, project, 'http', authentication_abilities: authentication_abilities)
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'blocks http push' do
|
2016-08-04 09:22:34 -04:00
|
|
|
expect(@acc.check('git-receive-pack', '_any').allowed?).to be_falsey
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'blocks http git pull' do
|
2016-08-04 09:22:34 -04:00
|
|
|
expect(@acc.check('git-upload-pack', '_any').allowed?).to be_falsey
|
2016-06-22 20:16:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-20 08:19:07 -05:00
|
|
|
describe '#check_download_access!' do
|
2016-08-04 09:22:34 -04:00
|
|
|
subject { access.check('git-upload-pack', '_any') }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2014-09-24 04:37:30 -04:00
|
|
|
describe 'master permissions' do
|
|
|
|
before { project.team << [user, :master] }
|
|
|
|
|
|
|
|
context 'pull code' do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(subject.allowed?).to be_truthy }
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'guest permissions' do
|
|
|
|
before { project.team << [user, :guest] }
|
|
|
|
|
|
|
|
context 'pull code' do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(subject.allowed?).to be_falsey }
|
2016-11-02 17:50:44 -04:00
|
|
|
it { expect(subject.message).to match(/You are not allowed to download code/) }
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'blocked user' do
|
|
|
|
before do
|
|
|
|
project.team << [user, :master]
|
|
|
|
user.block
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'pull code' do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(subject.allowed?).to be_falsey }
|
2016-11-02 17:50:44 -04:00
|
|
|
it { expect(subject.message).to match(/Your account has been blocked/) }
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-11 08:53:43 -05:00
|
|
|
describe 'without access to project' do
|
2014-09-24 04:37:30 -04:00
|
|
|
context 'pull code' do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(subject.allowed?).to be_falsey }
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|
2016-11-02 17:50:44 -04:00
|
|
|
|
|
|
|
context 'when project is public' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:public_project) { create(:project, :public, :repository) }
|
2016-11-02 17:50:44 -04:00
|
|
|
let(:guest_access) { Gitlab::GitAccess.new(nil, public_project, 'web', authentication_abilities: []) }
|
|
|
|
subject { guest_access.check('git-upload-pack', '_any') }
|
|
|
|
|
|
|
|
context 'when repository is enabled' do
|
|
|
|
it 'give access to download code' do
|
|
|
|
expect(subject.allowed?).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when repository is disabled' do
|
|
|
|
it 'does not give access to download code' do
|
|
|
|
public_project.project_feature.update_attribute(:repository_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-09-24 04:37:30 -04:00
|
|
|
end
|
2014-12-01 09:25:10 -05:00
|
|
|
|
|
|
|
describe 'deploy key permissions' do
|
2016-11-16 09:07:04 -05:00
|
|
|
let(:key) { create(:deploy_key, user: user) }
|
2015-03-24 09:10:55 -04:00
|
|
|
let(:actor) { key }
|
2014-12-01 09:25:10 -05:00
|
|
|
|
|
|
|
context 'pull code' do
|
2016-07-18 06:36:44 -04:00
|
|
|
context 'when project is authorized' do
|
|
|
|
before { key.projects << project }
|
2014-12-01 09:25:10 -05:00
|
|
|
|
2016-07-18 06:36:44 -04:00
|
|
|
it { expect(subject).to be_allowed }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unauthorized' do
|
|
|
|
context 'from public project' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :public, :repository) }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
|
|
|
it { expect(subject).to be_allowed }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'from internal project' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :internal, :repository) }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
|
|
|
it { expect(subject).not_to be_allowed }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'from private project' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :private, :repository) }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
|
|
|
it { expect(subject).not_to be_allowed }
|
|
|
|
end
|
|
|
|
end
|
2014-12-01 09:25:10 -05:00
|
|
|
end
|
|
|
|
end
|
2016-09-15 05:57:09 -04:00
|
|
|
|
2016-09-16 03:59:10 -04:00
|
|
|
describe 'build authentication_abilities permissions' do
|
|
|
|
let(:authentication_abilities) { build_authentication_abilities }
|
2016-09-15 05:57:09 -04:00
|
|
|
|
2016-10-17 11:23:51 -04:00
|
|
|
describe 'owner' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :repository, namespace: user.namespace) }
|
2016-10-17 11:23:51 -04:00
|
|
|
|
|
|
|
context 'pull code' do
|
|
|
|
it { expect(subject).to be_allowed }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-15 05:57:09 -04:00
|
|
|
describe 'reporter user' do
|
|
|
|
before { project.team << [user, :reporter] }
|
|
|
|
|
|
|
|
context 'pull code' do
|
|
|
|
it { expect(subject).to be_allowed }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'admin user' do
|
|
|
|
let(:user) { create(:admin) }
|
|
|
|
|
|
|
|
context 'when member of the project' do
|
|
|
|
before { project.team << [user, :reporter] }
|
|
|
|
|
|
|
|
context 'pull code' do
|
|
|
|
it { expect(subject).to be_allowed }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when is not member of the project' do
|
|
|
|
context 'pull code' do
|
|
|
|
it { expect(subject).not_to be_allowed }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|
|
|
|
|
2016-12-20 08:19:07 -05:00
|
|
|
describe '#check_push_access!' do
|
2016-07-18 04:16:56 -04:00
|
|
|
before { merge_into_protected_branch }
|
|
|
|
let(:unprotected_branch) { FFaker::Internet.user_name }
|
2014-09-24 04:37:30 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
let(:changes) do
|
|
|
|
{ push_new_branch: "#{Gitlab::Git::BLANK_SHA} 570e7b2ab refs/heads/wow",
|
2014-09-24 05:04:40 -04:00
|
|
|
push_master: '6f6d7e7ed 570e7b2ab refs/heads/master',
|
|
|
|
push_protected_branch: '6f6d7e7ed 570e7b2ab refs/heads/feature',
|
2014-11-03 14:02:12 -05:00
|
|
|
push_remove_protected_branch: "570e7b2ab #{Gitlab::Git::BLANK_SHA} "\
|
|
|
|
'refs/heads/feature',
|
2014-09-24 05:04:40 -04:00
|
|
|
push_tag: '6f6d7e7ed 570e7b2ab refs/tags/v1.0.0',
|
2014-11-03 14:02:12 -05:00
|
|
|
push_new_tag: "#{Gitlab::Git::BLANK_SHA} 570e7b2ab refs/tags/v7.8.9",
|
2016-07-18 04:16:56 -04:00
|
|
|
push_all: ['6f6d7e7ed 570e7b2ab refs/heads/master', '6f6d7e7ed 570e7b2ab refs/heads/feature'],
|
|
|
|
merge_into_protected_branch: "0b4bc9a #{merge_into_protected_branch} refs/heads/feature" }
|
2014-09-24 05:04:40 -04:00
|
|
|
end
|
2014-09-24 04:37:30 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
def stub_git_hooks
|
|
|
|
# Running the `pre-receive` hook is expensive, and not necessary for this test.
|
|
|
|
allow_any_instance_of(GitHooksService).to receive(:execute).and_yield
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|
2014-12-26 05:41:04 -05:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
def merge_into_protected_branch
|
|
|
|
@protected_branch_merge_commit ||= begin
|
|
|
|
stub_git_hooks
|
|
|
|
project.repository.add_branch(user, unprotected_branch, 'feature')
|
|
|
|
target_branch = project.repository.lookup('feature')
|
2016-12-08 06:11:52 -05:00
|
|
|
source_branch = project.repository.commit_file(
|
|
|
|
user,
|
|
|
|
FFaker::InternetSE.login_user_name,
|
|
|
|
FFaker::HipsterIpsum.paragraph,
|
|
|
|
message: FFaker::HipsterIpsum.sentence,
|
|
|
|
branch_name: unprotected_branch,
|
|
|
|
update: false)
|
2016-07-18 04:16:56 -04:00
|
|
|
rugged = project.repository.rugged
|
|
|
|
author = { email: "email@example.com", time: Time.now, name: "Example Git User" }
|
2014-12-26 05:41:04 -05:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
merge_index = rugged.merge_commits(target_branch, source_branch)
|
|
|
|
Rugged::Commit.create(rugged, author: author, committer: author, message: "commit message", parents: [target_branch, source_branch], tree: merge_index.write_tree(rugged))
|
2014-12-26 05:41:04 -05:00
|
|
|
end
|
|
|
|
end
|
2016-06-23 05:28:14 -04:00
|
|
|
|
2016-10-18 12:28:57 -04:00
|
|
|
# Run permission checks for a user
|
2016-07-18 04:16:56 -04:00
|
|
|
def self.run_permission_checks(permissions_matrix)
|
|
|
|
permissions_matrix.keys.each do |role|
|
2016-07-13 14:57:30 -04:00
|
|
|
describe "#{role} access" do
|
2016-07-14 02:16:13 -04:00
|
|
|
before do
|
|
|
|
if role == :admin
|
|
|
|
user.update_attribute(:admin, true)
|
|
|
|
else
|
|
|
|
project.team << [user, role]
|
|
|
|
end
|
2016-06-23 05:28:14 -04:00
|
|
|
|
2016-10-18 12:28:57 -04:00
|
|
|
permissions_matrix[role].each do |action, allowed|
|
|
|
|
context action do
|
2016-12-20 08:19:07 -05:00
|
|
|
subject { access.send(:check_push_access!, changes[action]) }
|
2016-10-18 12:28:57 -04:00
|
|
|
it { expect(subject.allowed?).to allowed ? be_truthy : be_falsey }
|
|
|
|
end
|
2016-06-23 05:28:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-07-18 04:16:56 -04:00
|
|
|
|
|
|
|
permissions_matrix = {
|
2016-07-14 02:16:13 -04:00
|
|
|
admin: {
|
|
|
|
push_new_branch: true,
|
|
|
|
push_master: true,
|
|
|
|
push_protected_branch: true,
|
|
|
|
push_remove_protected_branch: false,
|
|
|
|
push_tag: true,
|
|
|
|
push_new_tag: true,
|
|
|
|
push_all: true,
|
|
|
|
merge_into_protected_branch: true
|
|
|
|
},
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
master: {
|
|
|
|
push_new_branch: true,
|
|
|
|
push_master: true,
|
|
|
|
push_protected_branch: true,
|
|
|
|
push_remove_protected_branch: false,
|
|
|
|
push_tag: true,
|
|
|
|
push_new_tag: true,
|
|
|
|
push_all: true,
|
|
|
|
merge_into_protected_branch: true
|
|
|
|
},
|
|
|
|
|
|
|
|
developer: {
|
|
|
|
push_new_branch: true,
|
|
|
|
push_master: true,
|
|
|
|
push_protected_branch: false,
|
|
|
|
push_remove_protected_branch: false,
|
|
|
|
push_tag: false,
|
|
|
|
push_new_tag: true,
|
|
|
|
push_all: false,
|
|
|
|
merge_into_protected_branch: false
|
|
|
|
},
|
|
|
|
|
|
|
|
reporter: {
|
|
|
|
push_new_branch: false,
|
|
|
|
push_master: false,
|
|
|
|
push_protected_branch: false,
|
|
|
|
push_remove_protected_branch: false,
|
|
|
|
push_tag: false,
|
|
|
|
push_new_tag: false,
|
|
|
|
push_all: false,
|
|
|
|
merge_into_protected_branch: false
|
|
|
|
},
|
|
|
|
|
|
|
|
guest: {
|
|
|
|
push_new_branch: false,
|
|
|
|
push_master: false,
|
|
|
|
push_protected_branch: false,
|
|
|
|
push_remove_protected_branch: false,
|
|
|
|
push_tag: false,
|
|
|
|
push_new_tag: false,
|
|
|
|
push_all: false,
|
|
|
|
merge_into_protected_branch: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[['feature', 'exact'], ['feat*', 'wildcard']].each do |protected_branch_name, protected_branch_type|
|
|
|
|
context do
|
|
|
|
before { create(:protected_branch, name: protected_branch_name, project: project) }
|
|
|
|
|
|
|
|
run_permission_checks(permissions_matrix)
|
|
|
|
end
|
|
|
|
|
2016-07-08 02:15:02 -04:00
|
|
|
context "when developers are allowed to push into the #{protected_branch_type} protected branch" do
|
|
|
|
before { create(:protected_branch, :developers_can_push, name: protected_branch_name, project: project) }
|
2016-07-18 04:16:56 -04:00
|
|
|
|
|
|
|
run_permission_checks(permissions_matrix.deep_merge(developer: { push_protected_branch: true, push_all: true, merge_into_protected_branch: true }))
|
|
|
|
end
|
|
|
|
|
2016-07-08 02:15:02 -04:00
|
|
|
context "developers are allowed to merge into the #{protected_branch_type} protected branch" do
|
|
|
|
before { create(:protected_branch, :developers_can_merge, name: protected_branch_name, project: project) }
|
2016-07-18 04:16:56 -04:00
|
|
|
|
|
|
|
context "when a merge request exists for the given source/target branch" do
|
|
|
|
context "when the merge request is in progress" do
|
|
|
|
before do
|
2016-07-08 02:15:02 -04:00
|
|
|
create(:merge_request, source_project: project, source_branch: unprotected_branch, target_branch: 'feature',
|
2016-07-08 05:16:13 -04:00
|
|
|
state: 'locked', in_progress_merge_commit_sha: merge_into_protected_branch)
|
2016-07-18 04:16:56 -04:00
|
|
|
end
|
|
|
|
|
2016-07-25 05:29:05 -04:00
|
|
|
run_permission_checks(permissions_matrix.deep_merge(developer: { merge_into_protected_branch: true }))
|
|
|
|
end
|
2016-07-18 04:16:56 -04:00
|
|
|
|
2016-07-25 05:29:05 -04:00
|
|
|
context "when the merge request is not in progress" do
|
|
|
|
before do
|
|
|
|
create(:merge_request, source_project: project, source_branch: unprotected_branch, target_branch: 'feature', in_progress_merge_commit_sha: nil)
|
2016-07-18 04:16:56 -04:00
|
|
|
end
|
2016-07-25 05:29:05 -04:00
|
|
|
|
|
|
|
run_permission_checks(permissions_matrix.deep_merge(developer: { merge_into_protected_branch: false }))
|
2016-07-08 02:15:02 -04:00
|
|
|
end
|
2016-07-18 04:16:56 -04:00
|
|
|
|
2016-07-08 02:15:02 -04:00
|
|
|
context "when a merge request does not exist for the given source/target branch" do
|
2016-07-18 04:16:56 -04:00
|
|
|
run_permission_checks(permissions_matrix.deep_merge(developer: { merge_into_protected_branch: false }))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-08 02:15:02 -04:00
|
|
|
context "when developers are allowed to push and merge into the #{protected_branch_type} protected branch" do
|
|
|
|
before { create(:protected_branch, :developers_can_merge, :developers_can_push, name: protected_branch_name, project: project) }
|
2016-07-18 04:16:56 -04:00
|
|
|
|
|
|
|
run_permission_checks(permissions_matrix.deep_merge(developer: { push_protected_branch: true, push_all: true, merge_into_protected_branch: true }))
|
|
|
|
end
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-07-14 02:16:13 -04:00
|
|
|
context "when no one is allowed to push to the #{protected_branch_name} protected branch" do
|
|
|
|
before { create(:protected_branch, :no_one_can_push, name: protected_branch_name, project: project) }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-07-14 02:16:13 -04:00
|
|
|
run_permission_checks(permissions_matrix.deep_merge(developer: { push_protected_branch: false, push_all: false, merge_into_protected_branch: false },
|
|
|
|
master: { push_protected_branch: false, push_all: false, merge_into_protected_branch: false },
|
|
|
|
admin: { push_protected_branch: false, push_all: false, merge_into_protected_branch: false }))
|
|
|
|
end
|
2016-07-08 02:15:02 -04:00
|
|
|
end
|
|
|
|
end
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-11-11 08:44:33 -05:00
|
|
|
shared_examples 'pushing code' do |can|
|
2016-09-15 05:57:09 -04:00
|
|
|
subject { access.check('git-receive-pack', '_any') }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-09-15 05:57:09 -04:00
|
|
|
context 'when project is authorized' do
|
2016-09-15 09:40:53 -04:00
|
|
|
before { authorize }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-11-11 08:44:33 -05:00
|
|
|
it { expect(subject).public_send(can, be_allowed) }
|
2016-09-15 05:57:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unauthorized' do
|
|
|
|
context 'to public project' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :public, :repository) }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-07-08 02:15:02 -04:00
|
|
|
it { expect(subject).not_to be_allowed }
|
|
|
|
end
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-09-15 05:57:09 -04:00
|
|
|
context 'to internal project' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :internal, :repository) }
|
2016-07-18 06:36:44 -04:00
|
|
|
|
2016-09-15 05:57:09 -04:00
|
|
|
it { expect(subject).not_to be_allowed }
|
|
|
|
end
|
2016-07-08 02:15:02 -04:00
|
|
|
|
2016-09-15 05:57:09 -04:00
|
|
|
context 'to private project' do
|
2017-01-24 18:42:12 -05:00
|
|
|
let(:project) { create(:project, :private, :repository) }
|
2016-07-08 02:15:02 -04:00
|
|
|
|
2016-09-15 05:57:09 -04:00
|
|
|
it { expect(subject).not_to be_allowed }
|
2016-07-18 06:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|
2016-09-15 05:57:09 -04:00
|
|
|
|
2016-09-16 03:59:10 -04:00
|
|
|
describe 'build authentication abilities' do
|
|
|
|
let(:authentication_abilities) { build_authentication_abilities }
|
2016-09-15 05:57:09 -04:00
|
|
|
|
2016-11-11 08:44:33 -05:00
|
|
|
it_behaves_like 'pushing code', :not_to do
|
2016-09-15 09:40:53 -04:00
|
|
|
def authorize
|
|
|
|
project.team << [user, :reporter]
|
|
|
|
end
|
|
|
|
end
|
2016-09-15 05:57:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'deploy key permissions' do
|
2016-11-16 09:07:04 -05:00
|
|
|
let(:key) { create(:deploy_key, user: user, can_push: can_push) }
|
2016-09-15 05:57:09 -04:00
|
|
|
let(:actor) { key }
|
|
|
|
|
2016-11-11 08:44:33 -05:00
|
|
|
context 'when deploy_key can push' do
|
|
|
|
let(:can_push) { true }
|
|
|
|
|
|
|
|
it_behaves_like 'pushing code', :to do
|
|
|
|
def authorize
|
|
|
|
key.projects << project
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when deploy_key cannot push' do
|
|
|
|
let(:can_push) { false }
|
|
|
|
|
|
|
|
it_behaves_like 'pushing code', :not_to do
|
|
|
|
def authorize
|
|
|
|
key.projects << project
|
|
|
|
end
|
2016-09-15 09:40:53 -04:00
|
|
|
end
|
|
|
|
end
|
2016-09-15 05:57:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-09-16 03:59:10 -04:00
|
|
|
def build_authentication_abilities
|
2016-09-15 05:57:09 -04:00
|
|
|
[
|
|
|
|
:read_project,
|
|
|
|
:build_download_code
|
|
|
|
]
|
|
|
|
end
|
2016-09-15 07:49:11 -04:00
|
|
|
|
2016-09-16 03:59:10 -04:00
|
|
|
def full_authentication_abilities
|
2016-09-15 07:49:11 -04:00
|
|
|
[
|
|
|
|
:read_project,
|
|
|
|
:download_code,
|
|
|
|
:push_code
|
|
|
|
]
|
|
|
|
end
|
2014-09-24 04:37:30 -04:00
|
|
|
end
|