debian-mirror-gitlab/spec/finders/ci/pipeline_schedules_finder_spec.rb

44 lines
1.2 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe Ci::PipelineSchedulesFinder do
2017-09-10 17:25:29 +05:30
let(:project) { create(:project) }
2017-08-17 22:00:37 +05:30
let!(:active_schedule) { create(:ci_pipeline_schedule, project: project) }
let!(:inactive_schedule) { create(:ci_pipeline_schedule, :inactive, project: project) }
subject { described_class.new(project).execute(params) }
describe "#execute" do
context 'when the scope is nil' do
let(:params) { { scope: nil } }
2019-02-15 15:39:39 +05:30
it 'selects all pipeline schedules' do
2017-08-17 22:00:37 +05:30
expect(subject.count).to be(2)
expect(subject).to include(active_schedule, inactive_schedule)
end
end
context 'when the scope is active' do
let(:params) { { scope: 'active' } }
it 'selects only active pipelines' do
expect(subject.count).to be(1)
expect(subject).to include(active_schedule)
expect(subject).not_to include(inactive_schedule)
end
end
context 'when the scope is inactve' do
let(:params) { { scope: 'inactive' } }
it 'selects only inactive pipelines' do
expect(subject.count).to be(1)
expect(subject).not_to include(active_schedule)
expect(subject).to include(inactive_schedule)
end
end
end
end