Sha256: 42bedd255ffcbfeb65574b1c2fd7d447951977b31f95446570470be5fca396d7

Contents?: true

Size: 1.06 KB

Versions: 140

Compression:

Stored size: 1.06 KB

Contents

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

describe "the versioncmp 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 versioncmp(*args)
    Puppet.lookup(:loaders).puppet_system_loader.load(:function, 'versioncmp').call({}, *args)
  end

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

  it 'should raise an Error if there is less than 2 arguments' do
    expect { versioncmp('a,b') }.to raise_error(/expects 2 arguments, got 1/)
  end

  it 'should raise an Error if there is more than 2 arguments' do
    expect { versioncmp('a,b','foo', 'bar') }.to raise_error(/expects 2 arguments, got 3/)
  end

  it "should call Puppet::Util::Package.versioncmp (included in scope)" do
    Puppet::Util::Package.expects(:versioncmp).with('1.2', '1.3').returns(-1)

    expect(versioncmp('1.2', '1.3')).to eq -1
  end
end

Version data entries

140 entries across 140 versions & 1 rubygems

Version Path
puppet-5.3.7 spec/unit/functions/versioncmp_spec.rb
puppet-5.3.7-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-5.3.7-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-5.3.7-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-4.10.12 spec/unit/functions/versioncmp_spec.rb
puppet-4.10.12-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-4.10.12-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-4.10.12-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-4.10.11 spec/unit/functions/versioncmp_spec.rb
puppet-4.10.11-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-4.10.11-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-4.10.11-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-5.3.6 spec/unit/functions/versioncmp_spec.rb
puppet-5.3.6-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-5.3.6-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-5.3.6-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-5.4.0 spec/unit/functions/versioncmp_spec.rb
puppet-5.4.0-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-5.4.0-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-5.4.0-universal-darwin spec/unit/functions/versioncmp_spec.rb