summaryrefslogtreecommitdiff
path: root/spec/helpers/ci/pipelines_helper_spec.rb
blob: c473e1e4ab6972b654ec1ad26d26ef8079be46bc (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::PipelinesHelper do
  include Devise::Test::ControllerHelpers

  describe 'pipeline_warnings' do
    let(:pipeline) { double(:pipeline, warning_messages: warning_messages) }

    subject { helper.pipeline_warnings(pipeline) }

    context 'when pipeline has no warnings' do
      let(:warning_messages) { [] }

      it 'is empty' do
        expect(subject).to be_nil
      end
    end

    context 'when pipeline has warnings' do
      let(:warning_messages) { [double(content: 'Warning 1'), double(content: 'Warning 2')] }

      it 'returns a warning callout box' do
        expect(subject).to have_css 'div.bs-callout-warning'
        expect(subject).to include '2 warning(s) found:'
      end

      it 'lists the the warnings' do
        expect(subject).to include 'Warning 1'
        expect(subject).to include 'Warning 2'
      end
    end
  end

  describe 'warning_header' do
    subject { helper.warning_header(count) }

    context 'when warnings are more than max cap' do
      let(:count) { 30 }

      it 'returns 30 warning(s) found: showing first 25' do
        expect(subject).to eq('30 warning(s) found: showing first 25')
      end
    end

    context 'when warnings are less than max cap' do
      let(:count) { 15 }

      it 'returns 15 warning(s) found' do
        expect(subject).to eq('15 warning(s) found:')
      end
    end
  end

  describe 'has_gitlab_ci?' do
    using RSpec::Parameterized::TableSyntax

    subject(:has_gitlab_ci?) { helper.has_gitlab_ci?(project) }

    let(:project) { double(:project, has_ci?: has_ci?, builds_enabled?: builds_enabled?) }

    where(:builds_enabled?, :has_ci?, :result) do
      true                | true    | true
      true                | false   | false
      false               | true    | false
      false               | false   | false
    end

    with_them do
      it { expect(has_gitlab_ci?).to eq(result) }
    end
  end

  describe 'has_pipeline_badges?' do
    let(:pipeline) { create(:ci_empty_pipeline) }

    subject { helper.has_pipeline_badges?(pipeline) }

    context 'when pipeline has a badge' do
      before do
        pipeline.drop!(:config_error)
      end

      it 'shows pipeline badges' do
        expect(subject).to eq(true)
      end
    end

    context 'when pipeline has no badges' do
      it 'shows pipeline badges' do
        expect(subject).to eq(false)
      end
    end
  end

  describe '#pipelines_list_data' do
    let_it_be(:project) { create(:project) }

    subject(:data) { helper.pipelines_list_data(project, 'list_url') }

    before do
      allow(helper).to receive(:can?).and_return(true)
    end

    it 'has the expected keys' do
      expect(subject.keys).to match_array([:endpoint,
                                           :project_id,
                                           :default_branch_name,
                                           :params,
                                           :artifacts_endpoint,
                                           :artifacts_endpoint_placeholder,
                                           :pipeline_schedule_url,
                                           :empty_state_svg_path,
                                           :error_state_svg_path,
                                           :no_pipelines_svg_path,
                                           :can_create_pipeline,
                                           :new_pipeline_path,
                                           :ci_lint_path,
                                           :reset_cache_path,
                                           :has_gitlab_ci,
                                           :pipeline_editor_path,
                                           :suggested_ci_templates,
                                           :ci_runner_settings_path])
    end

    describe 'the `any_runners_available` attribute' do
      subject { data[:any_runners_available] }

      context 'when the `runners_availability_section` experiment variant is control' do
        before do
          stub_experiments(runners_availability_section: :control)
        end

        it { is_expected.to be_nil }
      end

      context 'when the `runners_availability_section` experiment variant is candidate' do
        before do
          stub_experiments(runners_availability_section: :candidate)
        end

        context 'when there are no runners' do
          it { is_expected.to eq('false') }
        end

        context 'when there are runners' do
          let!(:runner) { create(:ci_runner, :project, projects: [project]) }

          it { is_expected.to eq('true') }
        end
      end
    end

    describe 'the `registration_token` attribute' do
      subject { data[:registration_token] }

      describe 'when the project is eligible for the `ios_specific_templates` experiment' do
        let_it_be(:project) { create(:project, :auto_devops_disabled) }
        let_it_be(:user) { create(:user) }

        before do
          allow(helper).to receive(:current_user).and_return(user)
          project.add_developer(user)
          create(:project_setting, project: project, target_platforms: %w(ios))
        end

        context 'when the `ios_specific_templates` experiment variant is control' do
          before do
            stub_experiments(ios_specific_templates: :control)
          end

          it { is_expected.to be_nil }
        end

        context 'when the `ios_specific_templates` experiment variant is candidate' do
          before do
            stub_experiments(ios_specific_templates: :candidate)
          end

          context 'when the user cannot register project runners' do
            before do
              allow(helper).to receive(:can?).with(user, :register_project_runners, project).and_return(false)
            end

            it { is_expected.to be_nil }
          end

          context 'when the user can register project runners' do
            it { is_expected.to eq(project.runners_token) }
          end
        end
      end
    end
  end
end