2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe ProtectedBranchPolicy do
|
2018-05-09 12:01:36 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:name) { 'feature' }
|
|
|
|
let(:protected_branch) { create(:protected_branch, name: name) }
|
|
|
|
let(:project) { protected_branch.project }
|
|
|
|
|
|
|
|
subject { described_class.new(user, protected_branch) }
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
context 'as maintainers' do
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
it 'can be read' do
|
|
|
|
is_expected.to be_allowed(:read_protected_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can be created' do
|
|
|
|
is_expected.to be_allowed(:create_protected_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can be updated' do
|
|
|
|
is_expected.to be_allowed(:update_protected_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can be destroyed' do
|
|
|
|
is_expected.to be_allowed(:destroy_protected_branch)
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
context 'as guests' do
|
|
|
|
before do
|
|
|
|
project.add_guest(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can be read' do
|
|
|
|
is_expected.to be_disallowed(:read_protected_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can be created' do
|
|
|
|
is_expected.to be_disallowed(:create_protected_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can be updated' do
|
|
|
|
is_expected.to be_disallowed(:update_protected_branch)
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
it 'cannot be destroyed' do
|
|
|
|
is_expected.to be_disallowed(:destroy_protected_branch)
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|