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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
#!/usr/bin/env ruby
$:.unshift("../lib").unshift("../../lib") if __FILE__ =~ /\.rb$/
require 'puppet'
require 'puppet/client'
require 'puppet/server'
require 'puppettest'
class TestMasterClient < Test::Unit::TestCase
include PuppetTest::ServerTest
def mkmaster(file = nil)
master = nil
file ||= mktestmanifest()
# create our master
assert_nothing_raised() {
# this is the default server setup
master = Puppet::Server::Master.new(
:Manifest => file,
:UseNodes => false,
:Local => true
)
}
return master
end
def mkclient(master = nil)
master ||= mkmaster()
client = nil
assert_nothing_raised() {
client = Puppet::Client::MasterClient.new(
:Master => master
)
}
return client
end
def test_disable
manifest = mktestmanifest
master = mkmaster(manifest)
client = mkclient(master)
assert(! FileTest.exists?(@createdfile))
assert_nothing_raised {
client.disable
}
assert_nothing_raised {
client.run
}
assert(! FileTest.exists?(@createdfile), "Disabled client ran")
assert_nothing_raised {
client.enable
}
assert_nothing_raised {
client.run
}
assert(FileTest.exists?(@createdfile), "Enabled client did not run")
end
# Make sure we're getting the client version in our list of facts
def test_clientversionfact
facts = nil
assert_nothing_raised {
facts = Puppet::Client::MasterClient.facts
}
assert_equal(Puppet.version.to_s, facts["clientversion"])
end
# Make sure the client correctly locks itself
def test_locking
manifest = mktestmanifest
master = nil
# First test with a networked master
client = Puppet::Client::MasterClient.new(
:Server => "localhost"
)
assert_nothing_raised do
client.lock do
pid = nil
assert(client.locked?, "Client is not locked")
assert(client.lockpid.is_a?(Integer), "PID #{client.lockpid} is, um, not a pid")
end
end
assert(! client.locked?)
# Now test with a local client
client = mkclient
assert_nothing_raised do
client.lock do
pid = nil
assert(! client.locked?, "Local client is locked")
end
end
assert(! client.locked?)
end
# Make sure non-string facts don't make things go kablooie
def test_nonstring_facts
# Add a nonstring fact
Facter.add("nonstring") do
setcode { 1 }
end
assert_equal(1, Facter.nonstring, "Fact was a string from facter")
client = mkclient()
assert(! FileTest.exists?(@createdfile))
assert_nothing_raised {
client.run
}
end
def test_getplugins
Puppet[:pluginsource] = tempfile()
Dir.mkdir(Puppet[:pluginsource])
myplugin = File.join(Puppet[:pluginsource], "myplugin.rb")
File.open(myplugin, "w") do |f|
f.puts %{Puppet::Type.newtype(:myplugin) do
newparam(:argument) do
isnamevar
end
end
}
end
assert_nothing_raised {
Puppet::Client::MasterClient.getplugins
}
destfile = File.join(Puppet[:plugindest], "myplugin.rb")
assert(File.exists?(destfile), "Did not get plugin")
obj = Puppet::Type.type(:myplugin)
assert(obj, "Did not define type")
assert(obj.validattr?(:argument),
"Did not get namevar")
# Now modify the file and make sure the type is replaced
File.open(myplugin, "w") do |f|
f.puts %{Puppet::Type.newtype(:myplugin) do
newparam(:yayness) do
isnamevar
end
newparam(:rahness) do
end
end
}
end
assert_nothing_raised {
Puppet::Client::MasterClient.getplugins
}
destfile = File.join(Puppet[:pluginpath], "myplugin.rb")
obj = Puppet::Type.type(:myplugin)
assert(obj, "Did not define type")
assert(obj.validattr?(:yayness),
"Did not get namevar")
assert(obj.validattr?(:rahness),
"Did not get other var")
assert(! obj.validattr?(:argument),
"Old namevar is still valid")
# Now try it again, to make sure we don't have any objects lying around
assert_nothing_raised {
Puppet::Client::MasterClient.getplugins
}
end
def test_getfacts
Puppet[:factsource] = tempfile()
Dir.mkdir(Puppet[:factsource])
hostname = Facter.value(:hostname)
myfact = File.join(Puppet[:factsource], "myfact.rb")
File.open(myfact, "w") do |f|
f.puts %{Facter.add("myfact") do
setcode { "yayness" }
end
}
end
assert_nothing_raised {
Puppet::Client::MasterClient.getfacts
}
destfile = File.join(Puppet[:factdest], "myfact.rb")
assert(File.exists?(destfile), "Did not get fact")
assert_equal(hostname, Facter.value(:hostname),
"Lost value to hostname")
assert_equal("yayness", Facter.value(:myfact),
"Did not get correct fact value")
# Now modify the file and make sure the type is replaced
File.open(myfact, "w") do |f|
f.puts %{Facter.add("myfact") do
setcode { "funtest" }
end
}
end
assert_nothing_raised {
Puppet::Client::MasterClient.getfacts
}
assert_equal("funtest", Facter.value(:myfact),
"Did not reload fact")
assert_equal(hostname, Facter.value(:hostname),
"Lost value to hostname")
# Now run it again and make sure the fact still loads
assert_nothing_raised {
Puppet::Client::MasterClient.getfacts
}
assert_equal("funtest", Facter.value(:myfact),
"Did not reload fact")
assert_equal(hostname, Facter.value(:hostname),
"Lost value to hostname")
end
# Make sure we load all facts on startup.
def test_loadfacts
dirs = [tempfile(), tempfile()]
count = 0
names = []
dirs.each do |dir|
Dir.mkdir(dir)
name = "fact%s" % count
names << name
file = File.join(dir, "%s.rb" % name)
# Write out a plugin file
File.open(file, "w") do |f|
f.puts %{Facter.add("#{name}") do setcode { "#{name}" } end }
end
count += 1
end
Puppet[:factpath] = dirs.join(":")
names.each do |name|
assert_nil(Facter.value(name), "Somehow retrieved invalid fact")
end
assert_nothing_raised {
Puppet::Client::MasterClient.loadfacts
}
names.each do |name|
assert_equal(name, Facter.value(name),
"Did not retrieve facts")
end
end
if Process.uid == 0
# Testing #283. Make sure plugins et al are downloaded as the running user.
def test_download_ownership
dir = tstdir()
dest = tstdir()
file = File.join(dir, "file")
File.open(file, "w") { |f| f.puts "funtest" }
user = nonrootuser()
group = nonrootgroup()
FileUtils.chown_R(user.name, group.name, dir)
assert_equal(user.uid, File.stat(file).uid)
assert_equal(group.gid, File.stat(file).gid)
assert_nothing_raised {
Puppet::Client::MasterClient.download(:dest => dest, :source => dir,
:name => "testing"
) {}
}
destfile = File.join(dest, "file")
assert(FileTest.exists?(destfile), "Did not create destfile")
assert_equal(Process.uid, File.stat(destfile).uid)
end
end
end
# $Id: master.rb 1805 2006-10-18 00:22:45Z luke $
|