summaryrefslogtreecommitdiff
path: root/spec/services/lfs/lock_file_service_spec.rb
blob: 3e58eea25016dc6320dd8ac911e11fa090006b1b (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
require 'spec_helper'

describe Lfs::LockFileService do
  let(:project)      { create(:project) }
  let(:current_user) { create(:user) }

  subject { described_class.new(project, current_user, params) }

  describe '#execute' do
    let(:params) { { path: 'README.md' } }

    context 'when not authorized' do
      it "doesn't succeed" do
        result = subject.execute

        expect(result[:status]).to eq(:error)
        expect(result[:http_status]).to eq(403)
        expect(result[:message]).to eq('You have no permissions')
      end
    end

    context 'when authorized' do
      before do
        project.add_developer(current_user)
      end

      context 'with an existent lock' do
        let!(:lock) { create(:lfs_file_lock, project: project) }

        it "doesn't succeed" do
          expect(subject.execute[:status]).to eq(:error)
        end

        it "doesn't create the Lock" do
          expect do
            subject.execute
          end.not_to change { LfsFileLock.count }
        end
      end

      context 'without an existent lock' do
        it "succeeds" do
          expect(subject.execute[:status]).to eq(:success)
        end

        it "creates the Lock" do
          expect do
            subject.execute
          end.to change { LfsFileLock.count }.by(1)
        end
      end

      context 'when an error is raised' do
        it "doesn't succeed" do
          allow_any_instance_of(described_class).to receive(:create_lock!).and_raise(StandardError)

          expect(subject.execute[:status]).to eq(:error)
        end
      end
    end
  end
end