blob: 0b2b756bf238e47f97abd4ca50a97aa8f94d88c0 (
plain)
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
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../spec_helper'
require 'puppet/defaults'
describe "Puppet defaults" do
include Puppet::Util::Execution
after { Puppet.settings.clear }
describe "when setting the :factpath" do
it "should add the :factpath to Facter's search paths" do
Facter.expects(:search).with("/my/fact/path")
Puppet.settings[:factpath] = "/my/fact/path"
end
end
describe "when setting the :certname" do
it "should fail if the certname is not downcased" do
lambda { Puppet.settings[:certname] = "Host.Domain.Com" }.should raise_error(ArgumentError)
end
end
it "should have a clientyamldir setting" do
Puppet.settings[:clientyamldir].should_not be_nil
end
it "should have different values for the yamldir and clientyamldir" do
Puppet.settings[:yamldir].should_not == Puppet.settings[:clientyamldir]
end
# See #1232
it "should not specify a user or group for the clientyamldir" do
Puppet.settings.element(:clientyamldir).owner.should be_nil
Puppet.settings.element(:clientyamldir).group.should be_nil
end
# See #1232
it "should not specify a user or group for the rundir" do
Puppet.settings.element(:rundir).owner.should be_nil
Puppet.settings.element(:rundir).group.should be_nil
end
it "should default to yaml as the catalog format" do
Puppet.settings[:catalog_format].should == "yaml"
end
it "should add /usr/sbin and /sbin to the path if they're not there" do
withenv("PATH" => "/usr/bin:/usr/local/bin") do
Puppet.settings[:path] = "none" # this causes it to ignore the setting
ENV["PATH"].split(File::PATH_SEPARATOR).should be_include("/usr/sbin")
ENV["PATH"].split(File::PATH_SEPARATOR).should be_include("/sbin")
end
end
end
|