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

process_spec.rb « pipeline « chain « pipeline « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3885cea2d1bd6ca07fda743fdf17716d69e9b015 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Pipeline::Chain::Pipeline::Process do
  let_it_be(:project) { build(:project) }
  let_it_be(:user) { build(:user) }
  let_it_be(:pipeline) { build(:ci_pipeline, project: project, id: 42) }

  let_it_be(:command) do
    Gitlab::Ci::Pipeline::Chain::Command.new(project: project, current_user: user)
  end

  let(:step) { described_class.new(pipeline, command) }

  describe '#perform!' do
    subject(:perform) { step.perform! }

    it 'schedules a job to process the pipeline' do
      expect(Ci::InitialPipelineProcessWorker)
        .to receive(:perform_async)
        .with(42)

      perform
    end
  end

  describe '#break?' do
    it { expect(step.break?).to be_falsey }
  end
end