summaryrefslogtreecommitdiff
path: root/spec/views/projects/pipelines/_stage.html.haml_spec.rb
blob: 10095ad7694dd64285a98bd980b0a08556b9ca33 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
require 'spec_helper'

describe 'projects/pipelines/_stage', :view do
  let(:project) { create(:project, :repository) }
  let(:pipeline) { create(:ci_pipeline, project: project) }
  let(:stage) { build(:ci_stage, pipeline: pipeline) }

  before do
    assign :stage, stage
  end

  context 'when there are only latest builds present' do
    before do
      create(:ci_build, name: 'test:build',
                        stage: stage.name,
                        pipeline: pipeline)
    end

    it 'shows the builds in the stage' do
      render

      expect(rendered).to have_text 'test:build'
    end
  end

  context 'when build belongs to different stage' do
    before do
      create(:ci_build, name: 'test:build',
                        stage: 'other:stage',
                        pipeline: pipeline)
    end

    it 'does not render build' do
      render

      expect(rendered).not_to have_text 'test:build'
    end
  end

  context 'when there are retried builds present' do
    before do
      create_list(:ci_build, 2, name: 'test:build',
                                stage: stage.name,
                                pipeline: pipeline)
    end

    it 'shows only latest builds' do
      render

      expect(rendered).to have_text 'test:build', count: 1
    end
  end

  context 'when there are multiple builds' do
    before do
      HasStatus::AVAILABLE_STATUSES.each do |status|
        create_build(status)
      end
    end

    it 'shows them in order' do
      render

      expect(rendered).to have_text(HasStatus::ORDERED_STATUSES.join(" "))
    end

    def create_build(status)
      create(:ci_build, name: status, status: status,
                        pipeline: pipeline, stage: stage.name)
    end
  end
end