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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../lib/puppettest'
require 'puppet'
require 'puppet/parser/parser'
require 'puppet/network/client'
require 'puppettest'
require 'puppettest/resourcetesting'
class TestLangFunctions < Test::Unit::TestCase
include PuppetTest::ParserTesting
include PuppetTest::ResourceTesting
def test_functions
assert_raise(Puppet::ParseError) do
Puppet::Parser::AST::Function.new(
:name => "fakefunction",
:arguments => AST::ASTArray.new(
:children => [nameobj("avalue")]
)
)
end
assert_nothing_raised do
Puppet::Parser::Functions.newfunction(:fakefunction, :type => :rvalue) do |input|
return "output %s" % input[0]
end
end
func = nil
assert_nothing_raised do
func = Puppet::Parser::AST::Function.new(
:name => "fakefunction",
:ftype => :rvalue,
:arguments => AST::ASTArray.new(
:children => [nameobj("avalue")]
)
)
end
scope = mkscope
val = nil
assert_nothing_raised do
val = func.evaluate(scope)
end
assert_equal("output avalue", val)
end
def test_taggedfunction
scope = mkscope
scope.resource.tag("yayness")
# Make sure the ast stuff does what it's supposed to
{"yayness" => true, "booness" => false}.each do |tag, retval|
func = taggedobj(tag, :rvalue)
val = nil
assert_nothing_raised do
val = func.evaluate(scope)
end
assert_equal(retval, val, "'tagged' returned %s for %s" % [val, tag])
end
# Now make sure we correctly get tags.
scope.resource.tag("resourcetag")
assert(scope.function_tagged("resourcetag"), "tagged function did not catch resource tags")
scope.compiler.catalog.tag("configtag")
assert(scope.function_tagged("configtag"), "tagged function did not catch catalog tags")
end
def test_failfunction
func = nil
assert_nothing_raised do
func = Puppet::Parser::AST::Function.new(
:name => "fail",
:ftype => :statement,
:arguments => AST::ASTArray.new(
:children => [stringobj("this is a failure"),
stringobj("and another")]
)
)
end
scope = mkscope
val = nil
assert_raise(Puppet::ParseError) do
val = func.evaluate(scope)
end
end
def test_multipletemplates
Dir.mkdir(Puppet[:templatedir])
onep = File.join(Puppet[:templatedir], "one")
twop = File.join(Puppet[:templatedir], "two")
File.open(onep, "w") do |f|
f.puts "template <%= one %>"
end
File.open(twop, "w") do |f|
f.puts "template <%= two %>"
end
func = nil
assert_nothing_raised do
func = Puppet::Parser::AST::Function.new(
:name => "template",
:ftype => :rvalue,
:arguments => AST::ASTArray.new(
:children => [stringobj("one"),
stringobj("two")]
)
)
end
ast = varobj("output", func)
scope = mkscope
assert_raise(Puppet::ParseError) do
ast.evaluate(scope)
end
scope.setvar("one", "One")
assert_raise(Puppet::ParseError) do
ast.evaluate(scope)
end
scope.setvar("two", "Two")
assert_nothing_raised do
ast.evaluate(scope)
end
assert_equal("template One\ntemplate Two\n", scope.lookupvar("output"),
"Templates were not handled correctly")
end
# Now make sure we can fully qualify files, and specify just one
def test_singletemplates
template = tempfile()
File.open(template, "w") do |f|
f.puts "template <%= yayness %>"
end
func = nil
assert_nothing_raised do
func = Puppet::Parser::AST::Function.new(
:name => "template",
:ftype => :rvalue,
:arguments => AST::ASTArray.new(
:children => [stringobj(template)]
)
)
end
ast = varobj("output", func)
scope = mkscope
assert_raise(Puppet::ParseError) do
ast.evaluate(scope)
end
scope.setvar("yayness", "this is yayness")
assert_nothing_raised do
ast.evaluate(scope)
end
assert_equal("template this is yayness\n", scope.lookupvar("output"),
"Templates were not handled correctly")
end
def test_tempatefunction_cannot_see_scopes
template = tempfile()
File.open(template, "w") do |f|
f.puts "<%= lookupvar('myvar') %>"
end
func = nil
assert_nothing_raised do
func = Puppet::Parser::AST::Function.new(
:name => "template",
:ftype => :rvalue,
:arguments => AST::ASTArray.new(
:children => [stringobj(template)]
)
)
end
ast = varobj("output", func)
scope = mkscope
scope.setvar("myvar", "this is yayness")
assert_raise(Puppet::ParseError) do
ast.evaluate(scope)
end
end
def test_template_reparses
template = tempfile()
File.open(template, "w") do |f|
f.puts "original text"
end
file = tempfile()
Puppet[:code] = %{file { "#{file}": content => template("#{template}") }}
Puppet[:environments] = "yay"
interp = Puppet::Parser::Interpreter.new
node = mknode
node.stubs(:environment).returns("yay")
Puppet[:environment] = "yay"
catalog = nil
assert_nothing_raised {
catalog = interp.compile(node)
}
version = catalog.version
fileobj = catalog.vertices.find { |r| r.title == file }
assert(fileobj, "File was not in catalog")
assert_equal("original text\n", fileobj["content"],
"Template did not work")
Puppet[:filetimeout] = -5
# Have to sleep because one second is the fs's time granularity.
sleep(1)
# Now modify the template
File.open(template, "w") do |f|
f.puts "new text"
end
newversion = interp.compile(node).version
assert(version != newversion, "Parse date did not change")
end
def test_template_defined_vars
template = tempfile()
File.open(template, "w") do |f|
f.puts "template <%= yayness %>"
end
func = nil
assert_nothing_raised do
func = Puppet::Parser::AST::Function.new(
:name => "template",
:ftype => :rvalue,
:arguments => AST::ASTArray.new(
:children => [stringobj(template)]
)
)
end
ast = varobj("output", func)
{
"" => "",
false => "false",
}.each do |string, value|
scope = mkscope
assert_raise(Puppet::ParseError) do
ast.evaluate(scope)
end
scope.setvar("yayness", string)
assert_equal(string, scope.lookupvar("yayness", false))
assert_nothing_raised("An empty string was not a valid variable value") do
ast.evaluate(scope)
end
assert_equal("template #{value}\n", scope.lookupvar("output"),
"%s did not get evaluated correctly" % string.inspect)
end
end
def test_autoloading_functions
assert_equal(false, Puppet::Parser::Functions.function(:autofunc),
"Got told autofunc already exists")
dir = tempfile()
$: << dir
newpath = File.join(dir, "puppet", "parser", "functions")
FileUtils.mkdir_p(newpath)
File.open(File.join(newpath, "autofunc.rb"), "w") { |f|
f.puts %{
Puppet::Parser::Functions.newfunction(:autofunc, :type => :rvalue) do |vals|
Puppet.wanring vals.inspect
end
}
}
obj = nil
assert_nothing_raised {
obj = Puppet::Parser::Functions.function(:autofunc)
}
assert(obj, "Did not autoload function")
assert(Puppet::Parser::Scope.method_defined?(:function_autofunc),
"Did not set function correctly")
end
def test_realize
scope = mkscope
parser = scope.compiler.parser
# Make a definition
parser.newdefine("mytype")
[%w{file /tmp/virtual}, %w{mytype yay}].each do |type, title|
# Make a virtual resource
virtual = mkresource(:type => type, :title => title,
:virtual => true, :params => {}, :scope => scope)
scope.compiler.add_resource(scope, virtual)
ref = Puppet::Parser::Resource::Reference.new(
:type => type, :title => title,
:scope => scope
)
# Now call the realize function
assert_nothing_raised do
scope.function_realize(ref)
end
# Make sure it created a collection
assert_equal(1, scope.compiler.collections.length,
"Did not set collection")
assert_nothing_raised do
scope.compiler.collections.each do |coll| coll.evaluate end
end
scope.compiler.collections.clear
# Now make sure the virtual resource is no longer virtual
assert(! virtual.virtual?, "Did not make virtual resource real")
end
# Make sure we puke on any resource that doesn't exist
none = Puppet::Parser::Resource::Reference.new(
:type => "file", :title => "/tmp/nosuchfile",
:scope => scope
)
# The function works
assert_nothing_raised do
scope.function_realize(none.to_s)
end
# Make sure it created a collection
assert_equal(1, scope.compiler.collections.length,
"Did not set collection")
# And the collection has our resource in it
assert_equal([none.to_s], scope.compiler.collections[0].resources,
"Did not set resources in collection")
end
def test_defined
scope = mkscope
parser = scope.compiler.parser
parser.newclass("yayness")
parser.newdefine("rahness")
assert_nothing_raised do
assert(scope.function_defined("yayness"), "yayness class was not considered defined")
assert(scope.function_defined("rahness"), "rahness definition was not considered defined")
assert(scope.function_defined("service"), "service type was not considered defined")
assert(! scope.function_defined("fakness"), "fakeness was considered defined")
end
# Now make sure any match in a list will work
assert(scope.function_defined(["booness", "yayness", "fakeness"]),
"A single answer was not sufficient to return true")
# and make sure multiple falses are still false
assert(! scope.function_defined(%w{no otherno stillno}),
"Multiple falses were somehow true")
# Now make sure we can test resources
scope.compiler.add_resource(scope, mkresource(:type => "file", :title => "/tmp/rahness",
:scope => scope, :source => scope.source,
:params => {:owner => "root"}))
yep = Puppet::Parser::Resource::Reference.new(:type => "file", :title => "/tmp/rahness")
nope = Puppet::Parser::Resource::Reference.new(:type => "file", :title => "/tmp/fooness")
assert(scope.function_defined([yep]), "valid resource was not considered defined")
assert(! scope.function_defined([nope]), "invalid resource was considered defined")
end
def test_search
parser = mkparser
scope = mkscope(:parser => parser)
fun = parser.newdefine("yay::ness")
foo = parser.newdefine("foo::bar")
search = Puppet::Parser::Functions.function(:search)
assert_nothing_raised do
scope.function_search(["foo", "yay"])
end
ffun = ffoo = nil
assert_nothing_raised("Search path change did not work") do
ffun = scope.finddefine("ness")
ffoo = scope.finddefine('bar')
end
assert(ffun, "Could not find definition in 'fun' namespace")
assert(ffoo, "Could not find definition in 'foo' namespace")
end
def test_include
scope = mkscope
parser = scope.compiler.parser
assert_raise(Puppet::ParseError, "did not throw error on missing class") do
scope.function_include("nosuchclass")
end
parser.newclass("myclass")
scope.compiler.expects(:evaluate_classes).with(%w{myclass otherclass}, scope, false).returns(%w{myclass otherclass})
assert_nothing_raised do
scope.function_include(["myclass", "otherclass"])
end
end
def test_file
parser = mkparser
scope = mkscope(:parser => parser)
file1 = tempfile
file2 = tempfile
file3 = tempfile
File.open(file2, "w") { |f| f.puts "yaytest" }
val = nil
assert_nothing_raised("Failed to call file with one arg") do
val = scope.function_file([file2])
end
assert_equal("yaytest\n", val, "file() failed")
assert_nothing_raised("Failed to call file with two args") do
val = scope.function_file([file1, file2])
end
assert_equal("yaytest\n", val, "file() failed")
assert_raise(Puppet::ParseError, "did not fail when files are missing") do
val = scope.function_file([file1, file3])
end
end
def test_generate
command = tempfile
sh = %x{which sh}
File.open(command, "w") do |f|
f.puts %{#!#{sh}
if [ -n "$1" ]; then
echo "yay-$1"
else
echo yay
fi
}
end
File.chmod(0755, command)
assert_equal("yay\n", %x{#{command}}, "command did not work")
assert_equal("yay-foo\n", %x{#{command} foo}, "command did not work")
scope = mkscope
parser = scope.compiler.parser
val = nil
assert_nothing_raised("Could not call generator with no args") do
val = scope.function_generate([command])
end
assert_equal("yay\n", val, "generator returned wrong results")
assert_nothing_raised("Could not call generator with args") do
val = scope.function_generate([command, "foo"])
end
assert_equal("yay-foo\n", val, "generator returned wrong results")
assert_raise(Puppet::ParseError, "Did not fail with an unqualified path") do
val = scope.function_generate([File.basename(command), "foo"])
end
assert_raise(Puppet::ParseError, "Did not fail when command failed") do
val = scope.function_generate([%x{which touch}.chomp, "/this/dir/does/not/exist"])
end
fake = File.join(File.dirname(command), "..")
dir = File.dirname(command)
dirname = File.basename(dir)
bad = File.join(dir, "..", dirname, File.basename(command))
assert_raise(Puppet::ParseError, "Did not fail when command failed") do
val = scope.function_generate([bad])
end
end
end
|