Sha256: b244452ca2389251691494d7ae1cb05ca0b364458dc09c15799e8bdf22d9142d

Contents?: true

Size: 2 KB

Versions: 196

Compression:

Stored size: 2 KB

Contents

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 => double('settings'), :desc => "test") }

  it "is of type :priority" do
    expect(setting.type).to eq(:priority)
  end

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

    it "returns the same value if given an integer" do
      expect(setting.munge(5)).to eq(5)
    end

    it "returns an integer if given a decimal string" do
      expect(setting.munge('12')).to eq(12)
    end

    it "returns a negative integer if given a negative integer string" do
      expect(setting.munge('-5')).to eq(-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|
          expect(setting.munge(value)).to eq(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|
          expect(setting.munge(value)).to eq(converted_value)
        end
      end
    end
  end
end

Version data entries

196 entries across 196 versions & 1 rubygems

Version Path
puppet-6.29.0 spec/unit/settings/priority_setting_spec.rb
puppet-6.29.0-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.29.0-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.29.0-universal-darwin spec/unit/settings/priority_setting_spec.rb
puppet-6.28.0 spec/unit/settings/priority_setting_spec.rb
puppet-6.28.0-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.28.0-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.28.0-universal-darwin spec/unit/settings/priority_setting_spec.rb
puppet-6.27.0 spec/unit/settings/priority_setting_spec.rb
puppet-6.27.0-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.27.0-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.27.0-universal-darwin spec/unit/settings/priority_setting_spec.rb
puppet-6.26.0 spec/unit/settings/priority_setting_spec.rb
puppet-6.26.0-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.26.0-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.26.0-universal-darwin spec/unit/settings/priority_setting_spec.rb
puppet-6.25.1 spec/unit/settings/priority_setting_spec.rb
puppet-6.25.1-x86-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.25.1-x64-mingw32 spec/unit/settings/priority_setting_spec.rb
puppet-6.25.1-universal-darwin spec/unit/settings/priority_setting_spec.rb