Sha256: 4e858b015b21878877aaf89b23984cd76ece62477fe310e9a6b53155899bf12b

Contents?: true

Size: 1.57 KB

Versions: 132

Compression:

Stored size: 1.57 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

132 entries across 132 versions & 1 rubygems

Version Path
puppet-5.5.22 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.22-x86-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.22-x64-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.22-universal-darwin spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.21 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.21-x86-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.21-x64-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.21-universal-darwin spec/unit/parser/ast/block_expression_spec.rb
puppet-6.16.0 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.16.0-x86-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.16.0-x64-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.16.0-universal-darwin spec/unit/parser/ast/block_expression_spec.rb
puppet-6.15.0 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.15.0-x86-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.15.0-x64-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-6.15.0-universal-darwin spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.20 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.20-x86-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.20-x64-mingw32 spec/unit/parser/ast/block_expression_spec.rb
puppet-5.5.20-universal-darwin spec/unit/parser/ast/block_expression_spec.rb