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
|
#
# Author:: Adam Jacob (<adam@chef.io>)
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require File.expand_path(File.join(File.dirname(__FILE__), "..", "spec_helper"))
describe Mixlib::Config do
before(:each) do
ConfigIt.configure do |c|
c[:alpha] = "omega"
c[:foo] = nil
end
end
it "loads a config file" do
allow(File).to receive(:exists?).and_return(true)
allow(File).to receive(:readable?).and_return(true)
allow(IO).to receive(:read).with("config.rb").and_return("alpha = 'omega'\nfoo = 'bar'")
expect(lambda {
ConfigIt.from_file("config.rb")
}).to_not raise_error
end
it "doesn't raise an ArgumentError with an explanation if you try and set a non-existent variable" do
expect(lambda {
ConfigIt[:foobar] = "blah"
}).to_not raise_error
end
it "raises an Errno::ENOENT if it can't find the file" do
expect(lambda {
ConfigIt.from_file("/tmp/timmytimmytimmy")
}).to raise_error(Errno::ENOENT)
end
it "allows the error to bubble up when it's anything other than IOError" do
allow(IO).to receive(:read).with("config.rb").and_return("@#asdf")
expect(lambda {
ConfigIt.from_file("config.rb")
}).to raise_error(SyntaxError)
end
it "allows you to reference a value by index" do
expect(ConfigIt[:alpha]).to eql("omega")
end
it "allows you to reference a value by string index" do
expect(ConfigIt["alpha"]).to eql("omega")
end
it "allows you to set a value by index" do
ConfigIt[:alpha] = "one"
expect(ConfigIt[:alpha]).to eql("one")
end
it "allows you to set a value by string index" do
ConfigIt["alpha"] = "one"
expect(ConfigIt[:alpha]).to eql("one")
end
it "allows setting a value with attribute form" do
ConfigIt.arbitrary_value = 50
expect(ConfigIt.arbitrary_value).to eql(50)
expect(ConfigIt[:arbitrary_value]).to eql(50)
end
it "allows setting a value with method form" do
ConfigIt.arbitrary_value 50
expect(ConfigIt.arbitrary_value).to eql(50)
expect(ConfigIt[:arbitrary_value]).to eql(50)
end
describe "when strict mode is on" do
class StrictClass
extend ::Mixlib::Config
config_strict_mode true
default :x, 1
end
it "allows you to get and set configured values" do
StrictClass.x = StrictClass.x * 2
StrictClass[:x] = StrictClass[:x] * 2
end
it "raises an error when you get an arbitrary config option with .y" do
expect(lambda { StrictClass.y }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Reading unsupported config value y.")
end
it "raises an error when you get an arbitrary config option with [:y]" do
expect(lambda { StrictClass[:y] }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Reading unsupported config value y.")
end
it "raises an error when you set an arbitrary config option with .y = 10" do
expect(lambda { StrictClass.y = 10 }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Cannot set unsupported config value y.")
end
it "raises an error when you set an arbitrary config option with .y 10" do
expect(lambda { StrictClass.y 10 }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Cannot set unsupported config value y.")
end
it "raises an error when you set an arbitrary config option with [:y] = 10" do
expect(lambda { StrictClass[:y] = 10 }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Cannot set unsupported config value y.")
end
end
describe "when a block has been used to set config values" do
before do
ConfigIt.configure { |c| c[:cookbook_path] = "monkey_rabbit"; c[:otherthing] = "boo" }
end
{ :cookbook_path => "monkey_rabbit", :otherthing => "boo" }.each do |k, v|
it "allows you to retrieve the config value for #{k} via []" do
expect(ConfigIt[k]).to eql(v)
end
it "allows you to retrieve the config value for #{k} via method_missing" do
expect(ConfigIt.send(k)).to eql(v)
end
end
end
it "doesn't raise an ArgumentError if you access a config option that does not exist" do
expect(lambda { ConfigIt[:snob_hobbery] }).to_not raise_error
end
it "returns true or false with has_key?" do
expect(ConfigIt.has_key?(:monkey)).to be false
ConfigIt[:monkey] = "gotcha"
expect(ConfigIt.has_key?(:monkey)).to be true
end
describe "when a class method override writer exists" do
before do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
config_attr_writer :test_method do |blah|
blah.is_a?(Integer) ? blah * 1000 : blah
end
end
end
it "multiplies an integer by 1000" do
@klass[:test_method] = 53
expect(@klass[:test_method]).to eql(53000)
end
it "multiplies an integer by 1000 with the method_missing form" do
@klass.test_method = 63
expect(@klass.test_method).to eql(63000)
end
it "multiplies an integer by 1000 with the instance_eval DSL form" do
@klass.instance_eval("test_method 73")
expect(@klass.test_method).to eql(73000)
end
it "multiplies an integer by 1000 via from-file, too" do
allow(IO).to receive(:read).with("config.rb").and_return("test_method 99")
@klass.from_file("config.rb")
expect(@klass.test_method).to eql(99000)
end
it "receives internal_set with the method name and config value" do
expect(@klass).to receive(:internal_set).with(:test_method, 53).and_return(true)
@klass[:test_method] = 53
end
end
describe "When a configurable exists" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
configurable :daemonizeme
default :a, 1
config_attr_writer(:b) { |v| v }
config_context(:c)
end
end
it "Getter methods are created for the configurable" do
expect(@klass.respond_to?(:daemonizeme)).to be true
expect(@klass.respond_to?(:a)).to be true
expect(@klass.respond_to?(:b)).to be true
expect(@klass.respond_to?(:c)).to be true
expect(@klass.respond_to?(:z)).to be false
end
it "Setter methods are created for the configurable" do
expect(@klass.respond_to?("daemonizeme=".to_sym)).to be true
expect(@klass.respond_to?("a=".to_sym)).to be true
expect(@klass.respond_to?("b=".to_sym)).to be true
expect(@klass.respond_to?("c=".to_sym)).to be true
expect(@klass.respond_to?("z=".to_sym)).to be false
end
describe "and extra methods have been dumped into Object" do
class NopeError < StandardError
end
before :each do
Object.send :define_method, :daemonizeme do
raise NopeError, "NOPE"
end
Object.send :define_method, "daemonizeme=".to_sym do
raise NopeError, "NOPE"
end
end
after do
Object.send :remove_method, :daemonizeme
Object.send :remove_method, :'daemonizeme='
end
it "Normal classes call the extra method" do
normal_class = Class.new
normal_class.extend(::Mixlib::Config)
expect(lambda { normal_class.daemonizeme }).to raise_error(NopeError)
end
it "Configurables with the same name as the extra method can be set" do
@klass.daemonizeme = 10
expect(@klass[:daemonizeme]).to eql(10)
end
it "Configurables with the same name as the extra method can be retrieved" do
@klass[:daemonizeme] = 10
expect(@klass.daemonizeme).to eql(10)
end
end
end
describe "When config has a default value" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval { default :attr, 4 }
end
it "defaults to that value" do
expect(@klass.attr).to eql(4)
end
it "defaults to that value when retrieved as a hash" do
expect(@klass[:attr]).to eql(4)
end
it "is settable to another value" do
@klass.attr 5
expect(@klass.attr).to eql(5)
end
it "still defaults to that value after delete" do
@klass.attr 5
@klass.delete(:attr)
expect(@klass.attr).to eql(4)
end
it "still defaults to that value after reset" do
@klass.attr 5
@klass.reset
expect(@klass.attr).to eql(4)
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => 4 })
end
it "saves the new value if it gets set" do
@klass.attr 5
expect((saved = @klass.save)).to eql({ :attr => 5 })
@klass.reset
expect(@klass.attr).to eql(4)
@klass.restore(saved)
expect(@klass.attr).to eql(5)
end
it "saves the new value even if it is set to its default value" do
@klass.attr 4
expect((saved = @klass.save)).to eql({ :attr => 4 })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => 4 })
end
end
describe "When config has a default value block" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
default :x, 4
default(:attr) { x * 2 }
end
end
it "defaults to that value" do
expect(@klass.attr).to eql(8)
end
it "is recalculated each time it is retrieved" do
expect(@klass.attr).to eql(8)
@klass.x = 2
expect(@klass.attr).to eql(4)
end
it "defaults to that value when retrieved as a hash" do
expect(@klass[:attr]).to eql(8)
end
it "is settable to another value" do
@klass.attr 5
expect(@klass.attr).to eql(5)
end
it "still defaults to that value after delete" do
@klass.attr 5
@klass.delete(:attr)
expect(@klass.attr).to eql(8)
end
it "still defaults to that value after reset" do
@klass.attr 5
@klass.reset
expect(@klass.attr).to eql(8)
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => 8, :x => 4 })
end
it "saves the new value if it gets set" do
@klass.attr 5
expect((saved = @klass.save)).to eql({ :attr => 5 })
@klass.reset
expect(@klass.attr).to eql(8)
@klass.restore(saved)
expect(@klass.attr).to eql(5)
end
it "saves the new value even if it is set to its default value" do
@klass.attr 8
expect((saved = @klass.save)).to eql({ :attr => 8 })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => 8 })
end
end
describe "When config has an array default value" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval { default :attr, [] }
end
it "reset clears it to its default" do
@klass.attr << "x"
expect(@klass.attr).to eql([ "x" ])
@klass.reset
expect(@klass.attr).to eql([])
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => [] })
end
it "saves the new value if it gets set" do
@klass.attr << "x"
expect((saved = @klass.save)).to eql({ :attr => [ "x" ] })
@klass.reset
expect(@klass.attr).to eql([])
@klass.restore(saved)
expect(@klass.attr).to eql([ "x" ])
end
it "saves the new value even if it is set to its default value" do
@klass.attr = []
expect((saved = @klass.save)).to eql({ :attr => [] })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => [] })
end
end
describe "When config has a hash default value" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval { default :attr, {} }
end
it "reset clears it to its default" do
@klass.attr[:x] = 10
expect(@klass.attr[:x]).to eql(10)
@klass.reset
expect(@klass.attr[:x]).to be_nil
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => {} })
end
it "saves the new value if it gets set" do
@klass.attr[:hi] = "lo"
expect((saved = @klass.save)).to eql({ :attr => { :hi => "lo" } })
@klass.reset
expect(@klass.attr).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => { :hi => "lo" } })
end
it "saves the new value even if it is set to its default value" do
@klass.attr = {}
expect((saved = @klass.save)).to eql({ :attr => {} })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => {} })
end
end
describe "When config has a string default value" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval { default :attr, "hello" }
end
it "reset clears it to its default" do
@klass.attr << " world"
expect(@klass.attr).to eql("hello world")
@klass.reset
expect(@klass.attr).to eql("hello")
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => "hello" })
end
it "saves the new value if it gets set" do
@klass.attr << " world"
expect((saved = @klass.save)).to eql({ :attr => "hello world" })
@klass.reset
expect(@klass.attr).to eql("hello")
@klass.restore(saved)
expect(@klass.attr).to eql("hello world")
end
it "saves the new value even if it is set to its default value" do
@klass.attr "hello world"
expect((saved = @klass.save)).to eql({ :attr => "hello world" })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => "hello world" })
end
end
describe "When config has a a default value block" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
default(:attr) { 4 }
end
end
it "defaults to that value" do
expect(@klass.attr).to eql(4)
end
it "defaults to that value when retrieved as a hash" do
expect(@klass[:attr]).to eql(4)
end
it "is settable to another value" do
@klass.attr 5
expect(@klass.attr).to eql(5)
expect(@klass[:attr]).to eql(5)
end
it "still defaults to that value after delete" do
@klass.attr 5
@klass.delete(:attr)
expect(@klass.attr).to eql(4)
end
it "still defaults to that value after reset" do
@klass.attr 5
@klass.reset
expect(@klass.attr).to eql(4)
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => 4 })
end
it "saves the new value if it gets set" do
@klass.attr 5
expect((saved = @klass.save)).to eql({ :attr => 5 })
@klass.reset
expect(@klass.attr).to eql(4)
@klass.restore(saved)
expect(@klass.attr).to eql(5)
end
it "saves the new value even if it is set to its default value" do
@klass.attr 4
expect((saved = @klass.save)).to eql({ :attr => 4 })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => 4 })
end
end
describe "When a configurable exists with writer and default value" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
configurable(:attr) do |c|
c.defaults_to(4)
c.writes_value { |value| value * 2 }
end
end
end
it "defaults to that value" do
expect(@klass.attr).to eql(4)
end
it "defaults to that value when retrieved as a hash" do
expect(@klass[:attr]).to eql(4)
end
it "is settable to another value" do
@klass.attr 5
expect(@klass.attr).to eql(10)
expect(@klass[:attr]).to eql(10)
end
it "is settable to another value with attr=" do
@klass.attr = 5
expect(@klass.attr).to eql(10)
expect(@klass[:attr]).to eql(10)
end
it "is settable to another value with [:attr]=" do
@klass[:attr] = 5
expect(@klass.attr).to eql(10)
expect(@klass[:attr]).to eql(10)
end
it "still defaults to that value after delete" do
@klass.attr 5
@klass.delete(:attr)
expect(@klass.attr).to eql(4)
end
it "still defaults to that value after reset" do
@klass.attr 5
@klass.reset
expect(@klass.attr).to eql(4)
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => 4 })
end
it "saves the new value if it gets set" do
@klass.attr 5
expect((saved = @klass.save)).to eql({ :attr => 10 })
@klass.reset
expect(@klass.attr).to eql(4)
@klass.restore(saved)
expect(@klass.attr).to eql(10)
end
it "saves the new value even if it is set to its default value" do
@klass.attr 4
expect((saved = @klass.save)).to eql({ :attr => 8 })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => 8 })
end
end
describe "When a configurable exists with writer and default value set in chained form" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
configurable(:attr).defaults_to(4).writes_value { |value| value * 2 }
end
end
it "defaults to that value" do
expect(@klass.attr).to eql(4)
end
it "defaults to that value when retrieved as a hash" do
expect(@klass[:attr]).to eql(4)
end
it "is settable to another value" do
@klass.attr 5
expect(@klass.attr).to eql(10)
expect(@klass[:attr]).to eql(10)
end
it "is settable to another value with attr=" do
@klass.attr = 5
expect(@klass.attr).to eql(10)
expect(@klass[:attr]).to eql(10)
end
it "is settable to another value with [:attr]=" do
@klass[:attr] = 5
expect(@klass.attr).to eql(10)
expect(@klass[:attr]).to eql(10)
end
it "still defaults to that value after delete" do
@klass.attr 5
@klass.delete(:attr)
expect(@klass.attr).to eql(4)
end
it "still defaults to that value after reset" do
@klass.attr 5
@klass.reset
expect(@klass.attr).to eql(4)
end
it "save should not save anything for it" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :attr => 4 })
end
it "saves the new value if it gets set" do
@klass.attr 5
expect((saved = @klass.save)).to eql({ :attr => 10 })
@klass.reset
expect(@klass.attr).to eql(4)
@klass.restore(saved)
expect(@klass.attr).to eql(10)
end
it "saves the new value even if it is set to its default value" do
@klass.attr 2
expect((saved = @klass.save)).to eql({ :attr => 4 })
@klass.reset
expect(@klass.save).to eql({})
@klass.restore(saved)
expect(@klass.save).to eql({ :attr => 4 })
end
end
describe "When a configurable exists with a context" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
configurable :x
config_context(:blah) do
default :x, 5
end
end
end
it "configurable defaults in that context work" do
expect(@klass.blah.x).to eql(5)
end
it "after setting values in the context, the values remain set" do
@klass.blah.x = 10
expect(@klass.blah.x).to eql(10)
end
it "setting values with the same name in the parent context do not affect the child context" do
@klass.x = 10
expect(@klass.x).to eql(10)
expect(@klass.blah.x).to eql(5)
end
it "setting the entire context to a hash with default value overridden sets the value" do
@klass.blah = { :x => 10 }
expect(@klass.blah.x).to eql(10)
end
it "setting the entire context to a hash sets non-default values" do
@klass.blah = { :y => 10 }
expect(@klass.blah.x).to eql(5)
expect(@klass.blah.y).to eql(10)
end
it "setting the entire context to a hash deletes any non-default values and resets default values" do
@klass.blah.x = 10
@klass.blah.y = 10
@klass.blah = { :z => 10 }
expect(@klass.blah.x).to eql(5)
expect(@klass.blah.y).to be_nil
expect(@klass.blah.z).to eql(10)
end
it "after reset of the parent class, children are reset" do
@klass.blah.x = 10
expect(@klass.blah.x).to eql(10)
@klass.reset
expect(@klass.blah.x).to eql(5)
end
it "save should not save anything for it by default" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :blah => { :x => 5 } })
end
it "saves any new values that are set in the context" do
@klass.blah.x = 10
expect((saved = @klass.save)).to eql({ :blah => { :x => 10 } })
@klass.reset
expect(@klass.blah.x).to eql(5)
@klass.restore(saved)
expect(@klass.blah.x).to eql(10)
expect(@klass.save).to eql({ :blah => { :x => 10 } })
end
end
describe "When a configurable exists with a nested context" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
config_context(:blah) do
config_context(:yarr) do
default :x, 5
default :y, 6
end
end
configurable :x
end
end
it "configurable defaults in that context work" do
expect(@klass.blah.yarr.x).to eql(5)
expect(@klass.blah.yarr.y).to eql(6)
end
it "after setting values in the context, the values remain set" do
@klass.blah.yarr.x = 10
@klass.blah.yarr.y = 11
expect(@klass.blah.yarr.x).to eql(10)
expect(@klass.blah.yarr.y).to eql(11)
end
it "setting values with the same name in the parent context do not affect the child context" do
@klass.x = 10
expect(@klass.x).to eql(10)
expect(@klass.blah.yarr.x).to eql(5)
end
it "after reset of the parent class, children are reset" do
@klass.blah.yarr.x = 10
@klass.blah.yarr.y = 11
expect(@klass.blah.yarr.x).to eql(10)
expect(@klass.blah.yarr.y).to eql(11)
@klass.reset
expect(@klass.blah.yarr.x).to eql(5)
expect(@klass.blah.yarr.y).to eql(6)
end
it "save should not save anything for it by default" do
expect(@klass.save).to eql({})
end
it "save with include_defaults should save all defaults" do
expect(@klass.save(true)).to eql({ :blah => { :yarr => { :x => 5, :y => 6 } } })
end
it "saves any new values that are set in the context" do
@klass.blah.yarr.x = 10
@klass.blah.yarr.y = 11
expect((saved = @klass.save)).to eql({ :blah => { :yarr => { :x => 10, :y => 11 } } })
@klass.reset
expect(@klass.blah.yarr.x).to eql(5)
expect(@klass.blah.yarr.y).to eql(6)
@klass.restore(saved)
expect(@klass.blah.yarr.x).to eql(10)
expect(@klass.blah.yarr.y).to eql(11)
expect(@klass.save).to eql({ :blah => { :yarr => { :x => 10, :y => 11 } } })
end
it "restores defaults not included in saved data" do
@klass.restore( :blah => { :yarr => { :x => 10 } } )
expect(@klass.blah.yarr.x).to eql(10)
expect(@klass.blah.yarr.y).to eql(6)
end
it "removes added properties not included in saved state" do
@klass.blah.yarr.z = 12
@klass.restore( :blah => { :yarr => { :x => 10 } } )
expect(@klass.blah.yarr.x).to eql(10)
expect(@klass.blah.yarr.z).to eql(nil)
end
it "can set a config context from another context" do
@klass.blah.blyme = { :x => 7 }
blyme = @klass.blah.blyme
@klass.blah.yarr.x = 12
@klass.blah.yarr = blyme
expect(@klass.blah.yarr.x).to eql(7)
end
end
describe "When a config_context with no defaulted values exists" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
config_context(:blah) do
configurable(:x)
end
end
end
it "save does not save the hash for the config_context" do
expect(@klass.save).to eql({})
end
it "save with defaults saves the hash for the config_context" do
expect(@klass.save(true)).to eql({ :blah => {} })
end
end
describe "When a config_context with no configurables exists" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
config_context(:blah)
end
end
it "save does not save the hash for the config_context" do
expect(@klass.save).to eql({})
end
it "save with defaults saves the hash for the config_context" do
expect(@klass.save(true)).to eql({ :blah => {} })
end
end
describe "When a nested context has strict mode on" do
class StrictClass2
extend ::Mixlib::Config
config_context :c do
config_strict_mode true
default :x, 1
end
end
it "The parent class allows you to set arbitrary config options" do
StrictClass2.y = 10
end
it "The nested class does not allow you to set arbitrary config options" do
expect(lambda { StrictClass2.c.y = 10 }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Cannot set unsupported config value y.")
end
end
describe "When strict mode is on but a nested context has strict mode unspecified" do
class StrictClass3
extend ::Mixlib::Config
config_strict_mode true
default :x, 1
config_context :c
end
it "The parent class does not allow you to set arbitrary config options" do
expect(lambda { StrictClass3.y = 10 }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Cannot set unsupported config value y.")
end
it "The nested class does not allow you to set arbitrary config options" do
expect(lambda { StrictClass3.y = 10 }).to raise_error(Mixlib::Config::UnknownConfigOptionError, "Cannot set unsupported config value y.")
end
end
describe "When a config_context is opened twice" do
before :each do
@klass = Class.new
@klass.extend(::Mixlib::Config)
@klass.class_eval do
config_context(:blah) do
default :x, 10
end
config_context(:blah) do
default :y, 20
end
end
end
it "Both config_context blocks are honored" do
@klass.blah.x == 10
@klass.blah.y == 20
end
end
it "When a config_context is opened in place of a regular configurable, an error is raised" do
klass = Class.new
klass.extend(::Mixlib::Config)
expect(lambda do
klass.class_eval do
default :blah, 10
config_context(:blah) do
default :y, 20
end
end
end).to raise_error(Mixlib::Config::ReopenedConfigurableWithConfigContextError)
end
it "When a config_context is opened in place of a regular configurable, an error is raised" do
klass = Class.new
klass.extend(::Mixlib::Config)
expect(lambda do
klass.class_eval do
config_context(:blah) do
default :y, 20
end
default :blah, 10
end
end).to raise_error(Mixlib::Config::ReopenedConfigContextWithConfigurableError)
end
end
|