Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / validate_array_spec.rb
1 #! /usr/bin/env ruby -S rspec
2 require 'spec_helper_acceptance'
3
4 describe 'validate_array function' do
5   describe 'success' do
6     it 'validates a single argument' do
7       pp = <<-EOS
8       $one = ['a', 'b']
9       validate_array($one)
10       EOS
11
12       apply_manifest(pp, :catch_failures => true)
13     end
14     it 'validates an multiple arguments' do
15       pp = <<-EOS
16       $one = ['a', 'b']
17       $two = [['c'], 'd']
18       validate_array($one,$two)
19       EOS
20
21       apply_manifest(pp, :catch_failures => true)
22     end
23     [
24       %{validate_array({'a' => 'hash' })},
25       %{validate_array('string')},
26       %{validate_array(false)},
27       %{validate_array(undef)}
28     ].each do |pp|
29       it "rejects #{pp.inspect}" do
30         expect(apply_manifest(pp, :expect_failures => true).stderr).to match(/is not an Array\.  It looks to be a/)
31       end
32     end
33   end
34   describe 'failure' do
35     it 'handles improper number of arguments'
36   end
37 end