File: new_spec.rb

package info (click to toggle)
puppet 5.5.22-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,316 kB
  • sloc: ruby: 254,925; sh: 1,608; xml: 219; makefile: 153; sql: 103
file content (776 lines) | stat: -rw-r--r-- 26,718 bytes parent folder | download | duplicates (3)
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
require 'spec_helper'

require 'puppet_spec/compiler'
require 'matchers/resource'

describe 'the new function' do
  include PuppetSpec::Compiler
  include Matchers::Resource

  it 'yields converted value if given a block' do
    expect(compile_to_catalog(<<-MANIFEST
      $x = Integer.new('42') |$x| { $x+2 }
      notify { "${type($x, generalized)}, $x": }
    MANIFEST
    )).to have_resource('Notify[Integer, 44]')
  end

  it 'produces undef if given an undef value and type accepts it' do
    expect(compile_to_catalog(<<-MANIFEST
      $x = Optional[Integer].new(undef)
      notify { "one${x}word": }
    MANIFEST
    )).to have_resource('Notify[oneword]')
  end

  it 'errors if given undef and type does not accept the value' do
    expect{compile_to_catalog(<<-MANIFEST
      $x = Integer.new(undef)
      notify { "one${x}word": }
    MANIFEST
    )}.to raise_error(Puppet::Error, /of type Undef cannot be converted to Integer/)
  end

  it 'errors if converted value is not assignable to the type' do
    expect{compile_to_catalog(<<-MANIFEST
      $x = Integer[1,5].new('42')
      notify { "one${x}word": }
    MANIFEST
    )}.to raise_error(Puppet::Error, /expects an Integer\[1, 5\] value, got Integer\[42, 42\]/)
  end

  it 'accepts and returns a second parameter that is an instance of the first, even when the type has no backing new_function' do
    expect(eval_and_collect_notices(<<-MANIFEST)).to eql(%w(true true true true true true))
      notice(undef == Undef(undef))

      notice(default == Default(default))

      notice(Any == Type(Any))

      $b = Binary('YmluYXI=')
      notice($b == Binary($b))

      $t = Timestamp('2012-03-04T09:10:11.001')
      notice($t == Timestamp($t))

      type MyObject = Object[{attributes => {'type' => String}}]
      $o = MyObject('Remote')
      notice($o == MyObject($o))
    MANIFEST
  end

  context 'when invoked on NotUndef' do
    it 'produces an instance of the NotUndef nested type' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = NotUndef[Integer].new(42)
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Integer, 42]')
    end

    it 'produces the given value when there is no type specified' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = NotUndef.new(42)
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Integer, 42]')
    end
  end

  context 'when invoked on an Integer' do
    it 'produces 42 when given the integer 42' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Integer.new(42)
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Integer, 42]')
    end

    it 'produces 3 when given the float 3.1415' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Integer.new(3.1415)
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Integer, 3]')
    end

    it 'produces 0 from false' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Integer.new(false)
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Integer, 0]')
    end

    it 'produces 1 from true' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Integer.new(true)
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Integer, 1]')
    end

    it "produces an absolute value when third argument is 'true'" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Integer.new(-42, 10, true))
      MANIFEST
      )).to eql(['42'])
    end

    it "does not produce an absolute value when third argument is 'false'" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Integer.new(-42, 10, false))
      MANIFEST
      )).to eql(['-42'])
    end

    it "produces an absolute value from hash {from => val, abs => true}" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Integer.new({from => -42, abs => true}))
      MANIFEST
      )).to eql(['42'])
    end

    it "does not produce an absolute value from hash {from => val, abs => false}" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Integer.new({from => -42, abs => false}))
      MANIFEST
      )).to eql(['-42'])
    end

    context 'when prefixed by a sign' do
      { '+1'     => 1,
        '-1'     => -1,
        '+ 1'    => 1,
        '- 1'    => -1,
        '+0x10'  => 16,
        '+ 0x10' => 16,
        '-0x10'  => -16,
        '- 0x10' => -16
      }.each do |str, result|
        it "produces #{result} from the string '#{str}'" do
          expect(compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}")
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          )).to have_resource("Notify[Integer, #{result}]")
        end
      end
    end

    context "when radix is not set it uses default and" do
      { "10"     => 10,
        "010"    => 8,
        "0x10"   => 16,
        "0X10"   => 16,
        '0B111'  => 7,
        '0b111'  => 7
      }.each do |str, result|
        it "produces #{result} from the string '#{str}'" do
          expect(compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}")
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          )).to have_resource("Notify[Integer, #{result}]")
        end
      end

      { '0x0G'  => :error,
        '08'    => :error,
        '10F'   => :error,
        '0B2'   => :error,
      }.each do |str, result|
        it "errors when given a non Integer compliant string '#{str}'" do
          expect{compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}")
          MANIFEST
        )}.to raise_error(Puppet::Error, /invalid value|cannot be converted to Integer/)
        end
      end
    end

    context "when radix is explicitly set to 'default' it" do
      { "10"     => 10,
        "010"    => 8,
        "0x10"   => 16,
        "0X10"   => 16,
        '0B111'  => 7,
        '0b111'  => 7
      }.each do |str, result|
        it "produces #{result} from the string '#{str}'" do
          expect(compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", default)
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          )).to have_resource("Notify[Integer, #{result}]")
        end
      end
    end

    context "when radix is explicitly set to '2' it" do
      { "10"     => 2,
        "010"    => 2,
        "00010"  => 2,
        '0B111'  => 7,
        '0b111'  => 7,
        '+0B111' => 7,
        '-0b111' => -7,
        '+ 0B111'=> 7,
        '- 0b111'=> -7
      }.each do |str, result|
        it "produces #{result} from the string '#{str}'" do
          expect(compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 2)
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          )).to have_resource("Notify[Integer, #{result}]")
        end
      end

      { '0x10'  => :error,
        '0X10'  => :error,
        '+0X10' => :error,
        '-0X10' => :error,
        '+ 0X10'=> :error,
        '- 0X10'=> :error
      }.each do |str, result|
        it "errors when given the non binary value compliant string '#{str}'" do
          expect{compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 2)
          MANIFEST
        )}.to raise_error(Puppet::Error, /invalid value/)
        end
      end
    end

    context "when radix is explicitly set to '8' it" do
      { "10"     => 8,
        "010"    => 8,
        "00010"  => 8,
        '+00010' => 8,
        '-00010' => -8,
        '+ 00010'=> 8,
        '- 00010'=> -8,
      }.each do |str, result|
        it "produces #{result} from the string '#{str}'" do
          expect(compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 8)
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          )).to have_resource("Notify[Integer, #{result}]")
        end
      end

      { "0x10"  => :error,
        '0X10'  => :error,
        '0B10'  => :error,
        '0b10'  => :error,
        '+0b10' => :error,
        '-0b10' => :error,
        '+ 0b10'=> :error,
        '- 0b10'=> :error,
      }.each do |str, result|
        it "errors when given the non octal value compliant string '#{str}'" do
          expect{compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 8)
          MANIFEST
        )}.to raise_error(Puppet::Error, /invalid value/)
        end
      end
    end

    context "when radix is explicitly set to '16' it" do
      { "10"     => 16,
        "010"    => 16,
        "00010"  => 16,
        "0x10"   => 16,
        "0X10"   => 16,
        "0b1"    => 16*11+1,
        "0B1"    => 16*11+1,
        '+0B1'   => 16*11+1,
        '-0B1'   => -16*11-1,
        '+ 0B1'  => 16*11+1,
        '- 0B1'  => -16*11-1,
      }.each do |str, result|
        it "produces #{result} from the string '#{str}'" do
          expect(compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 16)
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          )).to have_resource("Notify[Integer, #{result}]")
        end
      end

      { '0XGG'  => :error,
        '+0XGG' => :error,
        '-0XGG' => :error,
        '+ 0XGG'=> :error,
        '- 0XGG'=> :error,
      }.each do |str, result|
        it "errors when given the non hexadecimal value compliant string '#{str}'" do
          expect{compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 8)
          MANIFEST
        )}.to raise_error(Puppet::Error, /The string '#{Regexp.escape(str)}' cannot be converted to Integer/)
        end
      end
    end

    context "when radix is explicitly set to '10' it" do
      { "10"     => 10,
        "010"    => 10,
        "00010"  => 10,
        "08"     => 8,
        "0008"   => 8,
      }.each do |str, result|
        it "produces #{result} from the string '#{str}'" do
          expect(compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 10)
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          )).to have_resource("Notify[Integer, #{result}]")
        end
      end

      { '0X10'  => :error,
        '0b10'  => :error,
        '0B10'  => :error,
      }.each do |str, result|
        it "errors when given the non binary value compliant string '#{str}'" do
          expect{compile_to_catalog(<<-"MANIFEST"
            $x = Integer.new("#{str}", 10)
          MANIFEST
        )}.to raise_error(Puppet::Error, /invalid value/)
        end
      end
    end

    context "input can be given in long form " do
      { {'from' => "10", 'radix' => 2}     => 2,
        {'from' => "10", 'radix' => 8}     => 8,
        {'from' => "10", 'radix' => 10}    => 10,
        {'from' => "10", 'radix' => 16}    => 16,
        {'from' => "10", 'radix' => :default}    => 10,
      }.each do |options, result|
        it "produces #{result} from the long form '#{options}'" do
          src = <<-"MANIFEST"
            $x = Integer.new(#{options.to_s.gsub(/:/, '')})
            notify { "${type($x, generalized)}, $x": }
          MANIFEST
          expect(compile_to_catalog(src)).to have_resource("Notify[Integer, #{result}]")
        end
      end
    end

    context 'errors when' do
      it 'radix is wrong and when given directly' do
        expect{compile_to_catalog(<<-"MANIFEST"
          $x = Integer.new('10', 3)
        MANIFEST
      )}.to raise_error(Puppet::Error, /Illegal radix/)
      end

      it 'radix is wrong and when given in long form' do
        expect{compile_to_catalog(<<-"MANIFEST"
          $x = Integer.new({from =>'10', radix=>3})
        MANIFEST
      )}.to raise_error(Puppet::Error, /Illegal radix/)
      end

      it 'value is not numeric and given directly' do
        expect{compile_to_catalog(<<-"MANIFEST"
          $x = Integer.new('eleven', 10)
        MANIFEST
      )}.to raise_error(Puppet::Error, /The string 'eleven' cannot be converted to Integer/)
      end

      it 'value is not numeric and given in long form' do
        expect{compile_to_catalog(<<-"MANIFEST"
      $x = Integer.new({from => 'eleven', radix => 10})
        MANIFEST
      )}.to raise_error(Puppet::Error, /The string 'eleven' cannot be converted to Integer/)
      end
    end
  end

  context 'when invoked on Numeric' do
    { 42 => "Notify[Integer, 42]",
      42.3 => "Notify[Float, 42.3]",
      "42.0" => "Notify[Float, 42.0]",
      "+42.0" => "Notify[Float, 42.0]",
      "-42.0" => "Notify[Float, -42.0]",
      "+ 42.0" => "Notify[Float, 42.0]",
      "- 42.0" => "Notify[Float, -42.0]",
      "42.3" => "Notify[Float, 42.3]",
      "0x10" => "Notify[Integer, 16]",
      "010" => "Notify[Integer, 8]",
      "0.10" => "Notify[Float, 0.1]",
      "0b10" => "Notify[Integer, 2]",
      "0"    => "Notify[Integer, 0]",
      false => "Notify[Integer, 0]",
      true => "Notify[Integer, 1]",
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect}" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Numeric.new(#{input.inspect})
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    it "produces a result when long from hash {from => val} is used" do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Numeric.new({from=>'42'})
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Integer, 42]')
    end

    it "produces an absolute value when second argument is 'true'" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Numeric.new(-42.3, true))
      MANIFEST
      )).to eql(['42.3'])
    end

    it "does not produce an absolute value when second argument is 'false'" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Numeric.new(-42.3, false))
      MANIFEST
      )).to eql(['-42.3'])
    end

    it "produces an absolute value from hash {from => val, abs => true}" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Numeric.new({from => -42.3, abs => true}))
      MANIFEST
      )).to eql(['42.3'])
    end

    it "does not produce an absolute value from hash {from => val, abs => false}" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Numeric.new({from => -42.3, abs => false}))
      MANIFEST
      )).to eql(['-42.3'])
    end
  end

  context 'when invoked on Float' do
    { 42     => "Notify[Float, 42.0]",
      42.3   => "Notify[Float, 42.3]",
      "42.0" => "Notify[Float, 42.0]",
      "+42.0" => "Notify[Float, 42.0]",
      "-42.0" => "Notify[Float, -42.0]",
      "+ 42.0" => "Notify[Float, 42.0]",
      "- 42.0" => "Notify[Float, -42.0]",
      "42.3" => "Notify[Float, 42.3]",
      "0x10" => "Notify[Float, 16.0]",
      "010"  => "Notify[Float, 10.0]",
      "0.10" => "Notify[Float, 0.1]",
      false  => "Notify[Float, 0.0]",
      true   => "Notify[Float, 1.0]",
      '0b10'  => "Notify[Float, 2.0]",
      '0B10'  => "Notify[Float, 2.0]",
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect}" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Float.new(#{input.inspect})
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    it "produces a result when long from hash {from => val} is used" do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Float.new({from=>42})
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Float, 42.0]')
    end

    it "produces an absolute value when second argument is 'true'" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Float.new(-42.3, true))
      MANIFEST
      )).to eql(['42.3'])
    end

    it "does not produce an absolute value when second argument is 'false'" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Float.new(-42.3, false))
      MANIFEST
      )).to eql(['-42.3'])
    end

    it "produces an absolute value from hash {from => val, abs => true}" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Float.new({from => -42.3, abs => true}))
      MANIFEST
      )).to eql(['42.3'])
    end

    it "does not produce an absolute value from hash {from => val, abs => false}" do
      expect(eval_and_collect_notices(<<-MANIFEST
        notice(Float.new({from => -42.3, abs => false}))
      MANIFEST
      )).to eql(['-42.3'])
    end
  end

  context 'when invoked on Boolean' do
    { true     => 'Notify[Boolean, true]',
      false    => 'Notify[Boolean, false]',
      0        => 'Notify[Boolean, false]',
      1        => 'Notify[Boolean, true]',
      0.0      => 'Notify[Boolean, false]',
      1.0      => 'Notify[Boolean, true]',

      'true'   => 'Notify[Boolean, true]',
      'TrUe'   => 'Notify[Boolean, true]',
      'yes'    => 'Notify[Boolean, true]',
      'YeS'    => 'Notify[Boolean, true]',
      'y'      => 'Notify[Boolean, true]',
      'Y'      => 'Notify[Boolean, true]',

      'false'  => 'Notify[Boolean, false]',
      'no'     => 'Notify[Boolean, false]',
      'n'      => 'Notify[Boolean, false]',
      'FalSE'  => 'Notify[Boolean, false]',
      'nO'     => 'Notify[Boolean, false]',
      'N'      => 'Notify[Boolean, false]',
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect}" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Boolean.new(#{input.inspect})
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    it "errors when given an non boolean representation like the string 'hello'" do
      expect{compile_to_catalog(<<-"MANIFEST"
        $x = Boolean.new('hello')
      MANIFEST
      )}.to raise_error(Puppet::Error, /The string 'hello' cannot be converted to Boolean/)
    end

    it "does not convert an undef (as may be expected, but is handled as every other undef)" do
      expect{compile_to_catalog(<<-"MANIFEST"
        $x = Boolean.new(undef)
      MANIFEST
      )}.to raise_error(Puppet::Error, /of type Undef cannot be converted to Boolean/)
    end
  end

  context 'when invoked on Array' do
    { []            => 'Notify[Array[Unit], []]',
      [true]        => 'Notify[Array[Boolean], [true]]',
      {'a'=>true, 'b' => false}   => 'Notify[Array[Array[ScalarData]], [[a, true], [b, false]]]',
      'abc'         => 'Notify[Array[String[1, 1]], [a, b, c]]',
      3             => 'Notify[Array[Integer], [0, 1, 2]]',
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect} and wrap is not given" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Array.new(#{input.inspect})
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    {
      true          => /of type Boolean cannot be converted to Array/,
      42.3          => /of type Float cannot be converted to Array/,
    }.each do |input, error_match|
      it "errors when given an non convertible #{input.inspect} when wrap is not given" do
        expect{compile_to_catalog(<<-"MANIFEST"
          $x = Array.new(#{input.inspect})
        MANIFEST
        )}.to raise_error(Puppet::Error, error_match)
      end
    end

    { []            => 'Notify[Array[Unit], []]',
      [true]        => 'Notify[Array[Boolean], [true]]',
      {'a'=>true}   => 'Notify[Array[Hash[String, Boolean]], [{a => true}]]',
      'hello'       => 'Notify[Array[String], [hello]]',
      true          => 'Notify[Array[Boolean], [true]]',
      42            => 'Notify[Array[Integer], [42]]',
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect} and wrap is given" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Array.new(#{input.inspect}, true)
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    it 'produces an array of byte integer values when given a Binary' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Array.new(Binary('ABC', '%s'))
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Array[Integer], [65, 66, 67]]')
    end

    it 'wraps a binary when given extra argument true' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Array[Any].new(Binary('ABC', '%s'), true)
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Array[Binary], [QUJD]]')
    end
  end

  context 'when invoked on Tuple' do
    { 'abc'         => 'Notify[Array[String[1, 1]], [a, b, c]]',
      3             => 'Notify[Array[Integer], [0, 1, 2]]',
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect} and wrap is not given" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Tuple[Any,3].new(#{input.inspect})
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    it "errors when tuple requirements are not met" do
      expect{compile_to_catalog(<<-"MANIFEST"
        $x = Tuple[Integer,6].new(3)
      MANIFEST
      )}.to raise_error(Puppet::Error, /expects size to be at least 6, got 3/)
    end
  end

  context 'when invoked on Hash' do
    { {}            => 'Notify[Hash[0, 0], {}]',
      []            => 'Notify[Hash[0, 0], {}]',
      {'a'=>true}   => 'Notify[Hash[String, Boolean], {a => true}]',
      [1,2,3,4]     => 'Notify[Hash[Integer, Integer], {1 => 2, 3 => 4}]',
      [[1,2],[3,4]] => 'Notify[Hash[Integer, Integer], {1 => 2, 3 => 4}]',
      'abcd'        => 'Notify[Hash[String[1, 1], String[1, 1]], {a => b, c => d}]',
      4             => 'Notify[Hash[Integer, Integer], {0 => 1, 2 => 3}]',

    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect}" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Hash.new(#{input.inspect})
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    { true             => /Value of type Boolean cannot be converted to Hash/,
      [1,2,3]          => /odd number of arguments for Hash/,
    }.each do |input, error_match|
      it "errors when given an non convertible #{input.inspect}" do
        expect{compile_to_catalog(<<-"MANIFEST"
          $x = Hash.new(#{input.inspect})
        MANIFEST
        )}.to raise_error(Puppet::Error, error_match)
      end
    end

    context 'when using the optional "tree" format' do
      it 'can convert a tree in flat form to a hash' do
        expect(compile_to_catalog(<<-"MANIFEST"
          $x = Hash.new([[[0], a],[[1,0], b],[[1,1], c],[[2,0], d]], tree)
          notify { test: message => $x }
        MANIFEST
        )).to have_resource('Notify[test]').with_parameter(:message, { 0 => 'a', 1 => { 0 => 'b', 1=> 'c'}, 2 => {0 => 'd'} })
      end

      it 'preserves array in flattened tree but overwrites entries if they are present' do
        expect(compile_to_catalog(<<-"MANIFEST"
          $x = Hash.new([[[0], a],[[1,0], b],[[1,1], c],[[2], [overwritten, kept]], [[2,0], d]], tree)
          notify { test: message => $x }
        MANIFEST
        )).to have_resource('Notify[test]').with_parameter(:message, { 0 => 'a', 1 => { 0 => 'b', 1=> 'c'}, 2 => ['d', 'kept'] })
      end

      it 'preserves hash in flattened tree but overwrites entries if they are present' do
        expect(compile_to_catalog(<<-"MANIFEST"
          $x = Hash.new([[[0], a],[[1,0], b],[[1,1], c],[[2], {0 => 0, kept => 1}], [[2,0], d]], tree)
          notify { test: message => $x }
        MANIFEST
  )).to have_resource('Notify[test]').with_parameter(:message, { 0 => 'a', 1 => { 0 => 'b', 1=> 'c'}, 2 => {0=>'d', 'kept'=>1} })
      end
    end

    context 'when using the optional "tree_hash" format' do
      it 'turns array in flattened tree into hash' do
        expect(compile_to_catalog(<<-"MANIFEST"
          $x = Hash.new([[[0], a],[[1,0], b],[[1,1], c],[[2], [overwritten, kept]], [[2,0], d]], hash_tree)
          notify { test: message => $x }
        MANIFEST
        )).to have_resource('Notify[test]').with_parameter(:message, { 0=>'a', 1=>{ 0=>'b', 1=>'c'}, 2=>{0=>'d', 1=>'kept'}})
      end
    end
  end

  context 'when invoked on Struct' do
    { {'a' => 2}      => 'Notify[Struct[{\'a\' => Integer[2, 2]}], {a => 2}]',
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect}" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = Struct[{a => Integer[2]}].new(#{input.inspect})
          notify { "${type($x)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end

    it "errors when tuple requirements are not met" do
      expect{compile_to_catalog(<<-"MANIFEST"
        $x = Struct[{a => Integer[2]}].new({a => 0})
      MANIFEST
      )}.to raise_error(Puppet::Error, /entry 'a' expects an Integer\[2\]/)
    end
  end

  context 'when invoked on String' do
    { {}            => 'Notify[String, {}]',
      []            => 'Notify[String, []]',
      {'a'=>true}   => "Notify[String, {'a' => true}]",
      [1,2,3,4]     => 'Notify[String, [1, 2, 3, 4]]',
      [[1,2],[3,4]] => 'Notify[String, [[1, 2], [3, 4]]]',
      'abcd'        => 'Notify[String, abcd]',
      4             => 'Notify[String, 4]',
    }.each do |input, result|
      it "produces #{result} when given the value #{input.inspect}" do
        expect(compile_to_catalog(<<-MANIFEST
          $x = String.new(#{input.inspect})
          notify { "${type($x, generalized)}, $x": }
        MANIFEST
        )).to have_resource(result)
      end
    end
  end

  context 'when invoked on a type alias' do
    it 'delegates the new to the aliased type' do
      expect(compile_to_catalog(<<-MANIFEST
        type X = Boolean
        $x = X.new('yes')
        notify { "${type($x, generalized)}, $x": }
      MANIFEST
      )).to have_resource('Notify[Boolean, true]')
    end
  end

  context 'when invoked on a Type' do
    it 'creates a Type from its string representation' do
      expect(compile_to_catalog(<<-MANIFEST
        $x = Type.new('Integer[3,10]')
        notify { "${type($x)}": }
      MANIFEST
      )).to have_resource('Notify[Type[Integer[3, 10]]]')
    end
  end
end