debian-mirror-gitlab/spec/models/ci/persistent_ref_spec.rb

97 lines
2.5 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Ci::PersistentRef do
2019-12-21 20:55:43 +05:30
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
2020-03-13 15:44:24 +05:30
describe '#exist?' do
2019-12-21 20:55:43 +05:30
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
2020-11-24 15:15:51 +05:30
pipeline.persistent_ref.create # rubocop: disable Rails/SaveBang
2019-12-21 20:55:43 +05:30
end
it { is_expected.to eq(true) }
end
end
2020-03-13 15:44:24 +05:30
describe '#create' do
2020-11-24 15:15:51 +05:30
subject { pipeline.persistent_ref.create } # rubocop: disable Rails/SaveBang
2019-12-21 20:55:43 +05:30
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
2020-11-24 15:15:51 +05:30
pipeline.persistent_ref.create # rubocop: disable Rails/SaveBang
2019-12-21 20:55:43 +05:30
end
2020-01-01 13:55:28 +05:30
it 'overwrites a persistent ref' do
expect(project.repository).to receive(:create_ref).and_call_original
2019-12-21 20:55:43 +05:30
subject
end
end
end
2020-03-13 15:44:24 +05:30
describe '#delete' do
2019-12-21 20:55:43 +05:30
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
2020-11-24 15:15:51 +05:30
pipeline.persistent_ref.create # rubocop: disable Rails/SaveBang
2019-12-21 20:55:43 +05:30
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