summaryrefslogtreecommitdiff
path: root/spec/services/ci/abort_project_pipelines_service_spec.rb
blob: 9af909ac2ab767b877f3d5bacf9373a62e664233 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::AbortProjectPipelinesService do
  let_it_be(:project) { create(:project) }
  let_it_be(:pipeline) { create(:ci_pipeline, :running, project: project) }
  let_it_be(:build) { create(:ci_build, :running, pipeline: pipeline) }

  describe '#execute' do
    it 'cancels all running pipelines and related jobs' do
      result = described_class.new.execute(project)

      expect(result).to be_success
      expect(pipeline.reload).to be_canceled
      expect(build.reload).to be_canceled
    end

    it 'avoids N+1 queries' do
      control_count = ActiveRecord::QueryRecorder.new { described_class.new.execute(project) }.count

      pipelines = create_list(:ci_pipeline, 5, :running, project: project)
      create_list(:ci_build, 5, :running, pipeline: pipelines.first)

      expect { described_class.new.execute(project) }.not_to exceed_query_limit(control_count)
    end
  end

  context 'when feature disabled' do
    before do
      stub_feature_flags(abort_deleted_project_pipelines: false)
    end

    it 'does not abort the pipeline' do
      result = described_class.new.execute(project)

      expect(result).to be(nil)
      expect(pipeline.reload).to be_running
      expect(build.reload).to be_running
    end
  end
end