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 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../lib/puppettest'
require 'mocha'
require 'puppet'
require 'puppet/parser/parser'
require 'puppettest'
require 'puppettest/support/utils'
class TestParser < Test::Unit::TestCase
include PuppetTest
include PuppetTest::ParserTesting
include PuppetTest::Support::Utils
def setup
super
Puppet[:parseonly] = true
#@lexer = Puppet::Parser::Lexer.new()
end
def test_each_file
textfiles { |file|
parser = mkparser
Puppet.debug("parsing %s" % file) if __FILE__ == $0
assert_nothing_raised() {
parser.file = file
parser.parse
}
Puppet::Type.eachtype { |type|
type.each { |obj|
assert(obj.file, "File is not set on %s" % obj.ref)
assert(obj.name, "Name is not set on %s" % obj.ref)
assert(obj.line, "Line is not set on %s" % obj.ref)
}
}
Puppet::Type.allclear
}
end
def test_failers
failers { |file|
parser = mkparser
Puppet.debug("parsing failer %s" % file) if __FILE__ == $0
assert_raise(Puppet::ParseError, "Did not fail while parsing %s" % file) {
parser.file = file
ast = parser.parse
config = mkcompiler(parser)
config.compile
#ast.classes[""].evaluate config.topscope
}
Puppet::Type.allclear
}
end
def test_arrayrvalues
parser = mkparser
ret = nil
file = tempfile()
assert_nothing_raised {
parser.string = "file { \"#{file}\": mode => [755, 640] }"
}
assert_nothing_raised {
ret = parser.parse
}
end
def mkmanifest(file)
name = File.join(tmpdir, "file%s" % rand(100))
@@tmpfiles << name
File.open(file, "w") { |f|
f.puts "file { \"%s\": ensure => file, mode => 755 }\n" %
name
}
end
def test_importglobbing
basedir = File.join(tmpdir(), "importesting")
@@tmpfiles << basedir
Dir.mkdir(basedir)
subdir = "subdir"
Dir.mkdir(File.join(basedir, subdir))
manifest = File.join(basedir, "manifest")
File.open(manifest, "w") { |f|
f.puts "import \"%s/*\"" % subdir
}
4.times { |i|
path = File.join(basedir, subdir, "subfile%s" % i)
mkmanifest(path)
}
assert_nothing_raised("Could not parse multiple files") {
parser = mkparser
parser.file = manifest
parser.parse
}
end
def test_nonexistent_import
basedir = File.join(tmpdir(), "importesting")
@@tmpfiles << basedir
Dir.mkdir(basedir)
manifest = File.join(basedir, "manifest")
File.open(manifest, "w") do |f|
f.puts "import \" no such file \""
end
assert_raise(Puppet::ParseError) {
parser = mkparser
parser.file = manifest
parser.parse
}
end
def test_trailingcomma
path = tempfile()
str = %{file { "#{path}": ensure => file, }
}
parser = mkparser
parser.string = str
assert_nothing_raised("Could not parse trailing comma") {
parser.parse
}
end
def test_importedclasses
imported = tempfile()
importer = tempfile()
made = tempfile()
File.open(imported, "w") do |f|
f.puts %{class foo { file { "#{made}": ensure => file }}}
end
File.open(importer, "w") do |f|
f.puts %{import "#{imported}"\ninclude foo}
end
parser = mkparser
parser.file = importer
# Make sure it parses fine
assert_nothing_raised {
parser.parse
}
# Now make sure it actually does the work
assert_creates(importer, made)
end
# Make sure fully qualified and unqualified files can be imported
def test_fqfilesandlocalfiles
dir = tempfile()
Dir.mkdir(dir)
importer = File.join(dir, "site.pp")
fullfile = File.join(dir, "full.pp")
localfile = File.join(dir, "local.pp")
files = []
File.open(importer, "w") do |f|
f.puts %{import "#{fullfile}"\ninclude full\nimport "local.pp"\ninclude local}
end
fullmaker = tempfile()
files << fullmaker
File.open(fullfile, "w") do |f|
f.puts %{class full { file { "#{fullmaker}": ensure => file }}}
end
localmaker = tempfile()
files << localmaker
File.open(localfile, "w") do |f|
f.puts %{class local { file { "#{localmaker}": ensure => file }}}
end
parser = mkparser
parser.file = importer
# Make sure it parses
assert_nothing_raised {
parser.parse
}
# Now make sure it actually does the work
assert_creates(importer, *files)
end
# Make sure the parser adds '.pp' when necessary
def test_addingpp
dir = tempfile()
Dir.mkdir(dir)
importer = File.join(dir, "site.pp")
localfile = File.join(dir, "local.pp")
files = []
File.open(importer, "w") do |f|
f.puts %{import "local"\ninclude local}
end
file = tempfile()
files << file
File.open(localfile, "w") do |f|
f.puts %{class local { file { "#{file}": ensure => file }}}
end
parser = mkparser
parser.file = importer
assert_nothing_raised {
parser.parse
}
end
# Make sure that file importing changes file relative names.
def test_changingrelativenames
dir = tempfile()
Dir.mkdir(dir)
Dir.mkdir(File.join(dir, "subdir"))
top = File.join(dir, "site.pp")
subone = File.join(dir, "subdir/subone")
subtwo = File.join(dir, "subdir/subtwo")
files = []
file = tempfile()
files << file
File.open(subone + ".pp", "w") do |f|
f.puts %{class one { file { "#{file}": ensure => file }}}
end
otherfile = tempfile()
files << otherfile
File.open(subtwo + ".pp", "w") do |f|
f.puts %{import "subone"\n class two inherits one {
file { "#{otherfile}": ensure => file }
}}
end
File.open(top, "w") do |f|
f.puts %{import "subdir/subtwo"}
end
parser = mkparser
parser.file = top
assert_nothing_raised {
parser.parse
}
end
# Defaults are purely syntactical, so it doesn't make sense to be able to
# collect them.
def test_uncollectabledefaults
string = "@Port { protocols => tcp }"
assert_raise(Puppet::ParseError) {
mkparser.parse(string)
}
end
# Verify that we can parse collections
def test_collecting
text = "Port <| |>"
parser = mkparser
parser.string = text
ret = nil
assert_nothing_raised {
ret = parser.parse
}
ret.classes[""].code.each do |obj|
assert_instance_of(AST::Collection, obj)
end
end
def test_emptyfile
file = tempfile()
File.open(file, "w") do |f|
f.puts %{}
end
parser = mkparser
parser.file = file
assert_nothing_raised {
parser.parse
}
end
def test_multiple_nodes_named
file = tempfile()
other = tempfile()
File.open(file, "w") do |f|
f.puts %{
node nodeA, nodeB {
file { "#{other}": ensure => file }
}
}
end
parser = mkparser
parser.file = file
ast = nil
assert_nothing_raised {
ast = parser.parse
}
end
def test_emptyarrays
str = %{$var = []\n}
parser = mkparser
parser.string = str
# Make sure it parses fine
assert_nothing_raised {
parser.parse
}
end
# Make sure function names aren't reserved words.
def test_functionnamecollision
str = %{tag yayness
tag(rahness)
file { "/tmp/yayness":
tag => "rahness",
ensure => exists
}
}
parser = mkparser
parser.string = str
# Make sure it parses fine
assert_nothing_raised {
parser.parse
}
end
def test_metaparams_in_definition_prototypes
parser = mkparser
assert_raise(Puppet::ParseError) {
parser.parse %{define mydef($schedule) {}}
}
assert_nothing_raised {
parser.parse %{define adef($schedule = false) {}}
parser.parse %{define mydef($schedule = daily) {}}
}
end
def test_parsingif
parser = mkparser
exec = proc do |val|
%{exec { "/bin/echo #{val}": logoutput => true }}
end
str1 = %{if true { #{exec.call("true")} }}
ret = nil
assert_nothing_raised {
ret = parser.parse(str1).classes[""].code[0]
}
assert_instance_of(Puppet::Parser::AST::IfStatement, ret)
parser = mkparser
str2 = %{if true { #{exec.call("true")} } else { #{exec.call("false")} }}
assert_nothing_raised {
ret = parser.parse(str2).classes[""].code[0]
}
assert_instance_of(Puppet::Parser::AST::IfStatement, ret)
assert_instance_of(Puppet::Parser::AST::Else, ret.else)
end
def test_hostclass
parser = mkparser
assert_nothing_raised {
parser.parse %{class myclass { class other {} }}
}
assert(parser.classes["myclass"], "Could not find myclass")
assert(parser.classes["myclass::other"], "Could not find myclass::other")
assert_nothing_raised {
parser.parse "class base {}
class container {
class deep::sub inherits base {}
}"
}
sub = parser.classes["container::deep::sub"]
assert(sub, "Could not find sub")
# Now try it with a parent class being a fq class
assert_nothing_raised {
parser.parse "class container::one inherits container::deep::sub {}"
}
sub = parser.classes["container::one"]
assert(sub, "Could not find one")
assert_equal("container::deep::sub", sub.parentclass)
# Finally, try including a qualified class
assert_nothing_raised("Could not include fully qualified class") {
parser.parse "include container::deep::sub"
}
end
def test_topnamespace
parser = mkparser
# Make sure we put the top-level code into a class called "" in
# the "" namespace
assert_nothing_raised do
out = parser.parse ""
assert_instance_of(Puppet::Parser::Parser::ASTSet, out)
assert_nil(parser.classes[""], "Got a 'main' class when we had no code")
end
# Now try something a touch more complicated
parser.initvars
assert_nothing_raised do
out = parser.parse "Exec { path => '/usr/bin:/usr/sbin' }"
assert_instance_of(Puppet::Parser::Parser::ASTSet, out)
assert_equal("", parser.classes[""].classname)
assert_equal("", parser.classes[""].namespace)
end
end
# Make sure virtual and exported resources work appropriately.
def test_virtualresources
tests = [:virtual]
if Puppet.features.rails?
Puppet[:storeconfigs] = true
tests << :exported
end
tests.each do |form|
parser = mkparser
if form == :virtual
at = "@"
else
at = "@@"
end
check = proc do |res, msg|
if res.is_a?(Puppet::Parser::Resource)
txt = res.ref
else
txt = res.class
end
# Real resources get marked virtual when exported
if form == :virtual or res.is_a?(Puppet::Parser::Resource)
assert(res.virtual, "#{msg} #{at}#{txt} is not virtual")
end
if form == :virtual
assert(! res.exported, "#{msg} #{at}#{txt} is exported")
else
assert(res.exported, "#{msg} #{at}#{txt} is not exported")
end
end
ret = nil
assert_nothing_raised do
ret = parser.parse("#{at}file { '/tmp/testing': owner => root }")
end
assert_instance_of(AST::ASTArray, ret.classes[""].code)
resdef = ret.classes[""].code[0]
assert_instance_of(AST::Resource, resdef)
assert_equal("/tmp/testing", resdef.title.value)
# We always get an astarray back, so...
check.call(resdef, "simple resource")
# Now let's try it with multiple resources in the same spec
assert_nothing_raised do
ret = parser.parse("#{at}file { ['/tmp/1', '/tmp/2']: owner => root }")
end
ret.classes[""].each do |res|
assert_instance_of(AST::Resource, res)
check.call(res, "multiresource")
end
end
end
def test_collections
tests = [:virtual]
if Puppet.features.rails?
Puppet[:storeconfigs] = true
tests << :exported
end
tests.each do |form|
parser = mkparser
if form == :virtual
arrow = "<||>"
else
arrow = "<<||>>"
end
ret = nil
assert_nothing_raised do
ret = parser.parse("File #{arrow}")
end
coll = ret.classes[""].code[0]
assert_instance_of(AST::Collection, coll)
assert_equal(form, coll.form)
end
end
def test_collectionexpressions
%w{== !=}.each do |oper|
str = "File <| title #{oper} '/tmp/testing' |>"
parser = mkparser
res = nil
assert_nothing_raised do
res = parser.parse(str).classes[""].code[0]
end
assert_instance_of(AST::Collection, res)
query = res.query
assert_instance_of(AST::CollExpr, query)
assert_equal(:virtual, query.form)
assert_equal("title", query.test1.value)
assert_equal("/tmp/testing", query.test2.value)
assert_equal(oper, query.oper)
end
end
def test_collectionstatements
%w{and or}.each do |joiner|
str = "File <| title == '/tmp/testing' #{joiner} owner == root |>"
parser = mkparser
res = nil
assert_nothing_raised do
res = parser.parse(str).classes[""].code[0]
end
assert_instance_of(AST::Collection, res)
query = res.query
assert_instance_of(AST::CollExpr, query)
assert_equal(joiner, query.oper)
assert_instance_of(AST::CollExpr, query.test1)
assert_instance_of(AST::CollExpr, query.test2)
end
end
def test_collectionstatements_with_parens
[
"(title == '/tmp/testing' and owner == root) or owner == wheel",
"(title == '/tmp/testing')"
].each do |test|
str = "File <| #{test} |>"
parser = mkparser
res = nil
assert_nothing_raised("Could not parse '#{test}'") do
res = parser.parse(str).classes[""].code[0]
end
assert_instance_of(AST::Collection, res)
query = res.query
assert_instance_of(AST::CollExpr, query)
#assert_equal(joiner, query.oper)
#assert_instance_of(AST::CollExpr, query.test1)
#assert_instance_of(AST::CollExpr, query.test2)
end
end
# We've had problems with files other than site.pp importing into main.
def test_importing_into_main
top = tempfile()
other = tempfile()
File.open(top, "w") do |f|
f.puts "import '#{other}'"
end
file = tempfile()
File.open(other, "w") do |f|
f.puts "file { '#{file}': ensure => present }"
end
Puppet[:manifest] = top
interp = Puppet::Parser::Interpreter.new
code = nil
assert_nothing_raised do
code = interp.compile(mknode).extract.flatten
end
assert(code.length == 1, "Did not get the file")
assert_instance_of(Puppet::TransObject, code[0])
end
def test_fully_qualified_definitions
parser = mkparser
assert_nothing_raised("Could not parse fully-qualified definition") {
parser.parse %{define one::two { }}
}
assert(parser.definitions["one::two"], "Could not find one::two with no namespace")
# Now try using the definition
assert_nothing_raised("Could not parse fully-qualified definition usage") {
parser.parse %{one::two { yayness: }}
}
end
# #524
def test_functions_with_no_arguments
parser = mkparser
assert_nothing_raised("Could not parse statement function with no args") {
parser.parse %{tag()}
}
assert_nothing_raised("Could not parse rvalue function with no args") {
parser.parse %{$testing = template()}
}
end
# #774
def test_fully_qualified_collection_statement
parser = mkparser
assert_nothing_raised("Could not parse fully qualified collection statement") {
parser.parse %{Foo::Bar <||>}
}
end
def test_module_import
basedir = File.join(tmpdir(), "module-import")
@@tmpfiles << basedir
Dir.mkdir(basedir)
modfiles = [ "init.pp", "mani1.pp", "mani2.pp",
"sub/smani1.pp", "sub/smani2.pp" ]
modpath = File.join(basedir, "modules")
Puppet[:modulepath] = modpath
modname = "amod"
manipath = File::join(modpath, modname, Puppet::Module::MANIFESTS)
FileUtils::mkdir_p(File::join(manipath, "sub"))
targets = []
modfiles.each do |fname|
target = File::join(basedir, File::basename(fname, '.pp'))
targets << target
txt = %[ file { '#{target}': content => "#{fname}" } ]
if fname == "init.pp"
txt = %[import 'mani1' \nimport '#{modname}/mani2'\nimport '#{modname}/sub/*.pp'\n ] + txt
end
File::open(File::join(manipath, fname), "w") do |f|
f.puts txt
end
end
manifest_texts = [ "import '#{modname}'",
"import '#{modname}/init'",
"import '#{modname}/init.pp'" ]
manifest = File.join(modpath, "manifest.pp")
manifest_texts.each do |txt|
Puppet::Type.allclear
File.open(manifest, "w") { |f| f.puts txt }
assert_nothing_raised {
parser = mkparser
parser.file = manifest
parser.parse
}
assert_creates(manifest, *targets)
end
end
# #544
def test_ignoreimports
parser = mkparser
assert(! Puppet[:ignoreimport], ":ignoreimport defaulted to true")
assert_raise(Puppet::ParseError, "Did not fail on missing import") do
parser.parse("import 'nosuchfile'")
end
assert_nothing_raised("could not set :ignoreimport") do
Puppet[:ignoreimport] = true
end
assert_nothing_raised("Parser did not follow :ignoreimports") do
parser.parse("import 'nosuchfile'")
end
end
def test_multiple_imports_on_one_line
one = tempfile
two = tempfile
base = tempfile
File.open(one, "w") { |f| f.puts "$var = value" }
File.open(two, "w") { |f| f.puts "$var = value" }
File.open(base, "w") { |f| f.puts "import '#{one}', '#{two}'" }
parser = mkparser
parser.file = base
# Importing is logged at debug time.
Puppet::Util::Log.level = :debug
assert_nothing_raised("Parser could not import multiple files at once") do
parser.parse
end
[one, two].each do |file|
assert(@logs.detect { |l| l.message =~ /importing '#{file}'/},
"did not import %s" % file)
end
end
def test_cannot_assign_qualified_variables
parser = mkparser
assert_raise(Puppet::ParseError, "successfully assigned a qualified variable") do
parser.parse("$one::two = yay")
end
end
# #588
def test_globbing_with_directories
dir = tempfile
Dir.mkdir(dir)
subdir = File.join(dir, "subdir")
Dir.mkdir(subdir)
file = File.join(dir, "file.pp")
maker = tempfile
File.open(file, "w") { |f| f.puts "file { '#{maker}': ensure => file }" }
parser = mkparser
assert_nothing_raised("Globbing failed when it matched a directory") do
parser.import("%s/*" % dir)
end
end
# #629 - undef keyword
def test_undef
parser = mkparser
result = nil
assert_nothing_raised("Could not parse assignment to undef") {
result = parser.parse %{$variable = undef}
}
main = result.classes[""].code
children = main.children
assert_instance_of(AST::VarDef, main.children[0])
assert_instance_of(AST::Undef, main.children[0].value)
end
# Prompted by #729 -- parsing should not modify the interpreter.
def test_parse
parser = mkparser
str = "file { '/tmp/yay': ensure => file }\nclass yay {}\nnode foo {}\ndefine bar {}\n"
result = nil
assert_nothing_raised("Could not parse") do
result = parser.parse(str)
end
assert_instance_of(Puppet::Parser::Parser::ASTSet, result, "Did not get a ASTSet back from parsing")
assert_instance_of(AST::HostClass, result.classes["yay"], "Did not create 'yay' class")
assert_instance_of(AST::HostClass, result.classes[""], "Did not create main class")
assert_instance_of(AST::Definition, result.definitions["bar"], "Did not create 'bar' definition")
assert_instance_of(AST::Node, result.nodes["foo"], "Did not create 'foo' node")
end
# Make sure our node gets added to the node table.
def test_newnode
parser = mkparser
# First just try calling it directly
assert_nothing_raised {
parser.newnode("mynode", :code => :yay)
}
assert_equal(:yay, parser.nodes["mynode"].code)
# Now make sure that trying to redefine it throws an error.
assert_raise(Puppet::ParseError) {
parser.newnode("mynode", {})
}
# Now try one with no code
assert_nothing_raised {
parser.newnode("simplenode", :parent => :foo)
}
# Now define the parent node
parser.newnode(:foo)
# And make sure we get things back correctly
assert_equal(:foo, parser.nodes["simplenode"].parentclass)
assert_nil(parser.nodes["simplenode"].code)
# Now make sure that trying to redefine it throws an error.
assert_raise(Puppet::ParseError) {
parser.newnode("mynode", {})
}
# Test multiple names
names = ["one", "two", "three"]
assert_nothing_raised {
parser.newnode(names, {:code => :yay, :parent => :foo})
}
names.each do |name|
assert_equal(:yay, parser.nodes[name].code)
assert_equal(:foo, parser.nodes[name].parentclass)
# Now make sure that trying to redefine it throws an error.
assert_raise(Puppet::ParseError) {
parser.newnode(name, {})
}
end
end
def test_newdefine
parser = mkparser
assert_nothing_raised {
parser.newdefine("mydefine", :code => :yay,
:arguments => ["a", stringobj("b")])
}
mydefine = parser.definitions["mydefine"]
assert(mydefine, "Could not find definition")
assert_equal("", mydefine.namespace)
assert_equal("mydefine", mydefine.classname)
assert_raise(Puppet::ParseError) do
parser.newdefine("mydefine", :code => :yay,
:arguments => ["a", stringobj("b")])
end
# Now define the same thing in a different scope
assert_nothing_raised {
parser.newdefine("other::mydefine", :code => :other,
:arguments => ["a", stringobj("b")])
}
other = parser.definitions["other::mydefine"]
assert(other, "Could not find definition")
assert(parser.definitions["other::mydefine"],
"Could not find other::mydefine")
assert_equal(:other, other.code)
assert_equal("other", other.namespace)
assert_equal("other::mydefine", other.classname)
end
def test_newclass
scope = mkscope
parser = scope.compiler.parser
mkcode = proc do |ary|
classes = ary.collect do |string|
AST::FlatString.new(:value => string)
end
AST::ASTArray.new(:children => classes)
end
# First make sure that code is being appended
code = mkcode.call(%w{original code})
klass = nil
assert_nothing_raised {
klass = parser.newclass("myclass", :code => code)
}
assert(klass, "Did not return class")
assert(parser.classes["myclass"], "Could not find definition")
assert_equal("myclass", parser.classes["myclass"].classname)
assert_equal(%w{original code},
parser.classes["myclass"].code.evaluate(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 = parser.newclass("myclass", :code => code)
end
assert(klass, "Did not return class when appending")
assert_equal(%w{original code something new},
parser.classes["myclass"].code.evaluate(scope))
# Now create the same class name in a different scope
assert_nothing_raised {
klass = parser.newclass("other::myclass",
:code => mkcode.call(%w{something diff}))
}
assert(klass, "Did not return class")
other = parser.classes["other::myclass"]
assert(other, "Could not find class")
assert_equal("other::myclass", other.classname)
assert_equal("other::myclass", other.namespace)
assert_equal(%w{something diff},
other.code.evaluate(scope))
# Make sure newclass deals correctly with nodes with no code
klass = parser.newclass("nocode")
assert(klass, "Did not return class")
assert_nothing_raised do
klass = parser.newclass("nocode", :code => mkcode.call(%w{yay test}))
end
assert(klass, "Did not return class with no code")
assert_equal(%w{yay test},
parser.classes["nocode"].code.evaluate(scope))
# Then try merging something into nothing
parser.newclass("nocode2", :code => mkcode.call(%w{foo test}))
assert(klass, "Did not return class with no code")
assert_nothing_raised do
klass = parser.newclass("nocode2")
end
assert(klass, "Did not return class with no code")
assert_equal(%w{foo test},
parser.classes["nocode2"].code.evaluate(scope))
# And lastly, nothing and nothing
klass = parser.newclass("nocode3")
assert(klass, "Did not return class with no code")
assert_nothing_raised do
klass = parser.newclass("nocode3")
end
assert(klass, "Did not return class with no code")
assert_nil(parser.classes["nocode3"].code)
end
# Make sure you can't have classes and defines with the same name in the
# same scope.
def test_classes_beat_defines
parser = mkparser
assert_nothing_raised {
parser.newclass("yay::funtest")
}
assert_raise(Puppet::ParseError) do
parser.newdefine("yay::funtest")
end
assert_nothing_raised {
parser.newdefine("yay::yaytest")
}
assert_raise(Puppet::ParseError) do
parser.newclass("yay::yaytest")
end
end
def test_namesplit
parser = mkparser
assert_nothing_raised do
{"base::sub" => %w{base sub},
"main" => ["", "main"],
"one::two::three::four" => ["one::two::three", "four"],
}.each do |name, ary|
result = parser.namesplit(name)
assert_equal(ary, result, "%s split to %s" % [name, result])
end
end
end
# Now make sure we get appropriate behaviour with parent class conflicts.
def test_newclass_parentage
parser = mkparser
parser.newclass("base1")
parser.newclass("one::two::three")
# First create it with no parentclass.
assert_nothing_raised {
parser.newclass("sub")
}
assert(parser.classes["sub"], "Could not find definition")
assert_nil(parser.classes["sub"].parentclass)
# Make sure we can't set the parent class to ourself.
assert_raise(Puppet::ParseError) {
parser.newclass("sub", :parent => "sub")
}
# Now create another one, with a parentclass.
assert_nothing_raised {
parser.newclass("sub", :parent => "base1")
}
# Make sure we get the right parent class, and make sure it's not an object.
assert_equal("base1",
parser.classes["sub"].parentclass)
# Now make sure we get a failure if we try to conflict.
assert_raise(Puppet::ParseError) {
parser.newclass("sub", :parent => "one::two::three")
}
# Make sure that failure didn't screw us up in any way.
assert_equal("base1",
parser.classes["sub"].parentclass)
# But make sure we can create a class with a fq parent
assert_nothing_raised {
parser.newclass("another", :parent => "one::two::three")
}
assert_equal("one::two::three",
parser.classes["another"].parentclass)
end
def test_fqfind
parser = mkparser
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, parser.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
# Setup a module.
def mk_module(name, files = {})
mdir = File.join(@dir, name)
mandir = File.join(mdir, "manifests")
FileUtils.mkdir_p mandir
if defs = files[:define]
files.delete(:define)
end
Dir.chdir(mandir) do
files.each do |file, classes|
File.open("%s.pp" % file, "w") do |f|
classes.each { |klass|
if defs
f.puts "define %s {}" % klass
else
f.puts "class %s {}" % klass
end
}
end
end
end
end
# #596 - make sure classes and definitions load automatically if they're in modules, so we don't have to manually load each one.
def test_module_autoloading
@dir = tempfile
Puppet[:modulepath] = @dir
FileUtils.mkdir_p @dir
parser = mkparser
# Make sure we fail like normal for actually missing classes
assert_nil(parser.findclass("", "nosuchclass"), "Did not return nil on missing classes")
# test the simple case -- the module class itself
name = "simple"
mk_module(name, :init => [name])
# Try to load the module automatically now
klass = parser.findclass("", name)
assert_instance_of(AST::HostClass, klass, "Did not autoload class from module init file")
assert_equal(name, klass.classname, "Incorrect class was returned")
# Try loading the simple module when we're in something other than the base namespace.
parser = mkparser
klass = parser.findclass("something::else", name)
assert_instance_of(AST::HostClass, klass, "Did not autoload class from module init file")
assert_equal(name, klass.classname, "Incorrect class was returned")
# Now try it with a definition as the base file
name = "simpdef"
mk_module(name, :define => true, :init => [name])
klass = parser.finddefine("", name)
assert_instance_of(AST::Definition, klass, "Did not autoload class from module init file")
assert_equal(name, klass.classname, "Incorrect class was returned")
# Now try it with namespace classes where both classes are in the init file
parser = mkparser
modname = "both"
name = "sub"
mk_module(modname, :init => %w{both both::sub})
# First try it with a namespace
klass = parser.findclass("both", name)
assert_instance_of(AST::HostClass, klass, "Did not autoload sub class from module init file with a namespace")
assert_equal("both::sub", klass.classname, "Incorrect class was returned")
# Now try it using the fully qualified name
parser = mkparser
klass = parser.findclass("", "both::sub")
assert_instance_of(AST::HostClass, klass, "Did not autoload sub class from module init file with no namespace")
assert_equal("both::sub", klass.classname, "Incorrect class was returned")
# Now try it with the class in a different file
parser = mkparser
modname = "separate"
name = "sub"
mk_module(modname, :init => %w{separate}, :sub => %w{separate::sub})
# First try it with a namespace
klass = parser.findclass("separate", name)
assert_instance_of(AST::HostClass, klass, "Did not autoload sub class from separate file with a namespace")
assert_equal("separate::sub", klass.classname, "Incorrect class was returned")
# Now try it using the fully qualified name
parser = mkparser
klass = parser.findclass("", "separate::sub")
assert_instance_of(AST::HostClass, klass, "Did not autoload sub class from separate file with no namespace")
assert_equal("separate::sub", klass.classname, "Incorrect class was returned")
# Now make sure we don't get a failure when there's no module file
parser = mkparser
modname = "alone"
name = "sub"
mk_module(modname, :sub => %w{alone::sub})
# First try it with a namespace
assert_nothing_raised("Could not autoload file when module file is missing") do
klass = parser.findclass("alone", name)
end
assert_instance_of(AST::HostClass, klass, "Did not autoload sub class from alone file with a namespace")
assert_equal("alone::sub", klass.classname, "Incorrect class was returned")
# Now try it using the fully qualified name
parser = mkparser
klass = parser.findclass("", "alone::sub")
assert_instance_of(AST::HostClass, klass, "Did not autoload sub class from alone file with no namespace")
assert_equal("alone::sub", klass.classname, "Incorrect class was returned")
# and with the definition in its own file
name = "mymod"
mk_module(name, :define => true, :mydefine => ["mymod::mydefine"])
klass = parser.finddefine("", "mymod::mydefine")
assert_instance_of(AST::Definition, klass, "Did not autoload definition from its own file")
assert_equal("mymod::mydefine", klass.classname, "Incorrect definition was returned")
end
# Make sure class, node, and define methods are case-insensitive
def test_structure_case_insensitivity
parser = mkparser
result = nil
assert_nothing_raised do
result = parser.newclass "Yayness"
end
assert_equal(result, parser.findclass("", "yayNess"))
assert_nothing_raised do
result = parser.newdefine "FunTest"
end
assert_equal(result, parser.finddefine("", "fUntEst"),
"%s was not matched" % "fUntEst")
end
def test_manifests_with_multiple_environments
parser = mkparser :environment => "something"
# We use an exception to cut short the processing to simplify our stubbing
#Puppet::Module.expects(:find_manifests).with("test", {:cwd => ".", :environment => "something"}).raises(Puppet::ParseError)
Puppet::Module.expects(:find_manifests).with("test", {:cwd => ".", :environment => "something"}).returns([])
assert_raise(Puppet::ImportError) do
parser.import("test")
end
end
end
|