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
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'unit/parser/functions/shared'
describe "the 'include' function" do
before :all do
Puppet::Parser::Functions.autoloader.loadall
end
before :each do
@compiler = Puppet::Parser::Compiler.new(Puppet::Node.new("foo"))
@scope = Puppet::Parser::Scope.new(@compiler)
end
it "should exist" do
Puppet::Parser::Functions.function("include").should == "function_include"
end
it "should include a single class" do
inc = "foo"
@compiler.expects(:evaluate_classes).with {|klasses,parser,lazy| klasses == [inc]}.returns([inc])
@scope.function_include(["foo"])
end
it "should include multiple classes" do
inc = ["foo","bar"]
@compiler.expects(:evaluate_classes).with {|klasses,parser,lazy| klasses == inc}.returns(inc)
@scope.function_include(["foo","bar"])
end
it "should include multiple classes passed in an array" do
inc = ["foo","bar"]
@compiler.expects(:evaluate_classes).with {|klasses,parser,lazy| klasses == inc}.returns(inc)
@scope.function_include([["foo","bar"]])
end
it "should flatten nested arrays" do
inc = ["foo","bar","baz"]
@compiler.expects(:evaluate_classes).with {|klasses,parser,lazy| klasses == inc}.returns(inc)
@scope.function_include([["foo","bar"],"baz"])
end
it "should not lazily evaluate the included class" do
@compiler.expects(:evaluate_classes).with {|klasses,parser,lazy| lazy == false}.returns("foo")
@scope.function_include(["foo"])
end
it "should raise if the class is not found" do
@scope.stubs(:source).returns(true)
expect { @scope.function_include(["nosuchclass"]) }.to raise_error(Puppet::Error)
end
describe "When the future parser is in use" do
require 'puppet/pops'
require 'puppet_spec/compiler'
include PuppetSpec::Compiler
before(:each) do
Puppet[:parser] = 'future'
end
it_should_behave_like 'all functions transforming relative to absolute names', :function_include
it_should_behave_like 'an inclusion function, regardless of the type of class reference,', :include
end
end
|