Sha256: d7f2e6943a7a94afdb8534f63bd8713870a7e38f80c93845c8fa5b43666fbad3

Contents?: true

Size: 1.56 KB

Versions: 208

Compression:

Stored size: 1.56 KB

Contents

require 'spec_helper'
require 'puppet/parser/ast/block_expression'

describe 'Puppet::Parser::AST::BlockExpression' do
  class StackDepthAST < Puppet::Parser::AST
    attr_reader :call_depth
    def evaluate(*options)
      @call_depth = caller.length
    end
  end

  NO_SCOPE = nil

  def depth_probe
    StackDepthAST.new
  end

  def sequence_probe(name)
    probe = double("Sequence Probe #{name}")
    expect(probe).to receive(:safeevaluate).ordered
    probe
  end

  def block_of(children)
    Puppet::Parser::AST::BlockExpression.new(:children => children)
  end

  def assert_all_at_same_depth(*probes)
    depth0 = probes[0].call_depth
    probes.drop(1).each do |p|
      expect(p.call_depth).to eq(depth0)
    end
  end

  it "evaluates all its children at the same stack depth" do
    depth_probes = [depth_probe, depth_probe]
    expr = block_of(depth_probes)

    expr.evaluate(NO_SCOPE)

    assert_all_at_same_depth(*depth_probes)
  end

  it "evaluates sequenced children at the same stack depth" do
    depth1 = depth_probe
    depth2 = depth_probe
    depth3 = depth_probe

    expr1 = block_of([depth1])
    expr2 = block_of([depth2])
    expr3 = block_of([depth3])

    expr1.sequence_with(expr2).sequence_with(expr3).evaluate(NO_SCOPE)

    assert_all_at_same_depth(depth1, depth2, depth3)
  end

  it "evaluates sequenced children in order" do
    expr1 = block_of([sequence_probe("Step 1")])
    expr2 = block_of([sequence_probe("Step 2")])
    expr3 = block_of([sequence_probe("Step 3")])

    expr1.sequence_with(expr2).sequence_with(expr3).evaluate(NO_SCOPE)
  end
end

Version data entries

208 entries across 208 versions & 1 rubygems

Version Path
puppet-6.18.0 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.18.0-x86-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.18.0-x64-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.18.0-universal-darwin spec/unit/parser/ast/block_expression_spec.rb
puppet-6.17.0 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.17.0-x86-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.17.0-x64-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.17.0-universal-darwin spec/unit/parser/ast/block_expression_spec.rb