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

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

require 'fast_spec_helper'
require 'tsort'

RSpec.describe Gitlab::Ci::YamlProcessor::Dag do
  let(:nodes) { {} }

  subject(:result) { described_class.new(nodes).tsort }

  context 'when it is a regular pipeline' do
    let(:nodes) do
      { 'job_c' => %w(job_b job_d), 'job_d' => %w(job_a), 'job_b' => %w(job_a), 'job_a' => %w() }
    end

    it 'returns ordered jobs' do
      expect(result).to eq(%w(job_a job_b job_d job_c))
    end
  end

  context 'when there is a circular dependency' do
    let(:nodes) do
      { 'job_a' => %w(job_c), 'job_b' => %w(job_a), 'job_c' => %w(job_b) }
    end

    it 'raises TSort::Cyclic' do
      expect { result }.to raise_error(TSort::Cyclic, /topological sort failed/)
    end
  end

  context 'when there are some missing jobs' do
    let(:nodes) do
      { 'job_a' => %w(job_d job_f), 'job_b' => %w(job_a job_c job_e) }
    end

    it 'ignores the missing ones and returns in a valid order' do
      expect(result).to eq(%w(job_d job_f job_a job_c job_e job_b))
    end
  end
end