-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathserver_spec.rb
More file actions
427 lines (364 loc) · 11.7 KB
/
server_spec.rb
File metadata and controls
427 lines (364 loc) · 11.7 KB
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
require 'spec_helper'
describe 'mongodb::server' do
shared_examples 'server classes' do
it { is_expected.to compile.with_all_deps }
it {
is_expected.to contain_class('mongodb::server::install').
that_comes_before('Class[mongodb::server::config]')
}
it {
is_expected.to contain_class('mongodb::server::config').
that_notifies('Class[mongodb::server::service]')
}
it { is_expected.to contain_class('mongodb::server::service') }
end
on_supported_os.each do |os, facts|
context "on #{os}" do
let(:facts) { facts }
let(:config_file) do
if facts[:os]['family'] == 'Debian'
'/etc/mongodb.conf'
else
'/etc/mongod.conf'
end
end
let(:log_path) do
if facts[:os]['family'] == 'Debian'
'/var/log/mongodb/mongodb.log'
else
'/var/log/mongodb/mongod.log'
end
end
describe 'with defaults' do
it_behaves_like 'server classes'
it { is_expected.to contain_package('mongodb_server').with_ensure('present').with_name('mongodb-server') }
it do
is_expected.to contain_file(config_file).
with_mode('0644').
with_owner('root').
with_group('root').
with_content(%r{^storage\.dbPath: /var/lib/mongodb$}).
with_content(%r{^net\.bindIp: 127\.0\.0\.1$}).
with_content(%r{^systemLog\.logAppend: true$}).
with_content(%r{^systemLog\.path: #{log_path}$})
end
if facts[:os]['family'] == 'Debian'
it { is_expected.not_to contain_file(config_file).with_content(%r{fork}) }
else
it { is_expected.to contain_file(config_file).with_content(%r{^ fork: true$}) }
end
it { is_expected.to contain_file('/root/.mongorc.js').with_ensure('absent') }
it { is_expected.not_to contain_exec('fix dbpath permissions') }
end
describe 'with manage_package => true' do
let(:pre_condition) do
'class { mongodb::globals:
manage_package => true
}'
end
it_behaves_like 'server classes'
end
describe 'with create_admin => true' do
let(:params) do
{
create_admin: true,
admin_username: 'admin',
admin_password: 'password'
}
end
it_behaves_like 'server classes'
it do
is_expected.to contain_mongodb__db('admin').
with_user('admin').
with_password('password').
with_roles(%w[userAdmin readWrite dbAdmin dbAdminAnyDatabase readAnyDatabase
readWriteAnyDatabase userAdminAnyDatabase clusterAdmin clusterManager
clusterMonitor hostManager root restore])
end
it { is_expected.to contain_mongodb_database('admin').that_requires('Service[mongodb]') }
end
describe 'with preset variables' do
let :params do
{
config: '/etc/custom-mongod.conf'
}
end
it { is_expected.to contain_file('/etc/custom-mongod.conf') }
end
describe 'with absent ensure' do
let :params do
{
ensure: 'absent'
}
end
it { is_expected.to compile.with_all_deps }
it { is_expected.to contain_class('mongodb::server::install') }
it { is_expected.to contain_class('mongodb::server::config') }
it { is_expected.to contain_class('mongodb::server::service') }
it { is_expected.to contain_file(config_file).with_ensure('absent') }
end
describe 'with specific bind_ip values and ipv6' do
let :params do
{
bind_ip: ['127.0.0.1', 'fd00:beef:dead:55::143'],
ipv6: true
}
end
it do
is_expected.to contain_file(config_file).
with_content(%r{^net\.bindIp: 127\.0\.0\.1\,fd00:beef:dead:55::143$}).
with_content(%r{^net\.ipv6: true$})
end
end
describe 'with specific bind_ip values' do
let :params do
{
bind_ip: ['127.0.0.1', '10.1.1.13']
}
end
it { is_expected.to contain_file(config_file).with_content(%r{^net\.bindIp: 127\.0\.0\.1\,10\.1\.1\.13$}) }
end
describe 'when specifying auth to true' do
let :params do
{
auth: true
}
end
it { is_expected.to contain_file(config_file).with_content(%r{^security\.authorization: enabled$}) }
it { is_expected.to contain_file('/root/.mongorc.js') }
end
describe 'when specifying set_parameter value' do
let :params do
{
set_parameter: 'textSearchEnable=true'
}
end
it { is_expected.to contain_file(config_file).with_content(%r{^setParameter: textSearchEnable=true}) }
end
describe 'with journal:' do
let :params do
{
journal: true
}
end
it { is_expected.to contain_file(config_file).with_content(%r{^storage\.journal\.enabled: true$}) }
end
# check nested quota and quotafiles
describe 'with quota to' do
context 'true and without quotafiles' do
let :params do
{
quota: true
}
end
it { is_expected.to contain_file(config_file).with_content(%r{^storage\.quota\.enforced: true$}) }
end
context 'true and with quotafiles' do
let :params do
{
quota: true,
quotafiles: 1
}
end
it {
is_expected.to contain_file(config_file).
with_content(%r{^storage\.quota\.enforced: true$}).
with_content(%r{^storage\.quota\.maxFilesPerDB: 1$})
}
end
end
describe 'when specifying syslog value' do
context 'it should be set to true' do
let :params do
{
syslog: true,
logpath: false
}
end
it { is_expected.to contain_file(config_file).with_content(%r{^systemLog\.destination: syslog$}) }
end
context 'if logpath is also set an error should be raised' do
let :params do
{
syslog: true,
logpath: '/var/log/mongo/mongod.log'
}
end
it { is_expected.to raise_error(Puppet::Error, %r{You cannot use syslog with logpath}) }
end
end
describe 'with store_creds' do
context 'true' do
let :params do
{
admin_username: 'admin',
admin_password: 'password',
auth: true,
store_creds: true
}
end
it {
is_expected.to contain_file('/root/.mongorc.js').
with_ensure('present').
with_owner('root').
with_group('root').
with_mode('0600').
with_content(%r{db\.auth\('admin', 'password'\)})
}
end
context 'false' do
let :params do
{
store_creds: false
}
end
it { is_expected.to contain_file('/root/.mongorc.js').with_ensure('absent') }
end
end
describe 'with custom pidfilemode' do
let :params do
{
pidfilepath: '/var/run/mongodb/mongod.pid',
pidfilemode: '0640'
}
end
it { is_expected.to contain_file('/var/run/mongodb/mongod.pid').with_mode('0640') }
end
describe 'with dbpath_fix enabled' do
let :params do
{
dbpath_fix: true,
user: 'foo',
group: 'bar'
}
end
it do
is_expected.to contain_exec('fix dbpath permissions').
with_command('chown -R foo:bar /var/lib/mongodb').
with_path(['/usr/bin', '/bin']).
with_onlyif("find /var/lib/mongodb -not -user foo -o -not -group bar -print -quit | grep -q '.*'").
that_subscribes_to('File[/var/lib/mongodb]')
end
end
describe 'with ssl' do
context 'enabled' do
let :params do
{
ssl: true,
ssl_mode: 'requireSSL'
}
end
it { is_expected.to contain_file(config_file).with_content(%r{^net\.ssl\.mode: requireSSL$}) }
end
context 'disabled' do
let :params do
{
ssl: false
}
end
it { is_expected.not_to contain_file(config_file).with_content(%r{net\.ssl\.mode}) }
end
end
context 'setting nohttpinterface' do
it "isn't set when undef" do
is_expected.not_to contain_file(config_file).with_content(%r{net\.http\.enabled})
end
describe 'sets net.http.enabled to false when true' do
let(:params) do
{ nohttpinterface: true }
end
it { is_expected.to contain_file(config_file).with_content(%r{^net\.http\.enabled: false$}) }
end
describe 'sets net.http.enabled to true when false' do
let(:params) do
{ nohttpinterface: false }
end
it { is_expected.to contain_file(config_file).with_content(%r{^net\.http\.enabled: true$}) }
end
end
context 'when setting up replicasets' do
describe 'should setup using replset_config' do
let(:rsConf) do
{
'rsTest' => {
'members' => [
'mongo1:27017',
'mongo2:27017',
'mongo3:27017'
],
'arbiter' => 'mongo3:27017'
}
}
end
let(:params) do
{
replset: 'rsTest',
replset_config: rsConf
}
end
it { is_expected.to contain_class('mongodb::replset').with_sets(rsConf) }
end
describe 'should setup using replset_members' do
let(:rsConf) do
{
'rsTest' => {
'ensure' => 'present',
'members' => [
'mongo1:27017',
'mongo2:27017',
'mongo3:27017'
],
'arbiter' => :undef
}
}
end
let(:params) do
{
replset: 'rsTest',
replset_members: [
'mongo1:27017',
'mongo2:27017',
'mongo3:27017'
],
'replset_arbiter' => :undef
}
end
it { is_expected.to contain_class('mongodb::replset').with_sets(rsConf) }
end
describe 'should setup using replset_members with replset_arbiter' do
let(:rsConf) do
{
'rsTest' => {
'ensure' => 'present',
'members' => [
'mongo1:27017',
'mongo2:27017',
'mongo3:27017'
],
'arbiter' => 'mongo3:27017'
}
}
end
let(:params) do
{
replset: 'rsTest',
replset_members: [
'mongo1:27017',
'mongo2:27017',
'mongo3:27017'
],
'replset_arbiter' => 'mongo3:27017'
}
end
it { is_expected.to contain_class('mongodb::replset').with_sets(rsConf) }
end
end
end
end
context 'when deploying on Solaris' do
let :facts do
{ osfamily: 'Solaris' }
end
it { is_expected.to raise_error(Puppet::Error) }
end
end