Sha256: fcd4d9b7eeb3be88dc9c12de527722ded8bc5743483c42700563400e9e21f31f

Contents?: true

Size: 1.74 KB

Versions: 57

Compression:

Stored size: 1.74 KB

Contents

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

require 'puppet/pops'
require 'puppet/pops/evaluator/evaluator_impl'


# relative to this spec file (./) does not work as this file is loaded by rspec
require File.join(File.dirname(__FILE__), '/evaluator_rspec_helper')

describe 'Puppet::Pops::Evaluator::EvaluatorImpl' do
  include EvaluatorRspecHelper

  context "When evaluator performs string interpolation" do
    it "should interpolate a bare word as a variable name, \"${var}\"" do
      a_block = block(var('a').set(10), string('value is ', text(fqn('a')), ' yo'))
      evaluate(a_block).should == "value is 10 yo"
    end

    it "should interpolate a variable in a text expression, \"${$var}\"" do
      a_block = block(var('a').set(10), string('value is ', text(var(fqn('a'))), ' yo'))
      evaluate(a_block).should == "value is 10 yo"
    end

    it "should interpolate a variable, \"$var\"" do
      a_block = block(var('a').set(10), string('value is ', var(fqn('a')), ' yo'))
      evaluate(a_block).should == "value is 10 yo"
    end

    it "should interpolate any expression in a text expression, \"${$var*2}\"" do
      a_block = block(var('a').set(5), string('value is ', text(var(fqn('a')) * 2) , ' yo'))
      evaluate(a_block).should == "value is 10 yo"
    end

    it "should interpolate any expression without a text expression, \"${$var*2}\"" do
      # there is no concrete syntax for this, but the parser can generate this simpler
      # equivalent form where the expression is not wrapped in a TextExpression
      a_block = block(var('a').set(5), string('value is ', var(fqn('a')) * 2 , ' yo'))
      evaluate(a_block).should == "value is 10 yo"
    end

    # TODO: Add function call tests - Pending implementation of calls in the evaluator
  end
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
puppet-3.8.7 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.7-x86-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.7-x64-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.6 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.6-x86-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.6-x64-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.5 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.5-x86-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.5-x64-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.4 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.4-x86-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.4-x64-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.3 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.3-x86-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.3-x64-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.2 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.2-x86-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.2-x64-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.1 spec/unit/pops/evaluator/string_interpolation_spec.rb
puppet-3.8.1-x86-mingw32 spec/unit/pops/evaluator/string_interpolation_spec.rb