summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/stage/seed_spec.rb
blob: d7e91a5a62cbe7696b7e74b824a8ec693d92a1ba (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'spec_helper'

describe Gitlab::Ci::Stage::Seed do
  let(:pipeline) { create(:ci_empty_pipeline) }

  let(:builds) do
    [{ name: 'rspec' }, { name: 'spinach' }]
  end

  subject do
    described_class.new(pipeline, 'test', builds)
  end

  describe '#stage' do
    it 'returns hash attributes of a stage' do
      expect(subject.stage).to be_a Hash
      expect(subject.stage).to include(:name, :project)
    end
  end

  describe '#builds' do
    it 'returns hash attributes of all builds' do
      expect(subject.builds.size).to eq 2
      expect(subject.builds).to all(include(ref: 'master'))
      expect(subject.builds).to all(include(tag: false))
      expect(subject.builds).to all(include(project: pipeline.project))
      expect(subject.builds)
        .to all(include(trigger_request: pipeline.trigger_requests.first))
    end
  end

  describe '#user=' do
    let(:user) { build(:user) }

    it 'assignes relevant pipeline attributes' do
      subject.user = user

      expect(subject.builds).to all(include(user: user))
    end
  end

  describe '#create!' do
    it 'creates all stages and builds' do
      subject.create!

      expect(pipeline.reload.stages.count).to eq 1
      expect(pipeline.reload.builds.count).to eq 2
      expect(pipeline.builds).to all(satisfy { |job| job.stage_id.present? })
      expect(pipeline.builds).to all(satisfy { |job| job.pipeline.present? })
      expect(pipeline.builds).to all(satisfy { |job| job.project.present? })
      expect(pipeline.stages)
        .to all(satisfy { |stage| stage.pipeline.present? })
      expect(pipeline.stages)
        .to all(satisfy { |stage| stage.project.present? })
    end
  end
end