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

pipeline_schedules_finder_spec.rb « ci « finders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57842bbecd7dce00ea78fd1c68cb34d3d5bc32eb (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::PipelineSchedulesFinder do
  let(:project) { create(:project) }

  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 } }

      it 'selects all pipeline schedules' do
        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