forked from rodjek/puppet-lint
-
Notifications
You must be signed in to change notification settings - Fork 13
/
variable_scope_spec.rb
333 lines (289 loc) · 7.19 KB
/
variable_scope_spec.rb
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
require 'spec_helper'
describe 'variable_scope' do
let(:msg) { 'top-scope variable being used without an explicit namespace' }
context 'class with no variables declared accessing top scope' do
let(:code) do
<<-END
class foo {
$bar = $baz
}
END
end
it 'only detects a single problem' do
expect(problems).to have(1).problem
end
it 'creates a warning' do
expect(problems).to contain_warning(msg).on_line(2).in_column(18)
end
end
context 'class with no variables declared accessing top scope explicitly' do
let(:code) do
<<-END
class foo {
$bar = $::baz
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'class with no variables declared accessing local array index' do
let(:code) do
<<-END
class foo {
$bar = ['one', 'two', 'three']
$baz = $bar[1]
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'class with no variables declared accessing local hash key' do
let(:code) do
<<-END
class foo {
$bar = {
'one' => 1,
'two' => 2,
'three' => 3,
}
$baz = $bar['two']
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'class with variables declared accessing local scope' do
let(:code) do
<<-END
class foo {
$bar = 1
$baz = $bar
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'class with parameters accessing local scope' do
let(:code) do
<<-END
class foo($bar='UNSET') {
$baz = $bar
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'defined type with no variables declared accessing top scope' do
let(:code) do
<<-END
define foo() {
$bar = $fqdn
}
END
end
it 'only detects a single problem' do
expect(problems).to have(1).problem
end
it 'creates a warning' do
expect(problems).to contain_warning(msg).on_line(2).in_column(18)
end
end
context 'defined type with no variables declared accessing top scope explicitly' do
let(:code) do
<<-END
define foo() {
$bar = $::fqdn
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context '$name should be auto defined' do
let(:code) do
<<-END
define foo() {
$bar = $name
$baz = $title
$gronk = $module_name
$meep = $1
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'define with required parameter' do
let(:code) do
<<-END
define tomcat::base (
$max_perm_gen,
$owner = hiera('app_user'),
$system_properties = {},
) { }
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'future parser blocks' do
let(:code) do
<<-END
class foo() {
$foo = {1=>2, 3=>4}
$foo.each |$a, $b| {
$a # should cause no warnings
$c # top-scope variable warning
}
$b # top-scope variable warning
$foo.each |$d| {
$d[1] # should cause no warnings
}
}
END
end
it 'only detects two problems' do
expect(problems).to have(2).problem
end
it 'creates two warnings' do
expect(problems).to contain_warning(msg).on_line(7).in_column(11)
expect(problems).to contain_warning(msg).on_line(5).in_column(13)
end
end
context 'nested future parser blocks' do
let(:code) do
<<-END
class foo() {
$foo = {1=>2, 3=>4}
$bar = [1, 2, 3]
$foo.each |$k ,$v| {
$k
$v
$x # top-scope warning
$bar.each |$x| {
$k
$v
$x
$p # top-scope warning
}
$x # top-scope warning
}
}
END
end
it 'only detects three problems' do
expect(problems).to have(3).problem
end
it 'creates three warnings' do
expect(problems).to contain_warning(msg).on_line(7).in_column(13)
expect(problems).to contain_warning(msg).on_line(12).in_column(15)
expect(problems).to contain_warning(msg).on_line(14).in_column(13)
end
end
['alias', 'audit', 'before', 'loglevel', 'noop', 'notify', 'require', 'schedule', 'stage', 'subscribe', 'tag'].each do |metaparam|
context "referencing #{metaparam} metaparam value as a variable" do
let(:code) do
<<-END
class foo() {
$#{metaparam}
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
end
context 'support the use of facts and trusted facts for Puppet 3.5 onwards' do
let(:code) do
<<-END
class foo() {
if $facts['osfamily'] == 'redhat' or $trusted['osfamily'] == 'redhat' {
$redhat = true
}
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'multiple left hand variable assign' do
let(:code) do
<<-END
class test {
[$foo, $bar] = something()
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'nested variable assignment' do
let(:code) do
<<-END
class test {
[$foo, [[$bar, $baz], $qux]] = something()
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'function calls inside string interpolation' do
let(:code) do
<<-END
class test {
"${split('1,2,3', ',')}" # split is a function
"${lookup('foo::bar')}" # lookup is a function
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
context 'variables in string interpolation' do
let(:code) do
<<-END
class test {
"${foo.split(',')}" # foo is a top-scope variable
"${::bar.split(',')}"
}
END
end
it 'only detects one problem' do
expect(problems).to have(1).problems
end
it 'creates one warning' do
expect(problems).to contain_warning(msg).on_line(2).in_column(14)
end
end
context 'assigning regex with multiple alternations to variable' do
let(:code) do
<<-END
class gh::issue859 {
$regex = /5|6|7/
}
END
end
it 'does not detect any problems' do
expect(problems).to have(0).problems
end
end
end