Sha256: b3fd296a072b98bc22af32ed78f15b0e502c63182b1c7b4a03243ea3aeffd955

Contents?: true

Size: 1.64 KB

Versions: 15

Compression:

Stored size: 1.64 KB

Contents

require 'spec_helper'
require 'puppet/pops'
require 'puppet/loaders'

describe 'the split function' do

  before(:all) do
    loaders = Puppet::Pops::Loaders.new(Puppet::Node::Environment.create(:testing, []))
    Puppet.push_context({:loaders => loaders}, "test-examples")
  end

  after(:all) do
    Puppet::Pops::Loaders.clear
    Puppet::pop_context()
  end

  def split(*args)
    Puppet.lookup(:loaders).puppet_system_loader.load(:function, 'split').call({}, *args)
  end

  let(:type_parser) { Puppet::Pops::Types::TypeParser.new }

  it 'should raise an Error if there is less than 2 arguments' do
    expect { split('a,b') }.to raise_error(/called with mis-matched arguments/)
  end

  it 'should raise an Error if there is more than 2 arguments' do
    expect { split('a,b','foo', 'bar') }.to raise_error(/called with mis-matched arguments/)
  end

  it 'should raise a RegexpError if the regexp is malformed' do
    expect { split('a,b',')') }.to raise_error(/unmatched close parenthesis/)
  end

  it 'should handle pattern in string form' do
    expect(split('a,b',',')).to eql(['a', 'b'])
  end

  it 'should handle pattern in Regexp form' do
    expect(split('a,b',/,/)).to eql(['a', 'b'])
  end

  it 'should handle pattern in Regexp Type form' do
    expect(split('a,b',type_parser.parse('Regexp[/,/]'))).to eql(['a', 'b'])
  end

  it 'should handle pattern in Regexp Type form with empty regular expression' do
    expect(split('ab',type_parser.parse('Regexp[//]'))).to eql(['a', 'b'])
  end

  it 'should handle pattern in Regexp Type form with missing regular expression' do
    expect(split('ab',type_parser.parse('Regexp'))).to eql(['a', 'b'])
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
puppet-4.2.3 spec/unit/functions/split_spec.rb
puppet-4.2.3-x86-mingw32 spec/unit/functions/split_spec.rb
puppet-4.2.3-x64-mingw32 spec/unit/functions/split_spec.rb
puppet-4.2.2 spec/unit/functions/split_spec.rb
puppet-4.2.2-x86-mingw32 spec/unit/functions/split_spec.rb
puppet-4.2.2-x64-mingw32 spec/unit/functions/split_spec.rb
puppet-4.2.1 spec/unit/functions/split_spec.rb
puppet-4.2.1-x86-mingw32 spec/unit/functions/split_spec.rb
puppet-4.2.1-x64-mingw32 spec/unit/functions/split_spec.rb
puppet-4.2.0 spec/unit/functions/split_spec.rb
puppet-4.2.0-x86-mingw32 spec/unit/functions/split_spec.rb
puppet-4.2.0-x64-mingw32 spec/unit/functions/split_spec.rb
puppet-4.1.0 spec/unit/functions/split_spec.rb
puppet-4.1.0-x86-mingw32 spec/unit/functions/split_spec.rb
puppet-4.1.0-x64-mingw32 spec/unit/functions/split_spec.rb