summaryrefslogtreecommitdiff
path: root/spec/services/branches/create_service_spec.rb
blob: b0629c5e25abfa43c50ab6ccd66bf07bb50bb0df (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
42
# frozen_string_literal: true

require 'spec_helper'

describe Branches::CreateService do
  let(:user) { create(:user) }

  subject(:service) { described_class.new(project, user) }

  describe '#execute' do
    context 'when repository is empty' do
      let(:project) { create(:project_empty_repo) }

      it 'creates master branch' do
        service.execute('my-feature', 'master')

        expect(project.repository.branch_exists?('master')).to be_truthy
      end

      it 'creates my-feature branch' do
        service.execute('my-feature', 'master')

        expect(project.repository.branch_exists?('my-feature')).to be_truthy
      end
    end

    context 'when creating a branch fails' do
      let(:project) { create(:project_empty_repo) }

      before do
        allow(project.repository).to receive(:add_branch).and_return(false)
      end

      it 'returns an error with the branch name' do
        result = service.execute('my-feature', 'master')

        expect(result[:status]).to eq(:error)
        expect(result[:message]).to eq("Invalid reference name: my-feature")
      end
    end
  end
end