blob: 577a52a42536d7a9adef8710bab9f608b72abff7 (
plain)
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
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../../../spec_helper'
describe "the require function" do
before :each do
@catalog = stub 'catalog'
@compiler = stub 'compiler', :catalog => @catalog
@resource = stub 'resource', :set_parameter => nil, :metaparam_compatibility_mode? => false
@scope = Puppet::Parser::Scope.new()
@scope.stubs(:resource).returns @resource
@scope.stubs(:findresource)
@scope.stubs(:compiler).returns(@compiler)
end
it "should exist" do
Puppet::Parser::Functions.function("require").should == "function_require"
end
it "should delegate to the 'include' puppet function" do
@scope.expects(:function_include).with("myclass")
@scope.function_require("myclass")
end
it "should set the 'require' prarameter on the resource to a resource reference" do
@resource.expects(:set_parameter).with { |name, value| name == :require and value.is_a?(Puppet::Parser::Resource::Reference) }
@scope.stubs(:function_include)
@scope.function_require("myclass")
end
it "should verify the 'include' function is loaded" do
Puppet::Parser::Functions.expects(:function).with(:include).returns(:function_include)
@scope.stubs(:function_include)
@scope.function_require("myclass")
end
it "should include the class but not add a dependency if used on a client not at least version 0.25" do
@resource.expects(:metaparam_compatibility_mode?).returns true
@scope.expects(:warning)
@resource.expects(:set_parameter).never
@scope.expects(:function_include)
@scope.function_require("myclass")
end
end
|