Sha256: d7a44540ebd14af6252786ad37652a2d5aaf578ed7e7b131b430a0da6f5726b5

Contents?: true

Size: 1.98 KB

Versions: 39

Compression:

Stored size: 1.98 KB

Contents

#!/usr/bin/env ruby
require 'spec_helper'

require 'puppet/settings'
require 'puppet/settings/priority_setting'
require 'puppet/util/platform'

describe Puppet::Settings::PrioritySetting do
  let(:setting) { described_class.new(:settings => mock('settings'), :desc => "test") }

  it "is of type :priority" do
    setting.type.should == :priority
  end

  describe "when munging the setting" do
    it "passes nil through" do
      setting.munge(nil).should be_nil
    end

    it "returns the same value if given an integer" do
      setting.munge(5).should == 5
    end

    it "returns an integer if given a decimal string" do
      setting.munge('12').should == 12
    end

    it "returns a negative integer if given a negative integer string" do
      setting.munge('-5').should == -5
    end

    it "fails if given anything else" do
      [ 'foo', 'realtime', true, 8.3, [] ].each do |value|
        expect {
          setting.munge(value)
        }.to raise_error(Puppet::Settings::ValidationError)
      end
    end

    describe "on a Unix-like platform it", :unless => Puppet::Util::Platform.windows? do
      it "parses high, normal, low, and idle priorities" do
        {
          'high'   => -10,
          'normal' => 0,
          'low'    => 10,
          'idle'   => 19
        }.each do |value, converted_value|
          setting.munge(value).should == converted_value
        end
      end
    end

    describe "on a Windows-like platform it", :if => Puppet::Util::Platform.windows? do
      it "parses high, normal, low, and idle priorities" do
        {
          'high'   => Puppet::Util::Windows::Process::HIGH_PRIORITY_CLASS,
          'normal' => Puppet::Util::Windows::Process::NORMAL_PRIORITY_CLASS,
          'low'    => Puppet::Util::Windows::Process::BELOW_NORMAL_PRIORITY_CLASS,
          'idle'   => Puppet::Util::Windows::Process::IDLE_PRIORITY_CLASS
        }.each do |value, converted_value|
          setting.munge(value).should == converted_value
        end
      end
    end
  end
end

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
puppet-3.8.7 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.7-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.7-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.6 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.6-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.6-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.5 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.5-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.5-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.4 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.4-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.4-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.3 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.3-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.3-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.2 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.2-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.2-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.1 spec/unit/settings/priority_setting_spec.rb
puppet-3.8.1-x86-mingw32 spec/unit/settings/priority_setting_spec.rb