debian-mirror-gitlab/spec/services/protected_branches/create_service_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
2.4 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe ProtectedBranches::CreateService do
2022-08-27 11:52:29 +05:30
let_it_be_with_reload(:project) { create(:project) }
2022-03-02 08:16:31 +05:30
let(:user) { project.first_owner }
2016-09-29 09:46:39 +05:30
let(:params) do
{
2021-12-07 22:27:20 +05:30
name: name,
2018-11-18 11:00:15 +05:30
merge_access_levels_attributes: [{ access_level: Gitlab::Access::MAINTAINER }],
push_access_levels_attributes: [{ access_level: Gitlab::Access::MAINTAINER }]
2016-09-29 09:46:39 +05:30
}
end
2022-08-27 11:52:29 +05:30
subject(:service) { described_class.new(project, user, params) }
2016-09-29 09:46:39 +05:30
describe '#execute' do
2021-12-07 22:27:20 +05:30
let(:name) { 'master' }
2016-09-29 09:46:39 +05:30
it 'creates a new protected branch' do
expect { service.execute }.to change(ProtectedBranch, :count).by(1)
2018-11-18 11:00:15 +05:30
expect(project.protected_branches.last.push_access_levels.map(&:access_level)).to eq([Gitlab::Access::MAINTAINER])
expect(project.protected_branches.last.merge_access_levels.map(&:access_level)).to eq([Gitlab::Access::MAINTAINER])
2016-09-29 09:46:39 +05:30
end
2018-03-17 18:26:18 +05:30
2022-08-27 11:52:29 +05:30
it 'refreshes the cache' do
expect_next_instance_of(ProtectedBranches::CacheService) do |cache_service|
expect(cache_service).to receive(:refresh)
end
service.execute
end
2022-02-05 19:09:49 +05:30
context 'when protecting a branch with a name that contains HTML tags' do
let(:name) { 'foo<b>bar<\b>' }
2021-12-07 22:27:20 +05:30
2022-02-05 19:09:49 +05:30
it 'creates a new protected branch' do
expect { service.execute }.to change(ProtectedBranch, :count).by(1)
expect(project.protected_branches.last.name).to eq(name)
2021-12-07 22:27:20 +05:30
end
end
2018-03-17 18:26:18 +05:30
context 'when user does not have permission' do
let(:user) { create(:user) }
before do
project.add_developer(user)
end
it 'creates a new protected branch if we skip authorization step' do
expect { service.execute(skip_authorization: true) }.to change(ProtectedBranch, :count).by(1)
end
it 'raises Gitlab::Access:AccessDeniedError' do
expect { service.execute }.to raise_error(Gitlab::Access::AccessDeniedError)
end
end
2018-05-09 12:01:36 +05:30
context 'when a policy restricts rule creation' do
it "prevents creation of the protected branch rule" do
2022-08-27 11:52:29 +05:30
disallow(:create_protected_branch, an_instance_of(ProtectedBranch))
2018-05-09 12:01:36 +05:30
expect do
service.execute
end.to raise_error(Gitlab::Access::AccessDeniedError)
end
end
2016-09-29 09:46:39 +05:30
end
2022-08-27 11:52:29 +05:30
def disallow(ability, protected_branch)
allow(Ability).to receive(:allowed?).and_call_original
allow(Ability).to receive(:allowed?).with(user, ability, protected_branch).and_return(false)
end
2016-09-29 09:46:39 +05:30
end