Sha256: 9db7f5634cf425173192b19ab9f02e78dd1ba9f636b2f8f53cc4b029903f2c50

Contents?: true

Size: 1.39 KB

Versions: 2

Compression:

Stored size: 1.39 KB

Contents

#! /usr/bin/env ruby -S rspec
require 'spec_helper'

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

  before :each do
    @collector = stub_everything 'collector'
    node      = Puppet::Node.new('localhost')
    @compiler = Puppet::Parser::Compiler.new(node)
    @scope    = Puppet::Parser::Scope.new(@compiler)
    @compiler.stubs(:add_collection).with(@collector)
  end

  it "should exist" do
    Puppet::Parser::Functions.function("realize").should == "function_realize"
  end

  it "should create a Collector when called" do

    Puppet::Parser::Collector.expects(:new).returns(@collector)

    @scope.function_realize("test")
  end

  it "should assign the passed-in resources to the collector" do
    Puppet::Parser::Collector.stubs(:new).returns(@collector)

    @collector.expects(:resources=).with(["test"])

    @scope.function_realize("test")
  end

  it "should flatten the resources assigned to the collector" do
    Puppet::Parser::Collector.stubs(:new).returns(@collector)

    @collector.expects(:resources=).with(["test"])

    @scope.function_realize([["test"]])
  end

  it "should let the compiler know this collector" do
    Puppet::Parser::Collector.stubs(:new).returns(@collector)
    @collector.stubs(:resources=).with(["test"])

    @compiler.expects(:add_collection).with(@collector)

    @scope.function_realize("test")
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
puppet-3.0.0.rc5 spec/unit/parser/functions/realize_spec.rb
puppet-3.0.0.rc4 spec/unit/parser/functions/realize_spec.rb