Sha256: 746b5f9f9ebbdd2493f766b32e6b850d916fcb946a17a99cb5b08b3a1ef2a619

Contents?: true

Size: 1.88 KB

Versions: 74

Compression:

Stored size: 1.88 KB

Contents

#! /usr/bin/env ruby
require 'spec_helper'
require 'unit/parser/functions/shared'
require 'puppet_spec/compiler'

describe "the 'include' function" do
  include PuppetSpec::Compiler

  before :each do
    @compiler = Puppet::Parser::Compiler.new(Puppet::Node.new("foo"))
    @scope = Puppet::Parser::Scope.new(@compiler)
  end

  it "should exist" do
    expect(Puppet::Parser::Functions.function("include")).to eq("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

  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

Version data entries

74 entries across 74 versions & 1 rubygems

Version Path
puppet-4.7.1 spec/unit/parser/functions/include_spec.rb
puppet-4.7.1-x86-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.7.1-x64-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.7.1-universal-darwin spec/unit/parser/functions/include_spec.rb
puppet-4.7.0 spec/unit/parser/functions/include_spec.rb
puppet-4.7.0-x86-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.7.0-x64-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.7.0-universal-darwin spec/unit/parser/functions/include_spec.rb
puppet-4.6.2 spec/unit/parser/functions/include_spec.rb
puppet-4.6.2-x86-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.6.2-x64-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.6.2-universal-darwin spec/unit/parser/functions/include_spec.rb
puppet-4.6.1-x86-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.6.1 spec/unit/parser/functions/include_spec.rb
puppet-4.6.1-x64-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.6.1-universal-darwin spec/unit/parser/functions/include_spec.rb
puppet-4.5.3 spec/unit/parser/functions/include_spec.rb
puppet-4.5.3-x86-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.5.3-x64-mingw32 spec/unit/parser/functions/include_spec.rb
puppet-4.5.3-universal-darwin spec/unit/parser/functions/include_spec.rb