]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/stdlib/spec/unit/puppet/parser/functions/validate_array_spec.rb
upgrade to concat 2.0.0
[dsa-puppet.git] / modules / stdlib / spec / unit / puppet / parser / functions / validate_array_spec.rb
1 require 'puppet'
2
3 # We don't need this for the basic tests we're doing
4 # require 'spec_helper'
5
6 # Dan mentioned that Nick recommended the function method call
7 # to return the string value for the test description.
8 # this will not even try the test if the function cannot be
9 # loaded.
10 describe Puppet::Parser::Functions.function(:validate_array) do
11
12   # Pulled from Dan's create_resources function
13   def get_scope
14     @topscope = Puppet::Parser::Scope.new
15     # This is necessary so we don't try to use the compiler to discover our parent.
16     @topscope.parent = nil
17     @scope = Puppet::Parser::Scope.new
18     @scope.compiler = Puppet::Parser::Compiler.new(Puppet::Node.new("floppy", :environment => 'production'))
19     @scope.parent = @topscope
20     @compiler = @scope.compiler
21   end
22
23   describe 'when calling validate_array from puppet' do
24
25     %w{ true false }.each do |the_string|
26
27       it "should not compile when #{the_string} is a string" do
28         Puppet[:code] = "validate_array('#{the_string}')"
29         get_scope
30         expect { @scope.compiler.compile }.should raise_error(Puppet::ParseError, /is not an Array/)
31       end
32
33       it "should not compile when #{the_string} is a bare word" do
34         Puppet[:code] = "validate_array(#{the_string})"
35         get_scope
36         expect { @scope.compiler.compile }.should raise_error(Puppet::ParseError, /is not an Array/)
37       end
38
39     end
40
41     it "should compile when multiple array arguments are passed" do
42       Puppet[:code] = <<-'ENDofPUPPETcode'
43         $foo = [ ]
44         $bar = [ 'one', 'two' ]
45         validate_array($foo, $bar)
46       ENDofPUPPETcode
47       get_scope
48       @scope.compiler.compile
49     end
50
51     it "should not compile when an undef variable is passed" do
52       Puppet[:code] = <<-'ENDofPUPPETcode'
53         $foo = undef
54         validate_array($foo)
55       ENDofPUPPETcode
56       get_scope
57       expect { @scope.compiler.compile }.should raise_error(Puppet::ParseError, /is not an Array/)
58     end
59
60   end
61
62 end
63