Sha256: 801ea6b678f5370b41dc0c907ea377a38f925d7caec580de6449a940c9cb5e0d

Contents?: true

Size: 1.04 KB

Versions: 200

Compression:

Stored size: 1.04 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
    expect(Puppet::Util::Package).to receive(:versioncmp).with('1.2', '1.3').and_return(-1)

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

Version data entries

200 entries across 200 versions & 1 rubygems

Version Path
puppet-7.12.1 spec/unit/functions/versioncmp_spec.rb
puppet-7.12.1-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-7.12.1-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-7.12.1-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-6.25.1 spec/unit/functions/versioncmp_spec.rb
puppet-6.25.1-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.25.1-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.25.1-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-7.12.0 spec/unit/functions/versioncmp_spec.rb
puppet-7.12.0-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-7.12.0-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-7.12.0-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-6.25.0 spec/unit/functions/versioncmp_spec.rb
puppet-6.25.0-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.25.0-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-6.25.0-universal-darwin spec/unit/functions/versioncmp_spec.rb
puppet-7.11.0 spec/unit/functions/versioncmp_spec.rb
puppet-7.11.0-x86-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-7.11.0-x64-mingw32 spec/unit/functions/versioncmp_spec.rb
puppet-7.11.0-universal-darwin spec/unit/functions/versioncmp_spec.rb