Sha256: 93fc21674196345913262cda723cd4ec30b7a968f1e006d1920f686a64ba6218

Contents?: true

Size: 1.79 KB

Versions: 53

Compression:

Stored size: 1.79 KB

Contents

#! /usr/bin/env ruby
require 'spec_helper'

describe "the require function" do
  before :all do
    Puppet::Parser::Functions.autoloader.loadall
  end

  before :each do
    @catalog = stub 'catalog'

    node      = Puppet::Node.new('localhost')
    compiler  = Puppet::Parser::Compiler.new(node)
    @scope = Puppet::Parser::Scope.new(compiler)

    @scope.stubs(:findresource)
    @klass = stub 'class', :name => "myclass"
    @scope.stubs(:find_hostclass).returns(@klass)

    @resource = Puppet::Parser::Resource.new(:file, "/my/file", :scope => @scope, :source => "source")
    @scope.stubs(:resource).returns @resource
  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
    @scope.stubs(:function_include)
    @scope.function_require(["myclass"])

    @resource["require"].should be_instance_of(Array)
    @resource["require"][0].should be_instance_of(Puppet::Resource)
  end

  it "should lookup the absolute class path" do
    @scope.stubs(:function_include)

    @scope.expects(:find_hostclass).with("myclass").returns(@klass)
    @klass.expects(:name).returns("myclass")

    @scope.function_require(["myclass"])
  end

  it "should append the required class to the require parameter" do
    @scope.stubs(:function_include)

    one = Puppet::Resource.new(:file, "/one")
    @resource[:require] = one
    @scope.function_require(["myclass"])

    @resource[:require].should be_include(one)
    @resource[:require].detect { |r| r.to_s == "Class[Myclass]" }.should be_instance_of(Puppet::Resource)
  end
end

Version data entries

53 entries across 53 versions & 2 rubygems

Version Path
puppet-3.6.2 spec/unit/parser/functions/require_spec.rb
puppet-3.6.2-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.6.1 spec/unit/parser/functions/require_spec.rb
puppet-3.6.1-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.6.0 spec/unit/parser/functions/require_spec.rb
puppet-3.6.0-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.6.0.rc1 spec/unit/parser/functions/require_spec.rb
puppet-3.6.0.rc1-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.5.1 spec/unit/parser/functions/require_spec.rb
puppet-3.5.1-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.5.1.rc1 spec/unit/parser/functions/require_spec.rb
puppet-3.5.1.rc1-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.5.0.rc3 spec/unit/parser/functions/require_spec.rb
puppet-3.5.0.rc3-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.5.0.rc2 spec/unit/parser/functions/require_spec.rb
puppet-3.5.0.rc2-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.5.0.rc1 spec/unit/parser/functions/require_spec.rb
puppet-3.5.0.rc1-x86-mingw32 spec/unit/parser/functions/require_spec.rb
puppet-3.4.3 spec/unit/parser/functions/require_spec.rb
puppet-3.4.2 spec/unit/parser/functions/require_spec.rb