debian-mirror-gitlab/spec/lib/gitlab/checks/snippet_check_spec.rb

54 lines
1.6 KiB
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Checks::SnippetCheck do
2020-04-08 14:13:33 +05:30
include_context 'change access checks context'
2020-11-24 15:15:51 +05:30
let_it_be(:snippet) { create(:personal_snippet, :repository) }
2020-04-08 14:13:33 +05:30
let(:user_access) { Gitlab::UserAccessSnippet.new(user, snippet: snippet) }
2020-11-24 15:15:51 +05:30
let(:default_branch) { snippet.default_branch }
2020-04-08 14:13:33 +05:30
2020-11-24 15:15:51 +05:30
subject { Gitlab::Checks::SnippetCheck.new(changes, default_branch: default_branch, logger: logger) }
2020-04-08 14:13:33 +05:30
describe '#validate!' do
it 'does not raise any error' do
expect { subject.validate! }.not_to raise_error
end
context 'trying to delete the branch' do
let(:newrev) { '0000000000000000000000000000000000000000' }
it 'raises an error' do
expect { subject.validate! }.to raise_error(Gitlab::GitAccess::ForbiddenError, 'You can not create or delete branches.')
end
end
context 'trying to create the branch' do
let(:oldrev) { '0000000000000000000000000000000000000000' }
let(:ref) { 'refs/heads/feature' }
it 'raises an error' do
expect { subject.validate! }.to raise_error(Gitlab::GitAccess::ForbiddenError, 'You can not create or delete branches.')
end
context "when branch is 'master'" do
let(:ref) { 'refs/heads/master' }
it "allows the operation" do
expect { subject.validate! }.not_to raise_error
end
end
end
2020-11-24 15:15:51 +05:30
context 'when default_branch is nil' do
let(:default_branch) { nil }
it 'raises an error' do
expect { subject.validate! }.to raise_error(Gitlab::GitAccess::ForbiddenError, 'You can not create or delete branches.')
end
end
2020-04-08 14:13:33 +05:30
end
end