Welcome to mirror list, hosted at ThFree Co, Russian Federation.

can_move_repository_storage_shared_examples.rb « concerns « models « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85a2c6f14499daf5c39e9076923c03b0b2b3deea (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
# frozen_string_literal: true

RSpec.shared_examples 'can move repository storage' do
  let(:container) { raise NotImplementedError }

  describe '#set_repository_read_only!' do
    it 'makes the repository read-only' do
      expect { container.set_repository_read_only! }
        .to change(container, :repository_read_only?)
        .from(false)
        .to(true)
    end

    it 'raises an error if the project is already read-only' do
      container.set_repository_read_only!

      expect { container.set_repository_read_only! }.to raise_error(described_class::RepositoryReadOnlyError, /already read-only/)
    end

    it 'raises an error when there is an existing git transfer in progress' do
      allow(container).to receive(:git_transfer_in_progress?) { true }

      expect { container.set_repository_read_only! }.to raise_error(described_class::RepositoryReadOnlyError, /in progress/)
    end

    context 'skip_git_transfer_check is true' do
      it 'makes the project read-only when git transfers are in progress' do
        allow(container).to receive(:git_transfer_in_progress?) { true }

        expect { container.set_repository_read_only!(skip_git_transfer_check: true) }
          .to change(container, :repository_read_only?)
          .from(false)
          .to(true)
      end
    end
  end

  describe '#set_repository_writable!' do
    it 'sets repository_read_only to false' do
      expect { container.set_repository_writable! }
        .to change(container, :repository_read_only)
        .from(true).to(false)
    end
  end

  describe '#reference_counter' do
    it 'returns a Gitlab::ReferenceCounter object' do
      expect(Gitlab::ReferenceCounter).to receive(:new).with(container.repository.gl_repository).and_call_original

      result = container.reference_counter(type: container.repository.repo_type)

      expect(result).to be_a Gitlab::ReferenceCounter
    end
  end
end