forked from puppetlabs/puppetlabs-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapache_parameters_spec.rb
456 lines (400 loc) · 12.3 KB
/
apache_parameters_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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
require 'spec_helper_acceptance'
require_relative './version.rb'
describe 'apache parameters', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
# Currently this test only does something on FreeBSD.
describe 'default_confd_files => false' do
it 'doesnt do anything' do
pp = "class { 'apache': default_confd_files => false }"
apply_manifest(pp, :catch_failures => true)
end
if fact('osfamily') == 'FreeBSD'
describe file("#{$confd_dir}/no-accf.conf.erb") do
it { is_expected.not_to be_file }
end
end
end
describe 'default_confd_files => true' do
it 'copies conf.d files' do
pp = "class { 'apache': default_confd_files => true }"
apply_manifest(pp, :catch_failures => true)
end
if fact('osfamily') == 'FreeBSD'
describe file("#{$confd_dir}/no-accf.conf.erb") do
it { is_expected.to be_file }
end
end
end
describe 'when set adds a listen statement' do
it 'applys cleanly' do
pp = "class { 'apache': ip => '10.1.1.1', service_ensure => stopped }"
apply_manifest(pp, :catch_failures => true)
end
describe file($ports_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'Listen 10.1.1.1' }
end
end
describe 'service tests => true' do
it 'starts the service' do
pp = <<-EOS
class { 'apache':
service_enable => true,
service_ensure => running,
}
EOS
apply_manifest(pp, :catch_failures => true)
end
describe service($service_name) do
it { is_expected.to be_running }
it { is_expected.to be_enabled }
end
end
describe 'service tests => false' do
it 'stops the service' do
pp = <<-EOS
class { 'apache':
service_enable => false,
service_ensure => stopped,
}
EOS
apply_manifest(pp, :catch_failures => true)
end
describe service($service_name) do
it { is_expected.not_to be_running }
it { is_expected.not_to be_enabled }
end
end
describe 'purge parameters => false' do
it 'applies cleanly' do
pp = <<-EOS
class { 'apache':
purge_configs => false,
purge_vhost_dir => false,
vhost_dir => "#{$confd_dir}.vhosts"
}
EOS
shell("touch #{$confd_dir}/test.conf")
shell("mkdir -p #{$confd_dir}.vhosts && touch #{$confd_dir}.vhosts/test.conf")
apply_manifest(pp, :catch_failures => true)
end
# Ensure the files didn't disappear.
describe file("#{$confd_dir}/test.conf") do
it { is_expected.to be_file }
end
describe file("#{$confd_dir}.vhosts/test.conf") do
it { is_expected.to be_file }
end
end
if fact('osfamily') != 'Debian'
describe 'purge parameters => true' do
it 'applies cleanly' do
pp = <<-EOS
class { 'apache':
purge_configs => true,
purge_vhost_dir => true,
vhost_dir => "#{$confd_dir}.vhosts"
}
EOS
shell("touch #{$confd_dir}/test.conf")
shell("mkdir -p #{$confd_dir}.vhosts && touch #{$confd_dir}.vhosts/test.conf")
apply_manifest(pp, :catch_failures => true)
end
# File should be gone
describe file("#{$confd_dir}/test.conf") do
it { is_expected.not_to be_file }
end
describe file("#{$confd_dir}.vhosts/test.conf") do
it { is_expected.not_to be_file }
end
end
end
describe 'serveradmin' do
it 'applies cleanly' do
pp = "class { 'apache': serveradmin => '[email protected]' }"
apply_manifest(pp, :catch_failures => true)
end
describe file($vhost) do
it { is_expected.to be_file }
it { is_expected.to contain 'ServerAdmin [email protected]' }
end
end
describe 'sendfile' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': sendfile => 'On' }"
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'EnableSendfile On' }
end
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': sendfile => 'Off' }"
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'Sendfile Off' }
end
end
describe 'error_documents' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': error_documents => true }"
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'Alias /error/' }
end
end
describe 'timeout' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': timeout => '1234' }"
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'Timeout 1234' }
end
end
describe 'httpd_dir' do
describe 'setup' do
it 'applies cleanly' do
pp = <<-EOS
class { 'apache': httpd_dir => '/tmp', service_ensure => stopped }
include 'apache::mod::mime'
EOS
apply_manifest(pp, :catch_failures => true)
end
end
describe file("#{$mod_dir}/mime.conf") do
it { is_expected.to be_file }
it { is_expected.to contain 'AddLanguage eo .eo' }
end
end
describe 'server_root' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': server_root => '/tmp/root', service_ensure => stopped }"
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'ServerRoot "/tmp/root"' }
end
end
describe 'confd_dir' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': confd_dir => '/tmp/root', service_ensure => stopped }"
apply_manifest(pp, :catch_failures => true)
end
end
if $apache_version == '2.4'
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'IncludeOptional "/tmp/root/*.conf"' }
end
else
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'Include "/tmp/root/*.conf"' }
end
end
end
describe 'conf_template' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': conf_template => 'another/test.conf.erb', service_ensure => stopped }"
shell("mkdir -p #{default['distmoduledir']}/another/templates")
shell("echo 'testcontent' >> #{default['distmoduledir']}/another/templates/test.conf.erb")
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'testcontent' }
end
end
describe 'servername' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': servername => 'test.server', service_ensure => stopped }"
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'ServerName "test.server"' }
end
end
describe 'user' do
describe 'setup' do
it 'applies cleanly' do
pp = <<-EOS
class { 'apache':
manage_user => true,
manage_group => true,
user => 'testweb',
group => 'testweb',
}
EOS
apply_manifest(pp, :catch_failures => true)
end
end
describe user('testweb') do
it { is_expected.to exist }
it { is_expected.to belong_to_group 'testweb' }
end
describe group('testweb') do
it { is_expected.to exist }
end
end
describe 'logformats' do
describe 'setup' do
it 'applies cleanly' do
pp = <<-EOS
class { 'apache':
log_formats => {
'vhost_common' => '%v %h %l %u %t \\\"%r\\\" %>s %b',
'vhost_combined' => '%v %h %l %u %t \\\"%r\\\" %>s %b \\\"%{Referer}i\\\" \\\"%{User-agent}i\\\"',
}
}
EOS
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common' }
it { is_expected.to contain 'LogFormat "%v %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" vhost_combined' }
end
end
describe 'keepalive' do
describe 'setup' do
it 'applies cleanly' do
pp = "class { 'apache': keepalive => 'On', keepalive_timeout => '30', max_keepalive_requests => '200' }"
apply_manifest(pp, :catch_failures => true)
end
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'KeepAlive On' }
it { is_expected.to contain 'KeepAliveTimeout 30' }
it { is_expected.to contain 'MaxKeepAliveRequests 200' }
end
end
describe 'logging' do
describe 'setup' do
it 'applies cleanly' do
pp = <<-EOS
if $::osfamily == 'RedHat' and $::selinux == 'true' {
$semanage_package = $::operatingsystemmajrelease ? {
'5' => 'policycoreutils',
default => 'policycoreutils-python',
}
package { $semanage_package: ensure => installed }
exec { 'set_apache_defaults':
command => 'semanage fcontext -a -t httpd_log_t "/apache_spec(/.*)?"',
path => '/bin:/usr/bin/:/sbin:/usr/sbin',
require => Package[$semanage_package],
}
exec { 'restorecon_apache':
command => 'restorecon -Rv /apache_spec',
path => '/bin:/usr/bin/:/sbin:/usr/sbin',
before => Service['httpd'],
require => Class['apache'],
}
}
file { '/apache_spec': ensure => directory, }
class { 'apache': logroot => '/apache_spec' }
EOS
apply_manifest(pp, :catch_failures => true)
end
end
describe file("/apache_spec/#{$error_log}") do
it { is_expected.to be_file }
end
end
describe 'ports_file' do
it 'applys cleanly' do
pp = <<-EOS
file { '/apache_spec': ensure => directory, }
class { 'apache':
ports_file => '/apache_spec/ports_file',
ip => '10.1.1.1',
service_ensure => stopped
}
EOS
apply_manifest(pp, :catch_failures => true)
end
describe file('/apache_spec/ports_file') do
it { is_expected.to be_file }
it { is_expected.to contain 'Listen 10.1.1.1' }
end
end
describe 'server_tokens' do
it 'applys cleanly' do
pp = <<-EOS
class { 'apache':
server_tokens => 'Minor',
}
EOS
apply_manifest(pp, :catch_failures => true)
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'ServerTokens Minor' }
end
end
describe 'server_signature' do
it 'applys cleanly' do
pp = <<-EOS
class { 'apache':
server_signature => 'testsig',
service_ensure => stopped,
}
EOS
apply_manifest(pp, :catch_failures => true)
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'ServerSignature testsig' }
end
end
describe 'trace_enable' do
it 'applys cleanly' do
pp = <<-EOS
class { 'apache':
trace_enable => 'Off',
}
EOS
apply_manifest(pp, :catch_failures => true)
end
describe file($conf_file) do
it { is_expected.to be_file }
it { is_expected.to contain 'TraceEnable Off' }
end
end
describe 'package_ensure' do
it 'applys cleanly' do
pp = <<-EOS
class { 'apache':
package_ensure => present,
}
EOS
apply_manifest(pp, :catch_failures => true)
end
describe package($package_name) do
it { is_expected.to be_installed }
end
end
end