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 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
|
#!/usr/bin/env ruby
$:.unshift("../lib").unshift("../../lib") if __FILE__ =~ /\.rb$/
require 'facter'
require 'puppet'
require 'puppet/parser/interpreter'
require 'puppet/parser/parser'
require 'puppet/client'
require 'puppet/rails'
require 'puppettest'
require 'puppettest/resourcetesting'
require 'puppettest/parsertesting'
require 'puppettest/servertest'
require 'puppettest/railstesting'
require 'timeout'
class TestInterpreter < Test::Unit::TestCase
include PuppetTest
include PuppetTest::ServerTest
include PuppetTest::ParserTesting
include PuppetTest::ResourceTesting
include PuppetTest::RailsTesting
AST = Puppet::Parser::AST
# create a simple manifest that uses nodes to create a file
def mknodemanifest(node, file)
createdfile = tempfile()
File.open(file, "w") { |f|
f.puts "node %s { file { \"%s\": ensure => file, mode => 755 } }\n" %
[node, createdfile]
}
return [file, createdfile]
end
def test_simple
file = tempfile()
File.open(file, "w") { |f|
f.puts "file { \"/etc\": owner => root }"
}
assert_nothing_raised {
Puppet::Parser::Interpreter.new(:Manifest => file)
}
end
def test_reloadfiles
hostname = Facter["hostname"].value
file = tempfile()
# Create a first version
createdfile = mknodemanifest(hostname, file)
interp = nil
assert_nothing_raised {
interp = Puppet::Parser::Interpreter.new(:Manifest => file)
}
config = nil
assert_nothing_raised {
config = interp.run(hostname, {})
}
sleep(1)
# Now create a new file
createdfile = mknodemanifest(hostname, file)
newconfig = nil
assert_nothing_raised {
newconfig = interp.run(hostname, {})
}
assert(config != newconfig, "Configs are somehow the same")
end
if defined? ActiveRecord
def test_hoststorage
assert_nothing_raised {
Puppet[:storeconfigs] = true
}
file = tempfile()
File.open(file, "w") { |f|
f.puts "file { \"/etc\": owner => root }"
}
interp = nil
assert_nothing_raised {
interp = Puppet::Parser::Interpreter.new(
:Manifest => file,
:UseNodes => false,
:ForkSave => false
)
}
facts = {}
Facter.each { |fact, val| facts[fact] = val }
objects = nil
assert_nothing_raised {
objects = interp.run(facts["hostname"], facts)
}
obj = Puppet::Rails::Host.find_by_name(facts["hostname"])
assert(obj, "Could not find host object")
end
else
$stderr.puts "No ActiveRecord -- skipping collection tests"
end
if Facter["domain"].value == "madstop.com"
begin
require 'ldap'
$haveldap = true
rescue LoadError
$stderr.puts "Missing ldap; skipping ldap source tests"
$haveldap = false
end
# Only test ldap stuff on luke's network, since that's the only place we
# have data for.
if $haveldap
def ldapconnect
@ldap = LDAP::Conn.new("ldap", 389)
@ldap.set_option( LDAP::LDAP_OPT_PROTOCOL_VERSION, 3 )
@ldap.simple_bind("", "")
return @ldap
end
def ldaphost(node)
parent = nil
classes = nil
@ldap.search( "ou=hosts, dc=madstop, dc=com", 2,
"(&(objectclass=puppetclient)(cn=%s))" % node
) do |entry|
parent = entry.vals("parentnode").shift
classes = entry.vals("puppetclass") || []
end
return parent, classes
end
def test_ldapsearch
Puppet[:ldapbase] = "ou=hosts, dc=madstop, dc=com"
Puppet[:ldapnodes] = true
ldapconnect()
interp = mkinterp :NodeSources => [:ldap, :code]
# Make sure we get nil and nil back when we search for something missing
parent, classes = nil
assert_nothing_raised do
parent, classes = interp.ldapsearch("nosuchhost")
end
assert_nil(parent, "Got a parent for a non-existent host")
assert_nil(classes, "Got classes for a non-existent host")
# Make sure we can find 'culain' in ldap
assert_nothing_raised do
parent, classes = interp.ldapsearch("culain")
end
realparent, realclasses = ldaphost("culain")
assert_equal(realparent, parent)
assert_equal(realclasses, classes)
end
def test_ldapnodes
Puppet[:ldapbase] = "ou=hosts, dc=madstop, dc=com"
Puppet[:ldapnodes] = true
ldapconnect()
interp = mkinterp :NodeSources => [:ldap, :code]
# culain uses basenode, so create that
basenode = interp.newnode([:basenode])[0]
# Make sure we get nothing for nonexistent hosts
none = nil
assert_nothing_raised do
none = interp.nodesearch_ldap("nosuchhost")
end
assert_nil(none, "Got a node for a non-existent host")
# Make sure we can find 'culain' in ldap
culain = nil
assert_nothing_raised do
culain = interp.nodesearch_ldap("culain")
end
assert(culain, "Did not find culain in ldap")
assert_nothing_raised do
assert_equal(basenode.fqname.to_s, culain.parentclass.fqname.to_s,
"Did not get parent class")
end
end
if Puppet::SUIDManager.uid == 0 and Facter["hostname"].value == "culain"
def test_ldapreconnect
Puppet[:ldapbase] = "ou=hosts, dc=madstop, dc=com"
Puppet[:ldapnodes] = true
interp = nil
assert_nothing_raised {
interp = Puppet::Parser::Interpreter.new(
:Manifest => mktestmanifest()
)
}
hostname = "culain.madstop.com"
# look for our host
assert_nothing_raised {
parent, classes = interp.nodesearch_ldap(hostname)
}
# Now restart ldap
system("/etc/init.d/slapd restart 2>/dev/null >/dev/null")
sleep(1)
# and look again
assert_nothing_raised {
parent, classes = interp.nodesearch_ldap(hostname)
}
# Now stop ldap
system("/etc/init.d/slapd stop 2>/dev/null >/dev/null")
cleanup do
system("/etc/init.d/slapd start 2>/dev/null >/dev/null")
end
# And make sure we actually fail here
assert_raise(Puppet::Error) {
parent, classes = interp.nodesearch_ldap(hostname)
}
end
else
$stderr.puts "Run as root for ldap reconnect tests"
end
end
else
$stderr.puts "Not in madstop.com; skipping ldap tests"
end
# Test that node info and default node info in different sources isn't
# bad.
def test_multiple_nodesources
# Create another node source
Puppet::Parser::Interpreter.send(:define_method, :nodesearch_multi) do |*names|
if names[0] == "default"
gennode("default", {:facts => {}})
else
nil
end
end
interp = mkinterp :NodeSources => [:multi, :code]
interp.newnode(["node"])
obj = nil
assert_nothing_raised do
obj = interp.nodesearch("node")
end
assert(obj, "Did not find node")
assert_equal("node", obj.fqname)
end
# Make sure searchnode behaves as we expect.
def test_nodesearch
# We use two sources here to catch a weird bug where the default
# node is used if the host isn't in the first source.
interp = mkinterp
# Make some nodes
names = %w{node1 node2 node2.domain.com}
interp.newnode names
interp.newnode %w{default}
nodes = {}
# Make sure we can find them all, using the direct method
names.each do |name|
nodes[name] = interp.nodesearch_code(name)
assert(nodes[name], "Could not find %s" % name)
nodes[name].file = __FILE__
end
# Now let's try it with the nodesearch method
names.each do |name|
node = interp.nodesearch(name)
assert(node, "Could not find #{name} via nodesearch")
end
# Make sure we find the default node when we search for nonexistent nodes
assert_nothing_raised do
default = interp.nodesearch("nosuchnode")
assert(default, "Did not find default node")
assert_equal("default", default.fqname)
end
# Now make sure the longest match always wins
node = interp.nodesearch(*%w{node2 node2.domain.com})
assert(node, "Did not find node2")
assert_equal("node2.domain.com", node.fqname,
"Did not get longest match")
end
def test_parsedate
Puppet[:filetimeout] = 0
main = tempfile()
sub = tempfile()
mainfile = tempfile()
subfile = tempfile()
count = 0
updatemain = proc do
count += 1
File.open(main, "w") { |f|
f.puts "import '#{sub}'
file { \"#{mainfile}\": content => #{count} }
"
}
end
updatesub = proc do
count += 1
File.open(sub, "w") { |f|
f.puts "file { \"#{subfile}\": content => #{count} }
"
}
end
updatemain.call
updatesub.call
interp = Puppet::Parser::Interpreter.new(
:Manifest => main,
:Local => true
)
date = interp.parsedate
# Now update the site file and make sure we catch it
sleep 1
updatemain.call
newdate = interp.parsedate
assert(date != newdate, "Parsedate was not updated")
date = newdate
# And then the subfile
sleep 1
updatesub.call
newdate = interp.parsedate
assert(date != newdate, "Parsedate was not updated")
end
# Make sure our node gets added to the node table.
def test_newnode
interp = mkinterp
# First just try calling it directly
assert_nothing_raised {
interp.newnode("mynode", :code => :yay)
}
assert_equal(:yay, interp.nodesearch_code("mynode").code)
# Now make sure that trying to redefine it throws an error.
assert_raise(Puppet::ParseError) {
interp.newnode("mynode", {})
}
# Now try one with no code
assert_nothing_raised {
interp.newnode("simplenode", :parent => :foo)
}
# Make sure trying to get the parentclass throws an error
assert_raise(Puppet::ParseError) do
interp.nodesearch_code("simplenode").parentclass
end
# Now define the parent node
interp.newnode(:foo)
# And make sure we get things back correctly
assert_equal("foo", interp.nodesearch_code("simplenode").parentclass.fqname)
assert_nil(interp.nodesearch_code("simplenode").code)
# Now make sure that trying to redefine it throws an error.
assert_raise(Puppet::ParseError) {
interp.newnode("mynode", {})
}
# Test multiple names
names = ["one", "two", "three"]
assert_nothing_raised {
interp.newnode(names, {:code => :yay, :parent => :foo})
}
names.each do |name|
assert_equal(:yay, interp.nodesearch_code(name).code)
assert_equal("foo", interp.nodesearch_code(name).parentclass.name)
# Now make sure that trying to redefine it throws an error.
assert_raise(Puppet::ParseError) {
interp.newnode(name, {})
}
end
end
# Make sure we're correctly generating a node definition.
def test_gennode
interp = mkinterp
interp.newnode "base"
interp.newclass "yaytest"
# Go through the different iterations:
[
[nil, "yaytest"],
[nil, ["yaytest"]],
[nil, nil],
[nil, []],
["base", nil],
["base", []],
["base", "yaytest"],
["base", ["yaytest"]]
].each do |parent, classes|
node = nil
assert_nothing_raised {
node = interp.gennode("nodeA", :classes => classes,
:parentnode => parent)
}
assert_instance_of(Puppet::Parser::AST::Node, node)
assert_equal("nodeA", node.name)
scope = mkscope :interp => interp
assert_nothing_raised do
node.evaluate :scope => scope
end
# If there's a parent, make sure it got evaluated
if parent
assert(scope.classlist.include?("base"),
"Did not evaluate parent node")
end
# If there are classes make sure they got evaluated
if classes == ["yaytest"] or classes == "yaytest"
assert(scope.classlist.include?("yaytest"),
"Did not evaluate class")
end
end
end
def test_fqfind
interp = mkinterp
table = {}
# Define a bunch of things.
%w{a c a::b a::b::c a::c a::b::c::d a::b::c::d::e::f c::d}.each do |string|
table[string] = string
end
check = proc do |namespace, hash|
hash.each do |thing, result|
assert_equal(result, interp.fqfind(namespace, thing, table),
"Could not find %s in %s" % [thing, namespace])
end
end
# Now let's do some test lookups.
# First do something really simple
check.call "a", "b" => "a::b", "b::c" => "a::b::c", "d" => nil, "::c" => "c"
check.call "a::b", "c" => "a::b::c", "b" => "a::b", "a" => "a"
check.call "a::b::c::d::e", "c" => "a::b::c", "::c" => "c",
"c::d" => "a::b::c::d", "::c::d" => "c::d"
check.call "", "a" => "a", "a::c" => "a::c"
end
def test_newdefine
interp = mkinterp
assert_nothing_raised {
interp.newdefine("mydefine", :code => :yay,
:arguments => ["a", stringobj("b")])
}
mydefine = interp.finddefine("", "mydefine")
assert(mydefine, "Could not find definition")
assert_equal("mydefine", interp.finddefine("", "mydefine").type)
assert_equal("", mydefine.namespace)
assert_equal("mydefine", mydefine.type)
assert_raise(Puppet::ParseError) do
interp.newdefine("mydefine", :code => :yay,
:arguments => ["a", stringobj("b")])
end
# Now define the same thing in a different scope
assert_nothing_raised {
interp.newdefine("other::mydefine", :code => :other,
:arguments => ["a", stringobj("b")])
}
other = interp.finddefine("other", "mydefine")
assert(other, "Could not find definition")
assert(interp.finddefine("", "other::mydefine"),
"Could not find other::mydefine")
assert_equal(:other, other.code)
assert_equal("other", other.namespace)
assert_equal("mydefine", other.type)
assert_equal("other::mydefine", other.fqname)
end
def test_newclass
interp = mkinterp
mkcode = proc do |ary|
classes = ary.collect do |string|
AST::FlatString.new(:value => string)
end
AST::ASTArray.new(:children => classes)
end
scope = Puppet::Parser::Scope.new(:interp => interp)
# First make sure that code is being appended
code = mkcode.call(%w{original code})
klass = nil
assert_nothing_raised {
klass = interp.newclass("myclass", :code => code)
}
assert(klass, "Did not return class")
assert(interp.findclass("", "myclass"), "Could not find definition")
assert_equal("myclass", interp.findclass("", "myclass").type)
assert_equal(%w{original code},
interp.findclass("", "myclass").code.evaluate(:scope => scope))
# Now create the same class name in a different scope
assert_nothing_raised {
klass = interp.newclass("other::myclass",
:code => mkcode.call(%w{something diff}))
}
assert(klass, "Did not return class")
other = interp.findclass("other", "myclass")
assert(other, "Could not find class")
assert(interp.findclass("", "other::myclass"), "Could not find class")
assert_equal("other::myclass", other.fqname)
assert_equal("other", other.namespace)
assert_equal("myclass", other.type)
assert_equal(%w{something diff},
interp.findclass("other", "myclass").code.evaluate(:scope => scope))
# Newclass behaves differently than the others -- it just appends
# the code to the existing class.
code = mkcode.call(%w{something new})
assert_nothing_raised do
klass = interp.newclass("myclass", :code => code)
end
assert(klass, "Did not return class when appending")
assert_equal(%w{original code something new},
interp.findclass("", "myclass").code.evaluate(:scope => scope))
# Make sure newclass deals correctly with nodes with no code
klass = interp.newclass("nocode")
assert(klass, "Did not return class")
assert_nothing_raised do
klass = interp.newclass("nocode", :code => mkcode.call(%w{yay test}))
end
assert(klass, "Did not return class with no code")
assert_equal(%w{yay test},
interp.findclass("", "nocode").code.evaluate(:scope => scope))
# Then try merging something into nothing
interp.newclass("nocode2", :code => mkcode.call(%w{foo test}))
assert(klass, "Did not return class with no code")
assert_nothing_raised do
klass = interp.newclass("nocode2")
end
assert(klass, "Did not return class with no code")
assert_equal(%w{foo test},
interp.findclass("", "nocode2").code.evaluate(:scope => scope))
# And lastly, nothing and nothing
klass = interp.newclass("nocode3")
assert(klass, "Did not return class with no code")
assert_nothing_raised do
klass = interp.newclass("nocode3")
end
assert(klass, "Did not return class with no code")
assert_nil(interp.findclass("", "nocode3").code)
end
# Now make sure we get appropriate behaviour with parent class conflicts.
def test_newclass_parentage
interp = mkinterp
interp.newclass("base1")
interp.newclass("one::two::three")
# First create it with no parentclass.
assert_nothing_raised {
interp.newclass("sub")
}
assert(interp.findclass("", "sub"), "Could not find definition")
assert_nil(interp.findclass("", "sub").parentclass)
# Make sure we can't set the parent class to ourself.
assert_raise(Puppet::ParseError) {
interp.newclass("sub", :parent => "sub")
}
# Now create another one, with a parentclass.
assert_nothing_raised {
interp.newclass("sub", :parent => "base1")
}
# Make sure we get the right parent class, and make sure it's an object.
assert_equal(interp.findclass("", "base1"),
interp.findclass("", "sub").parentclass)
# Now make sure we get a failure if we try to conflict.
assert_raise(Puppet::ParseError) {
interp.newclass("sub", :parent => "one::two::three")
}
# Make sure that failure didn't screw us up in any way.
assert_equal(interp.findclass("", "base1"),
interp.findclass("", "sub").parentclass)
# But make sure we can create a class with a fq parent
assert_nothing_raised {
interp.newclass("another", :parent => "one::two::three")
}
assert_equal(interp.findclass("", "one::two::three"),
interp.findclass("", "another").parentclass)
end
def test_namesplit
interp = mkinterp
assert_nothing_raised do
{"base::sub" => %w{base sub},
"main" => ["", "main"],
"one::two::three::four" => ["one::two::three", "four"],
}.each do |name, ary|
result = interp.namesplit(name)
assert_equal(ary, result, "%s split to %s" % [name, result])
end
end
end
# Make sure you can't have classes and defines with the same name in the
# same scope.
def test_classes_beat_defines
interp = mkinterp
assert_nothing_raised {
interp.newclass("yay::funtest")
}
assert_raise(Puppet::ParseError) do
interp.newdefine("yay::funtest")
end
assert_nothing_raised {
interp.newdefine("yay::yaytest")
}
assert_raise(Puppet::ParseError) do
interp.newclass("yay::yaytest")
end
end
# Make sure our whole chain works.
def test_evaluate
interp, scope, source = mkclassframing
# Create a define that we'll be using
interp.newdefine("wrapper", :code => AST::ASTArray.new(:children => [
resourcedef("file", varref("name"), "owner" => "root")
]))
# Now create a resource that uses that define
define = mkresource(:type => "wrapper", :title => "/tmp/testing",
:scope => scope, :source => source, :params => :none)
scope.setresource define
# And a normal resource
scope.setresource mkresource(:type => "file", :title => "/tmp/rahness",
:scope => scope, :source => source,
:params => {:owner => "root"})
# Now evaluate everything
objects = nil
interp.usenodes = false
assert_nothing_raised do
objects = interp.evaluate(nil, {})
end
assert_instance_of(Puppet::TransBucket, objects)
end
def test_evaliterate
interp, scope, source = mkclassframing
# Create a top-level definition that creates a builtin object
interp.newdefine("one", :arguments => [%w{owner}],
:code => AST::ASTArray.new(:children => [
resourcedef("file", varref("name"),
"owner" => varref("owner")
)
])
)
# Create another definition to call that one
interp.newdefine("two", :arguments => [%w{owner}],
:code => AST::ASTArray.new(:children => [
resourcedef("one", varref("name"),
"owner" => varref("owner")
)
])
)
# And then a third
interp.newdefine("three", :arguments => [%w{owner}],
:code => AST::ASTArray.new(:children => [
resourcedef("two", varref("name"),
"owner" => varref("owner")
)
])
)
three = Puppet::Parser::Resource.new(
:type => "three", :title => "/tmp/yayness",
:scope => scope, :source => source,
:params => paramify(source, :owner => "root")
)
scope.setresource(three)
ret = nil
assert_nothing_raised do
ret = scope.unevaluated
end
assert_instance_of(Array, ret)
assert(1, ret.length)
assert_equal([three], ret)
assert(ret.detect { |r| r.ref == "three[/tmp/yayness]"},
"Did not get three back as unevaluated")
# Now translate the whole tree
assert_nothing_raised do
interp.evaliterate(scope)
end
# Now make sure we've got our file
file = scope.findresource "file[/tmp/yayness]"
assert(file, "Could not find file")
assert_equal("root", file[:owner])
end
# Make sure we fail if there are any leftover overrides to perform.
# This would normally mean that someone is trying to override an object
# that does not exist.
def test_failonleftovers
interp, scope, source = mkclassframing
# Make sure we don't fail, since there are no overrides
assert_nothing_raised do
interp.failonleftovers(scope)
end
# Add an override, and make sure it causes a failure
over1 = mkresource :scope => scope, :source => source,
:params => {:one => "yay"}
scope.setoverride(over1)
assert_raise(Puppet::ParseError) do
interp.failonleftovers(scope)
end
end
def test_evalnode
interp = mkinterp
interp.usenodes = false
scope = Parser::Scope.new(:interp => interp)
facts = Facter.to_hash
# First make sure we get no failures when client is nil
assert_nothing_raised do
interp.evalnode(nil, scope, facts)
end
# Now define a node
interp.newnode "mynode", :code => AST::ASTArray.new(:children => [
resourcedef("file", "/tmp/testing", "owner" => "root")
])
# Eval again, and make sure it does nothing
assert_nothing_raised do
interp.evalnode("mynode", scope, facts)
end
assert_nil(scope.findresource("file[/tmp/testing]"),
"Eval'ed node with nodes off")
# Now enable usenodes and make sure it works.
interp.usenodes = true
assert_nothing_raised do
interp.evalnode("mynode", scope, facts)
end
file = scope.findresource("file[/tmp/testing]")
assert_instance_of(Puppet::Parser::Resource, file,
"Could not find file")
end
# This is mostly used for the cfengine module
def test_specificclasses
interp = mkinterp :Classes => %w{klass1 klass2}, :UseNodes => false
# Make sure it's not a failure to be missing classes, since
# we're using the cfengine class list, which is huge.
assert_nothing_raised do
interp.evaluate(nil, {})
end
interp.newclass("klass1", :code => AST::ASTArray.new(:children => [
resourcedef("file", "/tmp/klass1", "owner" => "root")
]))
interp.newclass("klass2", :code => AST::ASTArray.new(:children => [
resourcedef("file", "/tmp/klass2", "owner" => "root")
]))
ret = nil
assert_nothing_raised do
ret = interp.evaluate(nil, {})
end
found = ret.flatten.collect do |res| res.name end
assert(found.include?("/tmp/klass1"), "Did not evaluate klass1")
assert(found.include?("/tmp/klass2"), "Did not evaluate klass2")
end
if defined? ActiveRecord::Base
# We need to make sure finished objects are stored in the db.
def test_finish_before_store
railsinit
interp = mkinterp
node = interp.newnode ["myhost"], :code => AST::ASTArray.new(:children => [
resourcedef("file", "/tmp/yay", :group => "root"),
defaultobj("file", :owner => "root")
])
interp.newclass "myclass", :code => AST::ASTArray.new(:children => [
])
interp.newclass "sub", :parent => "myclass",
:code => AST::ASTArray.new(:children => [
resourceoverride("file", "/tmp/yay", :owner => "root")
]
)
# Now do the rails crap
Puppet[:storeconfigs] = true
interp.evaluate("myhost", {})
# And then retrieve the object from rails
res = Puppet::Rails::RailsResource.find_by_restype_and_title("file", "/tmp/yay")
assert(res, "Did not get resource from rails")
param = res.rails_parameters.find_by_name("owner")
assert(param, "Did not find owner param")
assert_equal("root", param[:value])
end
end
end
# $Id: interpreter.rb 1793 2006-10-16 22:01:40Z luke $
|