2019-08-22 06:57:44 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Gitlab::UserAccess do
|
2018-02-27 08:18:32 -05:00
|
|
|
include ProjectForksHelper
|
|
|
|
|
2017-07-25 13:09:00 -04:00
|
|
|
let(:access) { described_class.new(user, project: project) }
|
2017-08-01 14:51:52 -04:00
|
|
|
let(:project) { create(:project, :repository) }
|
2016-07-18 04:16:56 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
2017-05-08 03:41:58 -04:00
|
|
|
describe '#can_push_to_branch?' do
|
2016-07-18 04:16:56 -04:00
|
|
|
describe 'push to none protected branch' do
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_maintainer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?('random_branch')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is a developer' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_developer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?('random_branch')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_reporter(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?('random_branch')).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-01 05:06:57 -04:00
|
|
|
describe 'push to empty project' do
|
|
|
|
let(:empty_project) { create(:project_empty_repo) }
|
2017-07-25 13:09:00 -04:00
|
|
|
let(:project_access) { described_class.new(user, project: empty_project) }
|
2016-08-01 05:06:57 -04:00
|
|
|
|
2018-04-18 09:52:55 -04:00
|
|
|
it 'returns true for admins' do
|
|
|
|
user.update!(admin: true)
|
|
|
|
|
|
|
|
expect(access.can_push_to_branch?('master')).to be_truthy
|
|
|
|
end
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is maintainer' do
|
|
|
|
empty_project.add_maintainer(user)
|
2016-08-01 05:06:57 -04:00
|
|
|
|
|
|
|
expect(project_access.can_push_to_branch?('master')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is developer and project is fully protected' do
|
2017-12-22 03:18:28 -05:00
|
|
|
empty_project.add_developer(user)
|
2016-08-01 05:06:57 -04:00
|
|
|
stub_application_setting(default_branch_protection: Gitlab::Access::PROTECTION_FULL)
|
|
|
|
|
|
|
|
expect(project_access.can_push_to_branch?('master')).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is developer and it is not allowed to push new commits but can merge into branch' do
|
2017-12-22 03:18:28 -05:00
|
|
|
empty_project.add_developer(user)
|
2016-08-01 05:06:57 -04:00
|
|
|
stub_application_setting(default_branch_protection: Gitlab::Access::PROTECTION_DEV_CAN_MERGE)
|
|
|
|
|
|
|
|
expect(project_access.can_push_to_branch?('master')).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is developer and project is unprotected' do
|
2017-12-22 03:18:28 -05:00
|
|
|
empty_project.add_developer(user)
|
2016-08-01 05:06:57 -04:00
|
|
|
stub_application_setting(default_branch_protection: Gitlab::Access::PROTECTION_NONE)
|
|
|
|
|
|
|
|
expect(project_access.can_push_to_branch?('master')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is developer and project grants developers permission' do
|
2017-12-22 03:18:28 -05:00
|
|
|
empty_project.add_developer(user)
|
2016-08-01 05:06:57 -04:00
|
|
|
stub_application_setting(default_branch_protection: Gitlab::Access::PROTECTION_DEV_CAN_PUSH)
|
|
|
|
|
|
|
|
expect(project_access.can_push_to_branch?('master')).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
describe 'push to protected branch' do
|
2017-01-05 06:40:54 -05:00
|
|
|
let(:branch) { create :protected_branch, project: project, name: "test" }
|
|
|
|
let(:not_existing_branch) { create :protected_branch, :developers_can_merge, project: project }
|
2016-07-18 04:16:56 -04:00
|
|
|
|
2018-04-18 09:52:55 -04:00
|
|
|
it 'returns true for admins' do
|
|
|
|
user.update!(admin: true)
|
|
|
|
|
|
|
|
expect(access.can_push_to_branch?(branch.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_maintainer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?(branch.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a developer' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_developer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?(branch.name)).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_reporter(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?(branch.name)).to be_falsey
|
|
|
|
end
|
2017-01-05 06:40:54 -05:00
|
|
|
|
2017-04-28 10:05:00 -04:00
|
|
|
it 'returns false if branch does not exist' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_developer(user)
|
2017-01-05 06:40:54 -05:00
|
|
|
|
2017-04-28 10:05:00 -04:00
|
|
|
expect(access.can_push_to_branch?(not_existing_branch.name)).to be_falsey
|
2017-01-05 06:40:54 -05:00
|
|
|
end
|
2016-07-18 04:16:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'push to protected branch if allowed for developers' do
|
|
|
|
before do
|
2016-07-08 02:15:02 -04:00
|
|
|
@branch = create :protected_branch, :developers_can_push, project: project
|
2016-07-18 04:16:56 -04:00
|
|
|
end
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_maintainer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?(@branch.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is a developer' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_developer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?(@branch.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_reporter(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_push_to_branch?(@branch.name)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-27 08:18:32 -05:00
|
|
|
describe 'allowing pushes to maintainers of forked projects' do
|
|
|
|
let(:canonical_project) { create(:project, :public, :repository) }
|
|
|
|
let(:project) { fork_project(canonical_project, create(:user), repository: true) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
create(
|
|
|
|
:merge_request,
|
|
|
|
target_project: canonical_project,
|
|
|
|
source_project: project,
|
|
|
|
source_branch: 'awesome-feature',
|
2018-05-22 21:54:57 -04:00
|
|
|
allow_collaboration: true
|
2018-02-27 08:18:32 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-10-23 05:06:03 -04:00
|
|
|
it 'allows users that have push access to the canonical project to push to the MR branch', :sidekiq_might_not_need_inline do
|
2018-02-27 08:18:32 -05:00
|
|
|
canonical_project.add_developer(user)
|
|
|
|
|
|
|
|
expect(access.can_push_to_branch?('awesome-feature')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not allow the user to push to other branches' do
|
|
|
|
canonical_project.add_developer(user)
|
|
|
|
|
|
|
|
expect(access.can_push_to_branch?('master')).to be_falsey
|
|
|
|
end
|
|
|
|
|
2020-02-07 10:09:52 -05:00
|
|
|
it 'does not allow the user to push if they do not have push access to the canonical project' do
|
2018-02-27 08:18:32 -05:00
|
|
|
canonical_project.add_guest(user)
|
|
|
|
|
|
|
|
expect(access.can_push_to_branch?('awesome-feature')).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
describe 'merge to protected branch if allowed for developers' do
|
|
|
|
before do
|
2016-07-08 02:15:02 -04:00
|
|
|
@branch = create :protected_branch, :developers_can_merge, project: project
|
2016-07-18 04:16:56 -04:00
|
|
|
end
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_maintainer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_merge_to_branch?(@branch.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is a developer' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_developer(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_merge_to_branch?(@branch.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_reporter(user)
|
2016-08-01 11:48:15 -04:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
expect(access.can_merge_to_branch?(@branch.name)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-04-03 21:05:42 -04:00
|
|
|
|
2017-05-08 03:41:58 -04:00
|
|
|
describe '#can_create_tag?' do
|
2017-04-03 21:05:42 -04:00
|
|
|
describe 'push to none protected tag' do
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_user(user, :maintainer)
|
2017-04-03 21:05:42 -04:00
|
|
|
|
|
|
|
expect(access.can_create_tag?('random_tag')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is a developer' do
|
|
|
|
project.add_user(user, :developer)
|
|
|
|
|
|
|
|
expect(access.can_create_tag?('random_tag')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
|
|
|
project.add_user(user, :reporter)
|
|
|
|
|
|
|
|
expect(access.can_create_tag?('random_tag')).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'push to protected tag' do
|
|
|
|
let(:tag) { create(:protected_tag, project: project, name: "test") }
|
|
|
|
let(:not_existing_tag) { create :protected_tag, project: project }
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_user(user, :maintainer)
|
2017-04-03 21:05:42 -04:00
|
|
|
|
|
|
|
expect(access.can_create_tag?(tag.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a developer' do
|
|
|
|
project.add_user(user, :developer)
|
|
|
|
|
|
|
|
expect(access.can_create_tag?(tag.name)).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
|
|
|
project.add_user(user, :reporter)
|
|
|
|
|
|
|
|
expect(access.can_create_tag?(tag.name)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'push to protected tag if allowed for developers' do
|
|
|
|
before do
|
2017-04-03 22:37:22 -04:00
|
|
|
@tag = create(:protected_tag, :developers_can_create, project: project)
|
2017-04-03 21:05:42 -04:00
|
|
|
end
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_user(user, :maintainer)
|
2017-04-03 21:05:42 -04:00
|
|
|
|
|
|
|
expect(access.can_create_tag?(@tag.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is a developer' do
|
|
|
|
project.add_user(user, :developer)
|
|
|
|
|
|
|
|
expect(access.can_create_tag?(@tag.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
|
|
|
project.add_user(user, :reporter)
|
|
|
|
|
|
|
|
expect(access.can_create_tag?(@tag.name)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-05-08 03:41:58 -04:00
|
|
|
|
|
|
|
describe '#can_delete_branch?' do
|
|
|
|
describe 'delete unprotected branch' do
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_user(user, :maintainer)
|
2017-05-08 03:41:58 -04:00
|
|
|
|
|
|
|
expect(access.can_delete_branch?('random_branch')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if user is a developer' do
|
|
|
|
project.add_user(user, :developer)
|
|
|
|
|
|
|
|
expect(access.can_delete_branch?('random_branch')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
|
|
|
project.add_user(user, :reporter)
|
|
|
|
|
|
|
|
expect(access.can_delete_branch?('random_branch')).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'delete protected branch' do
|
|
|
|
let(:branch) { create(:protected_branch, project: project, name: "test") }
|
|
|
|
|
2018-07-11 10:36:08 -04:00
|
|
|
it 'returns true if user is a maintainer' do
|
|
|
|
project.add_user(user, :maintainer)
|
2017-05-08 03:41:58 -04:00
|
|
|
|
|
|
|
expect(access.can_delete_branch?(branch.name)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a developer' do
|
|
|
|
project.add_user(user, :developer)
|
|
|
|
|
|
|
|
expect(access.can_delete_branch?(branch.name)).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if user is a reporter' do
|
|
|
|
project.add_user(user, :reporter)
|
|
|
|
|
|
|
|
expect(access.can_delete_branch?(branch.name)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-07-18 04:16:56 -04:00
|
|
|
end
|