File: inline_template_spec.rb

package info (click to toggle)
puppet 4.8.2-5~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 20,780 kB
  • sloc: ruby: 236,746; xml: 1,586; sh: 1,182; lisp: 299; sql: 103; yacc: 72; makefile: 52
file content (34 lines) | stat: -rw-r--r-- 1,142 bytes parent folder | download | duplicates (2)
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
#! /usr/bin/env ruby
require 'spec_helper'

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

  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

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