Sha256: fcf25cc284c2ebed0fb75b3edc70019e2582992fa8f0e4d1bb2f52c6515ba385

Contents?: true

Size: 1.27 KB

Versions: 44

Compression:

Stored size: 1.27 KB

Contents

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

describe "the inline_template function" do
  let(:node) { Puppet::Node.new('localhost') }
  let(:compiler) { Puppet::Parser::Compiler.new(node) }
  let(:scope) { Puppet::Parser::Scope.new(compiler) }

  it "should concatenate template wrapper outputs for multiple templates" do
    expect(inline_template("template1", "template2")).to eq("template1template2")
  end

  it "should raise an error if the template raises an error" do
    expect { inline_template("<% raise 'error' %>") }.to raise_error(Puppet::ParseError)
  end

  it "is not interfered with by a variable called 'string' (#14093)" do
    scope['string'] = "this is a variable"
    expect(inline_template("this is a template")).to eq("this is a template")
  end

  it "has access to a variable called 'string' (#14093)" do
    scope['string'] = "this is a variable"
    expect(inline_template("string was: <%= @string %>")).to eq("string was: this is a variable")
  end

  it 'is not available when --tasks is on' do
    Puppet[:tasks] = true
    expect {
      inline_template("<%= lookupvar('myvar') %>")
    }.to raise_error(Puppet::ParseError, /is only available when compiling a catalog/)
  end

  def inline_template(*templates)
    scope.function_inline_template(templates)
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
puppet-6.4.0 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.4.0-x86-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.4.0-x64-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.4.0-universal-darwin spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.7 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.7-x86-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.7-x64-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.7-universal-darwin spec/unit/parser/functions/inline_template_spec.rb
puppet-6.3.0 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.3.0-x86-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.3.0-x64-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.3.0-universal-darwin spec/unit/parser/functions/inline_template_spec.rb
puppet-6.2.0 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.2.0-x86-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.2.0-x64-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.2.0-universal-darwin spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.5 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.5-x86-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.5-x64-mingw32 spec/unit/parser/functions/inline_template_spec.rb
puppet-6.0.5-universal-darwin spec/unit/parser/functions/inline_template_spec.rb