summaryrefslogtreecommitdiff
path: root/spec/finders/pipelines_finder_spec.rb
blob: a218f315f792cfe2a305c7e23e4409e58a104b31 (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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
require 'spec_helper'

describe PipelinesFinder do
  let(:user1) { create(:user) }
  let(:user2) { create(:user) }
  let(:project) { create(:project, :repository) }

  before do
    create(:ci_pipeline, project: project, user: user1, ref: 'v1.0.0', tag: true)
    create(:ci_pipeline, project: project, user: user1, status: 'created')
    create(:ci_pipeline, project: project, user: user1, status: 'pending')
    create(:ci_pipeline, project: project, user: user1, status: 'running')
    create(:ci_pipeline, project: project, user: user1, status: 'success')
    create(:ci_pipeline, project: project, user: user2, status: 'failed')
    create(:ci_pipeline, project: project, user: user2, status: 'canceled')
    create(:ci_pipeline, project: project, user: user2, status: 'skipped')
    create(:ci_pipeline, project: project, user: user2, yaml_errors: 'Syntax error')
  end

  subject { described_class.new(project, params).execute }

  describe "#execute" do
    context 'when nothing is passed' do
      let(:params) { {} }

      it 'returns all pipelines' do
        expect(subject).to match_array(Ci::Pipeline.all)
      end

      it 'orders in descending order on ID' do
        expect(subject).to eq(Ci::Pipeline.order(id: :desc))
      end
    end

    context 'when scope is passed' do
      context 'when scope is running' do
        let(:params) { { scope: 'running' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.running)
        end
      end

      context 'when scope is pending' do
        let(:params) { { scope: 'pending' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.pending)
        end
      end

      context 'when scope is finished' do
        let(:params) { { scope: 'finished' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.finished)
        end
      end

      context 'when scope is branches' do
        let(:params) { { scope: 'branches' } }

        it 'returns matched pipelines' do
          expect(subject).to eq([Ci::Pipeline.where(tag: false).last])
        end
      end

      context 'when scope is tags' do
        let(:params) { { scope: 'tags' } }

        it 'returns matched pipelines' do
          expect(subject).to eq([Ci::Pipeline.where(tag: true).last])
        end
      end
    end

    context 'when status is passed' do
      context 'when status is running' do
        let(:params) { { status: 'running' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.running)
        end
      end

      context 'when status is pending' do
        let(:params) { { status: 'pending' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.pending)
        end
      end

      context 'when status is success' do
        let(:params) { { status: 'success' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.success)
        end
      end

      context 'when status is failed' do
        let(:params) { { status: 'failed' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.failed)
        end
      end

      context 'when status is canceled' do
        let(:params) { { status: 'canceled' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.canceled)
        end
      end

      context 'when status is skipped' do
        let(:params) { { status: 'skipped' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.skipped)
        end
      end
    end 
    
    context 'when ref is passed' do
      context 'when ref exists' do
        let(:params) { { ref: 'master' } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.where(ref: 'master'))
        end
      end

      context 'when ref does not exist' do
        let(:params) { { ref: 'invalid-ref' } }

        it 'returns empty' do
          expect(subject).to be_empty
        end
      end
    end

    context 'when name is passed' do
      context 'when name exists' do
        let(:params) { { name: user1.name } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.where(user: user1))
        end
      end

      context 'when name does not exist' do
        let(:params) { { name: 'invalid-name' } }

        it 'returns empty' do
          expect(subject).to be_empty
        end
      end
    end

    context 'when username is passed' do
      context 'when username exists' do
        let(:params) { { username: user1.username } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.where(user: user1))
        end
      end

      context 'when username does not exist' do
        let(:params) { { username: 'invalid-username' } }

        it 'returns empty' do
          expect(subject).to be_empty
        end
      end
    end

    context 'when yaml_errors is passed' do
      context 'when yaml_errors is true' do
        let(:params) { { yaml_errors: true } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.where("yaml_errors IS NOT NULL"))
        end
      end

      context 'when yaml_errors is false' do
        let(:params) { { yaml_errors: false } }

        it 'returns matched pipelines' do
          expect(subject).to match_array(Ci::Pipeline.where("yaml_errors IS NULL"))
        end
      end

      context 'when yaml_errors is invalid' do
        let(:params) { { yaml_errors: "UnexpectedValue" } }

        it 'returns all pipelines' do
          expect(subject).to match_array(Ci::Pipeline.all)
        end
      end
    end

    context 'when order_by and sort are passed' do
      context 'when order_by and sort are valid' do
        let(:params) { { order_by: 'created_at', sort: 'asc' } }

        it 'sorts pipelines by default' do
          expect(subject).to eq(Ci::Pipeline.order(created_at: :asc))
        end
      end

      context 'when order_by is invalid' do
        let(:params) { { order_by: 'invalid_column', sort: 'desc' } }

        it 'sorts pipelines with default order_by (id:)' do
          expect(subject).to eq(Ci::Pipeline.order(id: :desc))
        end
      end

      context 'when sort is invalid' do
        let(:params) { { order_by: 'created_at', sort: 'invalid_sort' } }

        it 'sorts pipelines with default sort (:desc)' do
          expect(subject).to eq(Ci::Pipeline.order(created_at: :desc))
        end
      end

      context 'when both are nil' do
        let(:params) { { order_by: nil, sort: nil } }

        it 'sorts pipelines by default' do
          expect(subject).to eq(Ci::Pipeline.order(id: :desc))
        end
      end
    end
  end
end