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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/ci/pipeline_schedule_spec.rb')
-rw-r--r--spec/models/ci/pipeline_schedule_spec.rb60
1 files changed, 60 insertions, 0 deletions
diff --git a/spec/models/ci/pipeline_schedule_spec.rb b/spec/models/ci/pipeline_schedule_spec.rb
index 0f4f148775e..3c295fb345b 100644
--- a/spec/models/ci/pipeline_schedule_spec.rb
+++ b/spec/models/ci/pipeline_schedule_spec.rb
@@ -228,6 +228,66 @@ RSpec.describe Ci::PipelineSchedule do
end
end
+ describe '#for_tag?' do
+ context 'when the target is a tag' do
+ before do
+ subject.ref = 'refs/tags/v1.0'
+ end
+
+ it { expect(subject.for_tag?).to eq(true) }
+ end
+
+ context 'when the target is a branch' do
+ before do
+ subject.ref = 'refs/heads/main'
+ end
+
+ it { expect(subject.for_tag?).to eq(false) }
+ end
+
+ context 'when there is no ref' do
+ before do
+ subject.ref = nil
+ end
+
+ it { expect(subject.for_tag?).to eq(false) }
+ end
+ end
+
+ describe '#ref_for_display' do
+ context 'when the target is a tag' do
+ before do
+ subject.ref = 'refs/tags/v1.0'
+ end
+
+ it { expect(subject.ref_for_display).to eq('v1.0') }
+ end
+
+ context 'when the target is a branch' do
+ before do
+ subject.ref = 'refs/heads/main'
+ end
+
+ it { expect(subject.ref_for_display).to eq('main') }
+ end
+
+ context 'when the ref is ambiguous' do
+ before do
+ subject.ref = 'release-2.8'
+ end
+
+ it { expect(subject.ref_for_display).to eq('release-2.8') }
+ end
+
+ context 'when there is no ref' do
+ before do
+ subject.ref = nil
+ end
+
+ it { expect(subject.ref_for_display).to eq(nil) }
+ end
+ end
+
context 'loose foreign key on ci_pipeline_schedules.project_id' do
it_behaves_like 'cleanup by a loose foreign key' do
let!(:parent) { create(:project) }