Sha256: c1149d1286d5b4f10ff1920026299a3deabd3b0c455b51833d3e1817a9bc6445

Contents?: true

Size: 1.77 KB

Versions: 97

Compression:

Stored size: 1.77 KB

Contents

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

describe 'the match 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

  let(:func) do
    Puppet.lookup(:loaders).puppet_system_loader.load(:function, 'match')
  end

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


  it 'matches string and regular expression without captures' do
    expect(func.call({}, 'abc123', /[a-z]+[1-9]+/)).to eql(['abc123'])
  end

  it 'matches string and regular expression with captures' do
    expect(func.call({}, 'abc123', /([a-z]+)([1-9]+)/)).to eql(['abc123', 'abc', '123'])
  end

  it 'produces nil if match is not found' do
    expect(func.call({}, 'abc123', /([x]+)([6]+)/)).to be_nil
  end

  [ 'Pattern[/([a-z]+)([1-9]+)/]',       # regexp
    'Pattern["([a-z]+)([1-9]+)"]',       # string
    'Regexp[/([a-z]+)([1-9]+)/]',        # regexp type
    'Pattern[/x9/, /([a-z]+)([1-9]+)/]', # regexp, first found matches
  ].each do |pattern|
    it "matches string and type #{pattern} with captures" do
      expect(func.call({}, 'abc123', type(pattern))).to eql(['abc123', 'abc', '123'])
    end
  end

  it 'matches an array of strings and yields a map of the result' do
    expect(func.call({}, ['abc123', '2a', 'xyz2'], /([a-z]+)[1-9]+/)).to eql([['abc123', 'abc'], nil, ['xyz2', 'xyz']])
  end

  it 'raises error if Regexp type without regexp is used' do
    expect{func.call({}, 'abc123', type('Regexp'))}.to raise_error(ArgumentError, /Given Regexp Type has no regular expression/)
  end

  def type(s)
    Puppet::Pops::Types::TypeParser.new.parse(s) 
  end
end

Version data entries

97 entries across 97 versions & 1 rubygems

Version Path
puppet-3.8.7 spec/unit/functions/match_spec.rb
puppet-3.8.7-x86-mingw32 spec/unit/functions/match_spec.rb
puppet-3.8.7-x64-mingw32 spec/unit/functions/match_spec.rb
puppet-4.4.1 spec/unit/functions/match_spec.rb
puppet-4.4.1-x86-mingw32 spec/unit/functions/match_spec.rb
puppet-4.4.1-x64-mingw32 spec/unit/functions/match_spec.rb
puppet-4.4.1-universal-darwin spec/unit/functions/match_spec.rb
puppet-4.4.0 spec/unit/functions/match_spec.rb
puppet-4.4.0-x86-mingw32 spec/unit/functions/match_spec.rb
puppet-4.4.0-x64-mingw32 spec/unit/functions/match_spec.rb
puppet-4.4.0-universal-darwin spec/unit/functions/match_spec.rb
puppet-3.8.6 spec/unit/functions/match_spec.rb
puppet-3.8.6-x86-mingw32 spec/unit/functions/match_spec.rb
puppet-3.8.6-x64-mingw32 spec/unit/functions/match_spec.rb
puppet-4.3.2 spec/unit/functions/match_spec.rb
puppet-4.3.2-x86-mingw32 spec/unit/functions/match_spec.rb
puppet-4.3.2-x64-mingw32 spec/unit/functions/match_spec.rb
puppet-3.8.5 spec/unit/functions/match_spec.rb
puppet-3.8.5-x86-mingw32 spec/unit/functions/match_spec.rb
puppet-3.8.5-x64-mingw32 spec/unit/functions/match_spec.rb