summaryrefslogtreecommitdiff
path: root/spec/finders/pipelines_finder_spec.rb
blob: aa8ad66cdf4eef3b1eb7bc6d0005c849aba8e442 (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
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 'selects all pipelines' do
        expect(subject).to match_array(Ci::Pipeline.all)
      end

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

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

        it 'has only running status' do
          expect(subject).to match_array(Ci::Pipeline.running)
        end
      end

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

        it 'has only pending status' do
          expect(subject).to match_array(Ci::Pipeline.pending)
        end
      end

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

        it 'has only finished status' do
          expect(subject).to match_array(Ci::Pipeline.finished)
        end
      end

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

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

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

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

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

        it 'has only running status' do
          expect(subject).to match_array(Ci::Pipeline.running)
        end
      end

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

        it 'has only pending status' do
          expect(subject).to match_array(Ci::Pipeline.pending)
        end
      end

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

        it 'has only success status' do
          expect(subject).to match_array(Ci::Pipeline.success)
        end
      end

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

        it 'has only failed status' do
          expect(subject).to match_array(Ci::Pipeline.failed)
        end
      end

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

        it 'has only canceled status' do
          expect(subject).to match_array(Ci::Pipeline.canceled)
        end
      end

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

        it 'has only skipped status' do
          expect(subject).to match_array(Ci::Pipeline.skipped)
        end
      end
    end 
    
    context 'when a ref is passed' do
      context 'when a ref exists' do
        let(:params) { { ref: 'master' } }

        it 'selects all pipelines which belong to the ref' do
          expect(subject).to match_array(Ci::Pipeline.where(ref: 'master'))
        end
      end

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

        it 'selects nothing' do
          expect(subject).to be_empty
        end
      end
    end  

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

        it 'selects all pipelines which belong to the username' do
          expect(subject).to match_array(Ci::Pipeline.where(user: user1))
        end
      end

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

        it 'selects nothing' do
          expect(subject).to be_empty
        end
      end
    end  

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

        it 'selects only pipelines have yaml_errors' 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 'selects only pipelines do not have yaml_errors' do
          expect(subject).to match_array(Ci::Pipeline.where("yaml_errors IS NULL"))
        end
      end

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

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

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

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

      context 'when order by created_at desc' do
        let(:params) { { order_by: 'created_at', sort: 'desc' } }

        it 'sorts by created_at desc' do
          expect(subject).to match_array(Ci::Pipeline.order(created_at: :desc))
        end
      end

      context 'when order_by does not exist' do
        let(:params) { { order_by: 'abnormal_column', sort: 'desc' } }

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

      context 'when sort does not exist' do
        let(:params) { { order_by: 'created_at', sort: 'abnormal_sort' } }

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