summaryrefslogtreecommitdiff
path: root/spec/services/ci/cancel_user_pipelines_service_spec.rb
blob: 12117051b64cfe5d8a7e54a9fc73ea604285dda1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::CancelUserPipelinesService do
  describe '#execute' do
    let(:user) { create(:user) }

    subject { described_class.new.execute(user) }

    context 'when user has running CI pipelines' do
      let(:pipeline) { create(:ci_pipeline, :running, user: user) }
      let!(:build) { create(:ci_build, :running, pipeline: pipeline) }

      it 'cancels all running pipelines and related jobs', :sidekiq_might_not_need_inline do
        subject

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