2016-07-18 04:16:56 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Gitlab::UserAccess do
|
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
|
|
|
|
it 'returns true if user is a master' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_master(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
|
|
|
|
|
|
|
it 'returns true if user is master' do
|
2017-12-22 03:18:28 -05:00
|
|
|
empty_project.add_master(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
|
|
|
|
|
|
|
it 'returns true if user is a master' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_master(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
|
|
|
|
|
|
|
|
it 'returns true if user is a master' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_master(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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
it 'returns true if user is a master' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_master(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
|
|
|
|
it 'returns true if user is a master' do
|
|
|
|
project.add_user(user, :master)
|
|
|
|
|
|
|
|
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 }
|
|
|
|
|
|
|
|
it 'returns true if user is a master' do
|
|
|
|
project.add_user(user, :master)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
it 'returns true if user is a master' do
|
|
|
|
project.add_user(user, :master)
|
|
|
|
|
|
|
|
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
|
|
|
|
it 'returns true if user is a master' do
|
|
|
|
project.add_user(user, :master)
|
|
|
|
|
|
|
|
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") }
|
|
|
|
|
|
|
|
it 'returns true if user is a master' do
|
|
|
|
project.add_user(user, :master)
|
|
|
|
|
|
|
|
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
|