Sha256: f65ba52e2436e9dc60fc56b56ad0843f02f1965d1659d952cfbd96dc29a796de

Contents?: true

Size: 1.03 KB

Versions: 44

Compression:

Stored size: 1.03 KB

Contents

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

describe "the versioncmp function" do

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

  after(:each) do
    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

44 entries across 44 versions & 1 rubygems

Version Path
puppet-6.4.0 spec/unit/functions/versioncmp_spec.rb
puppet-6.4.0-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.4.0-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.4.0-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-6.0.7 spec/unit/functions/versioncmp_spec.rb
puppet-6.0.7-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.0.7-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.0.7-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-6.3.0 spec/unit/functions/versioncmp_spec.rb
puppet-6.3.0-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.3.0-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.3.0-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-6.2.0 spec/unit/functions/versioncmp_spec.rb
puppet-6.2.0-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.2.0-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.2.0-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-6.0.5 spec/unit/functions/versioncmp_spec.rb
puppet-6.0.5-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.0.5-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.0.5-universal-darwin spec/unit/functions/versioncmp_spec.rb