-
Notifications
You must be signed in to change notification settings - Fork 183
/
redis_spec.rb
1708 lines (1430 loc) · 43.9 KB
/
redis_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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# frozen_string_literal: true
require 'spec_helper'
# rubocop:disable RSpec/MultipleMemoizedHelpers
describe 'redis' do
let(:package_name) { facts[:os]['family'] == 'Debian' ? 'redis-server' : 'redis' }
let(:service_name) { package_name }
let(:config_file) do
case facts[:os]['family']
when 'Archlinux', 'Debian'
'/etc/redis/redis.conf'
when 'FreeBSD'
'/usr/local/etc/redis.conf'
when 'RedHat'
if facts[:os]['release']['major'].to_i > 8
'/etc/redis/redis.conf'
else
'/etc/redis.conf'
end
end
end
let(:config_file_orig) { "#{config_file}.puppet" }
on_supported_os.each do |os, facts|
context "on #{os}" do
let(:facts) { facts }
describe 'without parameters' do
it { is_expected.to compile.with_all_deps }
it { is_expected.to create_class('redis') }
it { is_expected.to contain_class('redis::preinstall') }
it { is_expected.to contain_class('redis::install') }
it { is_expected.to contain_class('redis::config') }
it { is_expected.to contain_class('redis::service') }
it { is_expected.to contain_package(package_name).with_ensure('installed') }
it do
is_expected.to contain_file(config_file_orig).
with_ensure('file').
with_content(%r{logfile /var/log/redis/redis\.log}).
without_content(%r{undef})
if facts[:os]['family'] == 'FreeBSD'
is_expected.to contain_file(config_file_orig).
with_content(%r{dir /var/db/redis}).
with_content(%r{pidfile /var/run/redis/redis\.pid})
end
end
it { is_expected.to contain_service(service_name).with_ensure('running').with_enable('true') }
context 'with SCL', if: facts[:os]['family'] == 'RedHat' && facts[:os]['release']['major'].to_i < 8 do
let(:pre_condition) do
<<-PUPPET
class { 'redis::globals':
scl => 'rh-redis5',
}
PUPPET
end
it { is_expected.to compile.with_all_deps }
it do
is_expected.to create_class('redis').
with_package_name('rh-redis5-redis').
with_config_file('/etc/opt/rh/rh-redis5/redis.conf').
with_service_name('rh-redis5-redis')
end
context 'manage_repo => true' do
let(:params) { { manage_repo: true } }
it { is_expected.to compile.with_all_deps }
if facts[:operatingsystem] == 'CentOS'
it { is_expected.to contain_package('centos-release-scl-rh') }
else
it { is_expected.not_to contain_package('centos-release-scl-rh') }
end
end
end
describe 'with manage_dnf_module true', if: facts[:os]['family'] == 'RedHat' && facts[:os]['release']['major'].to_i == 8 do
let(:pre_condition) do
<<-PUPPET
class { 'redis':
manage_package => true,
dnf_module_stream => '6',
}
PUPPET
end
it { is_expected.to compile.with_all_deps }
it { is_expected.to contain_package('redis dnf module').with_ensure('6').that_comes_before('Package[redis]') }
it { is_expected.to contain_package('redis').with_name('redis') }
end
end
context 'with managed_by_cluster_manager true' do
let(:params) { { managed_by_cluster_manager: true } }
it { is_expected.to compile.with_all_deps }
it do
is_expected.to contain_file('/etc/security/limits.d/redis.conf').with(
'ensure' => 'file',
'owner' => 'root',
'group' => 'root',
'mode' => '0644',
'content' => "redis soft nofile 65536\nredis hard nofile 65536\n"
)
end
context 'when not managing service' do
let(:params) { super().merge(service_manage: false, notify_service: false) }
it { is_expected.to compile.with_all_deps }
it do
is_expected.to contain_file('/etc/security/limits.d/redis.conf').with(
'ensure' => 'file',
'owner' => 'root',
'group' => 'root',
'mode' => '0644',
'content' => "redis soft nofile 65536\nredis hard nofile 65536\n"
)
end
end
end
describe 'with parameter ulimit_managed' do
context 'true' do
let(:params) { { ulimit: 7777, ulimit_managed: true } }
it { is_expected.to compile.with_all_deps }
it do
is_expected.to contain_file("/etc/systemd/system/#{service_name}.service.d/limit.conf").
with_ensure('absent')
is_expected.to contain_systemd__service_limits("#{service_name}.service").
with_limits({ 'LimitNOFILE' => 7777 }).
with_restart_service(false).
with_ensure('present')
end
end
context 'false' do
let(:params) { { ulimit_managed: false } }
it { is_expected.to compile.with_all_deps }
it do
is_expected.not_to contain_systemd__service_limits("#{service_name}.service")
end
end
end
describe 'with parameter activerehashing' do
let(:params) do
{
activerehashing: true
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{activerehashing.*yes}) }
end
describe 'with parameter aof_load_truncated' do
let(:params) do
{
aof_load_truncated: true
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{aof-load-truncated.*yes}) }
end
describe 'with parameter aof_rewrite_incremental_fsync' do
let(:params) do
{
aof_rewrite_incremental_fsync: true
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{aof-rewrite-incremental-fsync.*yes}) }
end
describe 'with parameter appendfilename' do
let(:params) do
{
appendfilename: '_VALUE_'
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{appendfilename.*_VALUE_}) }
end
describe 'with parameter appendfsync' do
let(:params) do
{
appendfsync: 'no'
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{^appendfsync no$}) }
end
describe 'with parameter appendonly' do
let(:params) do
{
appendonly: true
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{appendonly.*yes}) }
end
describe 'with parameter auto_aof_rewrite_min_size' do
let(:params) do
{
auto_aof_rewrite_min_size: '_VALUE_'
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{auto-aof-rewrite-min-size.*_VALUE_}) }
end
describe 'with parameter auto_aof_rewrite_percentage' do
let(:params) do
{
auto_aof_rewrite_percentage: 75
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{auto-aof-rewrite-percentage 75}) }
end
describe 'parameter bind' do
context 'by default' do
it 'binds to localhost' do
is_expected.to contain_file(config_file_orig).with_content(%r{bind 127\.0\.0\.1$})
end
end
context 'with a single IP address' do
let(:params) { { bind: '10.0.0.1' } }
it { is_expected.to contain_file(config_file_orig).with_content(%r{bind 10\.0\.0\.1$}) }
end
context 'with array of IP addresses' do
let(:params) do
{
bind: ['127.0.0.1', '::1']
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{bind 127\.0\.0\.1 ::1}) }
end
context 'with empty array' do
let(:params) { { bind: [] } }
it { is_expected.not_to contain_file(config_file_orig).with_content(%r{^bind}) }
end
end
describe 'with parameter output_buffer_limit_slave' do
let(:params) do
{
output_buffer_limit_slave: '_VALUE_'
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{client-output-buffer-limit slave.*_VALUE_}) }
end
describe 'with parameter output_buffer_limit_pubsub' do
let(:params) do
{
output_buffer_limit_pubsub: '_VALUE_'
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{client-output-buffer-limit pubsub.*_VALUE_}) }
end
describe 'with parameter: config_dir' do
let(:params) { { config_dir: '/etc/config_dir' } }
it { is_expected.to contain_file('/etc/config_dir').with_ensure('directory') }
end
describe 'with parameter: config_dir_mode' do
let(:params) { { config_dir_mode: '0700' } }
it { is_expected.to contain_file('/etc/redis').with_mode('0700') }
end
describe 'with parameter: log_dir_mode' do
let(:params) { { log_dir_mode: '0660' } }
it { is_expected.to contain_file('/var/log/redis').with_mode('0660') }
end
describe 'with parameter: config_file_orig' do
let(:params) { { config_file_orig: '/path/to/orig' } }
it { is_expected.to contain_file('/path/to/orig') }
end
describe 'with parameter: config_file_mode' do
let(:params) { { config_file_mode: '0600' } }
it { is_expected.to contain_file(config_file_orig).with_mode('0600') }
end
describe 'with parameter: config_group' do
let(:params) { { config_group: '_VALUE_' } }
it { is_expected.to contain_file('/etc/redis').with_group('_VALUE_') }
end
describe 'with parameter: config_owner' do
let(:params) { { config_owner: '_VALUE_' } }
it { is_expected.to contain_file('/etc/redis').with_owner('_VALUE_') }
end
describe 'with parameter daemonize' do
let(:params) do
{
daemonize: true
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{daemonize.*yes}
)
}
end
describe 'with parameter databases' do
let(:params) do
{
databases: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{databases 42}
)
}
end
describe 'with parameter dbfilename' do
let(:params) do
{
dbfilename: '_VALUE_'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{dbfilename.*_VALUE_}
)
}
end
describe 'without parameter dbfilename' do
let(:params) do
{
dbfilename: false
}
end
it { is_expected.to contain_file(config_file_orig).without_content(%r{^dbfilename}) }
end
describe 'with parameter hash_max_ziplist_entries' do
let(:params) do
{
hash_max_ziplist_entries: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{hash-max-ziplist-entries 42}
)
}
end
describe 'with parameter hash_max_ziplist_value' do
let(:params) do
{
hash_max_ziplist_value: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{hash-max-ziplist-value 42}
)
}
end
# TODO: Only present in 3.0
describe 'with parameter list_max_ziplist_entries' do
let(:params) do
{
list_max_ziplist_entries: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{list-max-ziplist-entries 42}
)
}
end
describe 'with parameter list_max_ziplist_value' do
let(:params) do
{
list_max_ziplist_value: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{list-max-ziplist-value 42}
)
}
end
describe 'with parameter log_dir' do
let(:params) do
{
log_dir: '/var/log/redis'
}
end
it {
is_expected.to contain_file('/var/log/redis').with(
'ensure' => 'directory'
)
}
end
describe 'with parameter log_file' do
describe 'as absolute path' do
let(:params) do
{
log_file: '/var/log/my-redis/my-redis.log'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^logfile /var/log/my-redis/my-redis\.log$}
)
}
end
describe 'as relative path' do
let(:params) do
{
log_dir: '/var/log/my-redis',
log_file: 'my-redis.log'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^logfile /var/log/my-redis/my-redis\.log$}
)
}
end
end
describe 'with parameter log_level' do
let(:params) do
{
log_level: 'debug'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^loglevel debug$}
)
}
end
describe 'with parameter: manage_repo' do
let(:params) { { manage_repo: true } }
if facts[:osfamily] == 'RedHat' && facts[:os]['release']['major'].to_i <= 7
it { is_expected.to contain_class('epel') }
else
it { is_expected.not_to contain_class('epel') }
end
describe 'with ppa' do
let(:params) { super().merge(ppa_repo: 'ppa:rwky/redis') }
if facts[:operatingsystem] == 'Ubuntu'
it { is_expected.to contain_apt__ppa('ppa:rwky/redis') }
else
it { is_expected.not_to contain_apt__ppa('ppa:rwky/redis') }
end
end
end
describe 'with parameter unixsocket' do
describe '/tmp/redis.sock' do
let(:params) { { unixsocket: '/tmp/redis.sock' } }
it { is_expected.to contain_file(config_file_orig).with_content(%r{^unixsocket /tmp/redis\.sock$}) }
end
describe 'empty string' do
let(:params) { { unixsocket: '' } }
it { is_expected.to contain_file(config_file_orig).without_content(%r{^unixsocket }) }
end
end
describe 'with parameter unixsocketperm' do
describe '777' do
let(:params) { { unixsocketperm: '777' } }
it { is_expected.to contain_file(config_file_orig).with_content(%r{^unixsocketperm 777$}) }
end
describe 'empty string' do
let(:params) { { unixsocketperm: '' } }
it { is_expected.to contain_file(config_file_orig).without_content(%r{^unixsocketperm }) }
end
end
describe 'with parameter masterauth' do
let(:params) do
{
masterauth: '_VALUE_'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{masterauth.*_VALUE_}
)
}
end
describe 'with parameter maxclients' do
let(:params) do
{
maxclients: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^maxclients 42$}
)
}
end
describe 'with parameter maxmemory' do
let(:params) do
{
maxmemory: '_VALUE_'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{maxmemory.*_VALUE_}
)
}
end
describe 'with parameter maxmemory_policy' do
let(:params) do
{
maxmemory_policy: 'noeviction'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{maxmemory-policy.*noeviction}
)
}
end
describe 'with parameter maxmemory_samples' do
let(:params) do
{
maxmemory_samples: 9
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{maxmemory-samples.*9}
)
}
end
describe 'with parameter min_slaves_max_lag' do
let(:params) do
{
min_slaves_max_lag: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^min-slaves-max-lag 42$}
)
}
end
describe 'with parameter min_slaves_to_write' do
let(:params) do
{
min_slaves_to_write: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^min-slaves-to-write 42$}
)
}
end
describe 'with parameter notify_keyspace_events' do
let(:params) do
{
notify_keyspace_events: '_VALUE_'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{notify-keyspace-events.*_VALUE_}
)
}
end
describe 'with parameter notify_service' do
let(:params) do
{
notify_service: true
}
end
it { is_expected.to contain_file(config_file_orig).that_notifies("Service[#{service_name}]") }
end
describe 'with parameter no_appendfsync_on_rewrite' do
let(:params) do
{
no_appendfsync_on_rewrite: true
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{no-appendfsync-on-rewrite.*yes}
)
}
end
describe 'with parameter: package_ensure' do
let(:params) { { package_ensure: '_VALUE_' } }
it {
is_expected.to contain_package(package_name).with(
'ensure' => '_VALUE_'
)
}
end
describe 'with parameter: package_name' do
let(:params) { { package_name: '_VALUE_' } }
it { is_expected.to contain_package('_VALUE_') }
end
describe 'with parameter pid_file' do
let(:params) do
{
pid_file: '/path/to/redis.pid'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^pidfile /path/to/redis.pid$}
)
}
end
describe 'with parameter port' do
let(:params) do
{
port: 6666
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^port 6666$}
)
}
end
describe 'with parameter protected-mode' do
let(:params) do
{
protected_mode: false
}
end
it { is_expected.to contain_file(config_file_orig).with_content(%r{^protected-mode no$}) }
end
describe 'with parameter hll_sparse_max_bytes' do
let(:params) do
{
hll_sparse_max_bytes: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^hll-sparse-max-bytes 42$}
)
}
end
describe 'with parameter hz' do
let(:params) do
{
hz: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^hz 42$}
)
}
end
describe 'with parameter latency_monitor_threshold' do
let(:params) do
{
latency_monitor_threshold: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^latency-monitor-threshold 42$}
)
}
end
describe 'with parameter rdbcompression' do
let(:params) do
{
rdbcompression: true
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{rdbcompression.*yes}
)
}
end
describe 'with parameter rename_commands' do
context 'with a single rename' do
let(:params) do
{
rename_commands: { CONFIG: '""' }
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^rename-command CONFIG ""$}
)
}
end
context 'with multiple renames' do
let(:params) do
{
rename_commands: { CONFIG: '""', RENAME: '""' }
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^rename-command CONFIG ""$}
)
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^rename-command RENAME ""$}
)
}
end
context 'with empty hash' do
let(:params) do
{
'rename_commands' => {}
}
end
it { is_expected.not_to contain_file(config_file_orig).with_content(%r{^rename-command}) }
end
end
describe 'with parameter repl_backlog_size' do
let(:params) do
{
repl_backlog_size: '_VALUE_'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{repl-backlog-size.*_VALUE_}
)
}
end
describe 'with parameter repl_backlog_ttl' do
let(:params) do
{
repl_backlog_ttl: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^repl-backlog-ttl 42$}
)
}
end
describe 'with parameter repl_disable_tcp_nodelay' do
let(:params) do
{
repl_disable_tcp_nodelay: true
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{repl-disable-tcp-nodelay.*yes}
)
}
end
describe 'with parameter repl_ping_slave_period' do
let(:params) do
{
repl_ping_slave_period: 42
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^repl-ping-slave-period 42}
)
}
end
describe 'with parameter repl_timeout' do
let(:params) do
{
repl_timeout: 1
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{repl-timeout.*1}
)
}
end
describe 'with parameter repl_announce_ip' do
let(:params) do
{
repl_announce_ip: 'my.hostname.name.or.ip'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{replica-announce-ip.*my\.hostname\.name\.or\.ip}
)
}
end
describe 'with parameter repl_announce_port' do
let(:params) do
{
repl_announce_port: 1234
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{replica-announce-port.*1234}
)
}
end
describe 'with parameter requirepass' do
let(:params) do
{
requirepass: '_VALUE_'
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{requirepass.*_VALUE_}
)
}
end
describe 'with parameter save_db_to_disk' do
context 'true' do
let(:params) do
{
save_db_to_disk: true
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^save}
)
}
end
context 'false' do
let(:params) do
{
save_db_to_disk: false
}
end
it {
is_expected.to contain_file(config_file_orig).with(
'content' => %r{^save ""$}
)
}
end
end
describe 'with parameter save_db_to_disk_interval' do
context 'with save_db_to_disk true' do
context 'default' do
let(:params) do
{
save_db_to_disk: true
}
end
it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 900 1}) }
it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 300 10}) }
it {
is_expected.to contain_file(config_file_orig).with('content' => %r{save 60 10000})
}
end
context 'and with save_db_to_disk_interval' do
let(:params) do
{
save_db_to_disk: true,