summaryrefslogtreecommitdiff
path: root/spec/services/delete_branch_service_spec.rb
blob: 336f5dafb5bf9b1732b3f5377bad5c92456ae369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require 'spec_helper'

describe DeleteBranchService, services: true do
  let(:project) { create(:project) }
  let(:repository) { project.repository }
  let(:user) { create(:user) }
  let(:service) { described_class.new(project, user) }

  describe '#execute' do
    context 'when user has access to push to repository' do
      before do
        project.team << [user, :developer]
      end

      it 'removes the branch' do
        expect(branch_exists?('feature')).to be true

        result = service.execute('feature')

        expect(result[:status]).to eq :success
        expect(branch_exists?('feature')).to be false
      end
    end

    context 'when user does not have access to push to repository' do
      it 'does not remove branch' do
        expect(branch_exists?('feature')).to be true

        result = service.execute('feature')

        expect(result[:status]).to eq :error
        expect(result[:message]).to eq 'You dont have push access to repo'
        expect(branch_exists?('feature')).to be true
      end
    end
  end

  def branch_exists?(branch_name)
    repository.ref_exists?("refs/heads/#{branch_name}")
  end
end