Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sorted_spec.rb « collection « variables « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 954273fd41e3bc535a402178ee7f3bac926449cc (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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Variables::Collection::Sorted do
  describe '#errors' do
    context 'when FF :variable_inside_variable is disabled' do
      let_it_be(:project_with_flag_disabled) { create(:project) }
      let_it_be(:project_with_flag_enabled) { create(:project) }

      before do
        stub_feature_flags(variable_inside_variable: [project_with_flag_enabled])
      end

      context 'table tests' do
        using RSpec::Parameterized::TableSyntax

        where do
          {
            "empty array": {
              variables: []
            },
            "simple expansions": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable2', value: 'result' },
                { key: 'variable3', value: 'key$variable$variable2' }
              ]
            },
            "complex expansion": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable2', value: 'key${variable}' }
              ]
            },
            "complex expansions with missing variable for Windows": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable3', value: 'key%variable%%variable2%' }
              ]
            },
            "out-of-order variable reference": {
              variables: [
                { key: 'variable2', value: 'key${variable}' },
                { key: 'variable', value: 'value' }
              ]
            },
            "array with cyclic dependency": {
              variables: [
                { key: 'variable', value: '$variable2' },
                { key: 'variable2', value: '$variable3' },
                { key: 'variable3', value: 'key$variable$variable2' }
              ]
            }
          }
        end

        with_them do
          subject { Gitlab::Ci::Variables::Collection::Sorted.new(variables, project_with_flag_disabled) }

          it 'does not report error' do
            expect(subject.errors).to eq(nil)
          end

          it 'valid? reports true' do
            expect(subject.valid?).to eq(true)
          end
        end
      end
    end

    context 'when FF :variable_inside_variable is enabled' do
      let_it_be(:project_with_flag_disabled) { create(:project) }
      let_it_be(:project_with_flag_enabled) { create(:project) }

      before do
        stub_feature_flags(variable_inside_variable: [project_with_flag_enabled])
      end

      context 'table tests' do
        using RSpec::Parameterized::TableSyntax

        where do
          {
            "empty array": {
              variables: [],
              validation_result: nil
            },
            "simple expansions": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable2', value: 'result' },
                { key: 'variable3', value: 'key$variable$variable2' }
              ],
              validation_result: nil
            },
            "cyclic dependency": {
              variables: [
                { key: 'variable', value: '$variable2' },
                { key: 'variable2', value: '$variable3' },
                { key: 'variable3', value: 'key$variable$variable2' }
              ],
              validation_result: 'circular variable reference detected: ["variable", "variable2", "variable3"]'
            }
          }
        end

        with_them do
          subject { Gitlab::Ci::Variables::Collection::Sorted.new(variables, project_with_flag_enabled) }

          it 'errors matches expected validation result' do
            expect(subject.errors).to eq(validation_result)
          end

          it 'valid? matches expected validation result' do
            expect(subject.valid?).to eq(validation_result.nil?)
          end
        end
      end
    end
  end

  describe '#sort' do
    context 'when FF :variable_inside_variable is disabled' do
      before do
        stub_feature_flags(variable_inside_variable: false)
      end

      context 'table tests' do
        using RSpec::Parameterized::TableSyntax

        where do
          {
            "empty array": {
              variables: []
            },
            "simple expansions": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable2', value: 'result' },
                { key: 'variable3', value: 'key$variable$variable2' }
              ]
            },
            "complex expansion": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable2', value: 'key${variable}' }
              ]
            },
            "complex expansions with missing variable for Windows": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable3', value: 'key%variable%%variable2%' }
              ]
            },
            "out-of-order variable reference": {
              variables: [
                { key: 'variable2', value: 'key${variable}' },
                { key: 'variable', value: 'value' }
              ]
            },
            "array with cyclic dependency": {
              variables: [
                { key: 'variable', value: '$variable2' },
                { key: 'variable2', value: '$variable3' },
                { key: 'variable3', value: 'key$variable$variable2' }
              ]
            }
          }
        end

        with_them do
          let_it_be(:project) { create(:project) }
          subject { Gitlab::Ci::Variables::Collection::Sorted.new(variables, project) }

          it 'does not expand variables' do
            expect(subject.sort).to eq(variables)
          end
        end
      end
    end

    context 'when FF :variable_inside_variable is enabled' do
      before do
        stub_licensed_features(group_saml_group_sync: true)
        stub_feature_flags(saml_group_links: true)
        stub_feature_flags(variable_inside_variable: true)
      end

      context 'table tests' do
        using RSpec::Parameterized::TableSyntax

        where do
          {
            "empty array": {
              variables: [],
              result: []
            },
            "simple expansions, no reordering needed": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable2', value: 'result' },
                { key: 'variable3', value: 'key$variable$variable2' }
              ],
              result: %w[variable variable2 variable3]
            },
            "complex expansion, reordering needed": {
              variables: [
                { key: 'variable2', value: 'key${variable}' },
                { key: 'variable', value: 'value' }
              ],
              result: %w[variable variable2]
            },
            "unused variables": {
              variables: [
                { key: 'variable', value: 'value' },
                { key: 'variable4', value: 'key$variable$variable3' },
                { key: 'variable2', value: 'result2' },
                { key: 'variable3', value: 'result3' }
              ],
              result: %w[variable variable3 variable4 variable2]
            },
            "missing variable": {
              variables: [
                { key: 'variable2', value: 'key$variable' }
              ],
              result: %w[variable2]
            },
            "complex expansions with missing variable": {
              variables: [
                { key: 'variable4', value: 'key${variable}${variable2}${variable3}' },
                { key: 'variable', value: 'value' },
                { key: 'variable3', value: 'value3' }
              ],
              result: %w[variable variable3 variable4]
            },
            "cyclic dependency causes original array to be returned": {
              variables: [
                { key: 'variable2', value: '$variable3' },
                { key: 'variable3', value: 'key$variable$variable2' },
                { key: 'variable', value: '$variable2' }
              ],
              result: %w[variable2 variable3 variable]
            }
          }
        end

        with_them do
          let_it_be(:project) { create(:project) }
          subject { Gitlab::Ci::Variables::Collection::Sorted.new(variables, project) }

          it 'sort returns correctly sorted variables' do
            expect(subject.sort.map { |var| var[:key] }).to eq(result)
          end
        end
      end
    end
  end
end