1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/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
|