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

persistent_ref_spec.rb « ci « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be447476e2cd0f81111e2c03bbac9e4ceaa016ee (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# frozen_string_literal: true

require 'spec_helper'

describe Ci::PersistentRef do
  it 'cleans up persistent refs after pipeline finished' do
    pipeline = create(:ci_pipeline, :running)

    expect(pipeline.persistent_ref).to receive(:delete).once

    pipeline.succeed!
  end

  context '#exist?' do
    subject { pipeline.persistent_ref.exist? }

    let(:pipeline) { create(:ci_pipeline, sha: sha, project: project) }
    let(:project) { create(:project, :repository) }
    let(:sha) { project.repository.commit.sha }

    context 'when a persistent ref does not exist' do
      it { is_expected.to eq(false) }
    end

    context 'when a persistent ref exists' do
      before do
        pipeline.persistent_ref.create
      end

      it { is_expected.to eq(true) }
    end
  end

  context '#create' do
    subject { pipeline.persistent_ref.create }

    let(:pipeline) { create(:ci_pipeline, sha: sha, project: project) }
    let(:project) { create(:project, :repository) }
    let(:sha) { project.repository.commit.sha }

    context 'when a persistent ref does not exist' do
      it 'creates a persistent ref' do
        subject

        expect(pipeline.persistent_ref).to be_exist
      end

      context 'when sha does not exist in the repository' do
        let(:sha) { 'not-exist' }

        it 'fails to create a persistent ref' do
          subject

          expect(pipeline.persistent_ref).not_to be_exist
        end
      end
    end

    context 'when a persistent ref already exists' do
      before do
        pipeline.persistent_ref.create
      end

      it 'does not create a persistent ref' do
        expect(project.repository).not_to receive(:create_ref)

        subject
      end
    end
  end

  context '#delete' do
    subject { pipeline.persistent_ref.delete }

    let(:pipeline) { create(:ci_pipeline, sha: sha, project: project) }
    let(:project) { create(:project, :repository) }
    let(:sha) { project.repository.commit.sha }

    context 'when a persistent ref exists' do
      before do
        pipeline.persistent_ref.create
      end

      it 'deletes the ref' do
        expect { subject }.to change { pipeline.persistent_ref.exist? }
                          .from(true).to(false)
      end
    end

    context 'when a persistent ref does not exist' do
      it 'does not raise an error' do
        expect { subject }.not_to raise_error
      end
    end
  end
end