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
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../lib/puppettest'
require 'mocha'
require 'puppettest'
require 'puppettest/parsertesting'
require 'puppettest/resourcetesting'
# so, what kind of things do we want to test?
# we don't need to test function, since we're confident in the
# library tests. We do, however, need to test how things are actually
# working in the language.
# so really, we want to do things like test that our ast is correct
# and test whether we've got things in the right scopes
class TestScope < Test::Unit::TestCase
include PuppetTest::ParserTesting
include PuppetTest::ResourceTesting
def to_ary(hash)
hash.collect { |key,value|
[key,value]
}
end
def test_variables
config = mkcompiler
topscope = config.topscope
midscope = config.newscope(topscope)
botscope = config.newscope(midscope)
scopes = {:top => topscope, :mid => midscope, :bot => botscope}
# Set a variable in the top and make sure all three can get it
topscope.setvar("first", "topval")
scopes.each do |name, scope|
assert_equal("topval", scope.lookupvar("first", false), "Could not find var in %s" % name)
end
# Now set a var in the midscope and make sure the mid and bottom can see it but not the top
midscope.setvar("second", "midval")
assert_equal(:undefined, scopes[:top].lookupvar("second", false), "Found child var in top scope")
[:mid, :bot].each do |name|
assert_equal("midval", scopes[name].lookupvar("second", false), "Could not find var in %s" % name)
end
# And set something in the bottom, and make sure we only find it there.
botscope.setvar("third", "botval")
[:top, :mid].each do |name|
assert_equal(:undefined, scopes[name].lookupvar("third", false), "Found child var in top scope")
end
assert_equal("botval", scopes[:bot].lookupvar("third", false), "Could not find var in bottom scope")
end
def test_lookupvar
parser = mkparser
scope = mkscope :parser => parser
# first do the plain lookups
assert_equal("", scope.lookupvar("var"), "scope did not default to string")
assert_equal("", scope.lookupvar("var", true), "scope ignored usestring setting")
assert_equal(:undefined, scope.lookupvar("var", false), "scope ignored usestring setting when false")
# Now set the var
scope.setvar("var", "yep")
assert_equal("yep", scope.lookupvar("var"), "did not retrieve value correctly")
# Now test the parent lookups
subscope = mkscope :parser => parser
subscope.parent = scope
assert_equal("", subscope.lookupvar("nope"), "scope did not default to string with parent")
assert_equal("", subscope.lookupvar("nope", true), "scope ignored usestring setting with parent")
assert_equal(:undefined, subscope.lookupvar("nope", false), "scope ignored usestring setting when false with parent")
assert_equal("yep", subscope.lookupvar("var"), "did not retrieve value correctly from parent")
# Now override the value in the subscope
subscope.setvar("var", "sub")
assert_equal("sub", subscope.lookupvar("var"), "did not retrieve overridden value correctly")
# Make sure we punt when the var is qualified. Specify the usestring value, so we know it propagates.
scope.expects(:lookup_qualified_var).with("one::two", false).returns(:punted)
assert_equal(:punted, scope.lookupvar("one::two", false), "did not return the value of lookup_qualified_var")
end
def test_lookup_qualified_var
parser = mkparser
scope = mkscope :parser => parser
scopes = {}
classes = ["", "one", "one::two", "one::two::three"].each do |name|
klass = parser.newclass(name)
Puppet::Parser::Resource.new(:type => "class", :title => name, :scope => scope, :source => mock('source')).evaluate
scopes[name] = scope.compiler.class_scope(klass)
end
classes.each do |name|
var = [name, "var"].join("::")
scopes[name].expects(:lookupvar).with("var", false).returns(name)
assert_equal(name, scope.send(:lookup_qualified_var, var, false), "did not get correct value from lookupvar")
end
end
def test_declarative
# set to declarative
top = mkscope
sub = mkscope(:parent => top)
assert_nothing_raised {
top.setvar("test","value")
}
assert_raise(Puppet::ParseError) {
top.setvar("test","other")
}
assert_nothing_raised {
sub.setvar("test","later")
}
assert_raise(Puppet::ParseError) {
top.setvar("test","yeehaw")
}
end
def test_setdefaults
config = mkcompiler
scope = config.topscope
defaults = scope.instance_variable_get("@defaults")
# First the case where there are no defaults and we pass a single param
param = stub :name => "myparam", :file => "f", :line => "l"
scope.setdefaults(:mytype, param)
assert_equal({"myparam" => param}, defaults[:mytype], "Did not set default correctly")
# Now the case where we pass in multiple parameters
param1 = stub :name => "one", :file => "f", :line => "l"
param2 = stub :name => "two", :file => "f", :line => "l"
scope.setdefaults(:newtype, [param1, param2])
assert_equal({"one" => param1, "two" => param2}, defaults[:newtype], "Did not set multiple defaults correctly")
# And the case where there's actually a conflict. Use the first default for this.
newparam = stub :name => "myparam", :file => "f", :line => "l"
assert_raise(Puppet::ParseError, "Allowed resetting of defaults") do
scope.setdefaults(:mytype, param)
end
assert_equal({"myparam" => param}, defaults[:mytype], "Replaced default even though there was a failure")
end
def test_lookupdefaults
config = mkcompiler
top = config.topscope
# Make a subscope
sub = config.newscope(top)
topdefs = top.instance_variable_get("@defaults")
subdefs = sub.instance_variable_get("@defaults")
# First add some defaults to our top scope
topdefs[:t1] = {:p1 => :p2, :p3 => :p4}
topdefs[:t2] = {:p5 => :p6}
# Then the sub scope
subdefs[:t1] = {:p1 => :p7, :p8 => :p9}
subdefs[:t2] = {:p5 => :p10, :p11 => :p12}
# Now make sure we get the correct list back
result = nil
assert_nothing_raised("Could not get defaults") do
result = sub.lookupdefaults(:t1)
end
assert_equal(:p9, result[:p8], "Did not get child defaults")
assert_equal(:p4, result[:p3], "Did not override parent defaults with child default")
assert_equal(:p7, result[:p1], "Did not get parent defaults")
end
def test_parent
config = mkcompiler
top = config.topscope
# Make a subscope
sub = config.newscope(top)
assert_equal(top, sub.parent, "Did not find parent scope correctly")
assert_equal(top, sub.parent, "Did not find parent scope on second call")
end
def test_strinterp
# Make and evaluate our classes so the qualified lookups work
parser = mkparser
klass = parser.newclass("")
scope = mkscope(:parser => parser)
Puppet::Parser::Resource.new(:type => "class", :title => :main, :scope => scope, :source => mock('source')).evaluate
assert_nothing_raised {
scope.setvar("test","value")
}
scopes = {"" => scope}
%w{one one::two one::two::three}.each do |name|
klass = parser.newclass(name)
Puppet::Parser::Resource.new(:type => "class", :title => name, :scope => scope, :source => mock('source')).evaluate
scopes[name] = scope.compiler.class_scope(klass)
scopes[name].setvar("test", "value-%s" % name.sub(/.+::/,''))
end
assert_equal("value", scope.lookupvar("::test"), "did not look up qualified value correctly")
tests = {
"string ${test}" => "string value",
"string ${one::two::three::test}" => "string value-three",
"string $one::two::three::test" => "string value-three",
"string ${one::two::test}" => "string value-two",
"string $one::two::test" => "string value-two",
"string ${one::test}" => "string value-one",
"string $one::test" => "string value-one",
"string ${::test}" => "string value",
"string $::test" => "string value",
"string ${test} ${test} ${test}" => "string value value value",
"string $test ${test} $test" => "string value value value",
"string \\$test" => "string $test",
'\\$test string' => "$test string",
'$test string' => "value string",
'a testing $' => "a testing $",
'a testing \$' => "a testing $",
"an escaped \\\n carriage return" => "an escaped carriage return",
'\$' => "$",
'\s' => "\s",
'\t' => "\t",
'\n' => "\n"
}
tests.each do |input, output|
assert_nothing_raised("Failed to scan %s" % input.inspect) do
assert_equal(output, scope.strinterp(input),
'did not parserret %s correctly' % input.inspect)
end
end
logs = []
Puppet::Util::Log.close
Puppet::Util::Log.newdestination(logs)
# #523
%w{d f h l w z}.each do |l|
string = "\\" + l
assert_nothing_raised do
assert_equal(string, scope.strinterp(string),
'did not parserret %s correctly' % string)
end
assert(logs.detect { |m| m.message =~ /Unrecognised escape/ },
"Did not get warning about escape sequence with %s" % string)
logs.clear
end
end
def test_tagfunction
scope = mkscope
resource = mock 'resource'
scope.resource = resource
resource.expects(:tag).with("yayness", "booness")
scope.function_tag(%w{yayness booness})
end
def test_includefunction
parser = mkparser
scope = mkscope :parser => parser
myclass = parser.newclass "myclass"
otherclass = parser.newclass "otherclass"
function = Puppet::Parser::AST::Function.new(
:name => "include",
:ftype => :statement,
:arguments => AST::ASTArray.new(
:children => [nameobj("myclass"), nameobj("otherclass")]
)
)
assert_nothing_raised do
function.evaluate scope
end
scope.compiler.send(:evaluate_generators)
[myclass, otherclass].each do |klass|
assert(scope.compiler.class_scope(klass),
"%s was not set" % klass.classname)
end
end
def test_definedfunction
parser = mkparser
%w{one two}.each do |name|
parser.newdefine name
end
scope = mkscope :parser => parser
assert_nothing_raised {
%w{one two file user}.each do |type|
assert(scope.function_defined([type]),
"Class #{type} was not considered defined")
end
assert(!scope.function_defined(["nopeness"]),
"Class 'nopeness' was incorrectly considered defined")
}
end
# Make sure we know what we consider to be truth.
def test_truth
assert_equal(true, Puppet::Parser::Scope.true?("a string"),
"Strings not considered true")
assert_equal(true, Puppet::Parser::Scope.true?(true),
"True considered true")
assert_equal(false, Puppet::Parser::Scope.true?(""),
"Empty strings considered true")
assert_equal(false, Puppet::Parser::Scope.true?(false),
"false considered true")
assert_equal(false, Puppet::Parser::Scope.true?(:undef),
"undef considered true")
end
# Verify that we recursively mark as exported the results of collectable
# components.
def test_virtual_definitions_do_not_get_evaluated
config = mkcompiler
parser = config.parser
# Create a default source
config.topscope.source = parser.newclass "", ""
# And a scope resource
scope_res = stub 'scope_resource', :virtual? => true, :exported? => false, :tags => [], :builtin? => true, :type => "eh", :title => "bee"
config.topscope.resource = scope_res
args = AST::ASTArray.new(
:file => tempfile(),
:line => rand(100),
:children => [nameobj("arg")]
)
# Create a top-level define
parser.newdefine "one", :arguments => [%w{arg}],
:code => AST::ASTArray.new(
:children => [
resourcedef("file", "/tmp", {"owner" => varref("arg")})
]
)
# create a resource that calls our third define
obj = resourcedef("one", "boo", {"arg" => "parentfoo"})
# And mark it as virtual
obj.virtual = true
# And then evaluate it
obj.evaluate config.topscope
# And run the loop.
config.send(:evaluate_generators)
%w{File}.each do |type|
objects = config.resources.find_all { |r| r.type == type and r.virtual }
assert(objects.empty?, "Virtual define got evaluated")
end
end
if defined? ActiveRecord
# Verify that we can both store and collect an object in the same
# run, whether it's in the same scope as a collection or a different
# scope.
def test_storeandcollect
Puppet[:storeconfigs] = true
Puppet::Rails.init
sleep 1
children = []
Puppet[:code] = "
class yay {
@@host { myhost: ip => \"192.168.0.2\" }
}
include yay
@@host { puppet: ip => \"192.168.0.3\" }
Host <<||>>"
interp = nil
assert_nothing_raised {
interp = Puppet::Parser::Interpreter.new
}
config = nil
# We run it twice because we want to make sure there's no conflict
# if we pull it up from the database.
node = mknode
node.parameters = {"hostname" => node.name}
2.times { |i|
assert_nothing_raised {
config = interp.compile(node)
}
flat = config.extract.flatten
%w{puppet myhost}.each do |name|
assert(flat.find{|o| o.name == name }, "Did not find #{name}")
end
}
end
else
$stderr.puts "No ActiveRecord -- skipping collection tests"
end
def test_namespaces
scope = mkscope
assert_equal([""], scope.namespaces,
"Started out with incorrect namespaces")
assert_nothing_raised { scope.add_namespace("fun::test") }
assert_equal(["fun::test"], scope.namespaces,
"Did not add namespace correctly")
assert_nothing_raised { scope.add_namespace("yay::test") }
assert_equal(["fun::test", "yay::test"], scope.namespaces,
"Did not add extra namespace correctly")
end
def test_findclass_and_finddefine
parser = mkparser
# Make sure our scope calls the parser findclass method with
# the right namespaces
scope = mkscope :parser => parser
parser.metaclass.send(:attr_accessor, :last)
methods = [:findclass, :finddefine]
methods.each do |m|
parser.meta_def(m) do |namespace, name|
@checked ||= []
@checked << [namespace, name]
# Only return a value on the last call.
if @last == namespace
ret = @checked.dup
@checked.clear
return ret
else
return nil
end
end
end
test = proc do |should|
parser.last = scope.namespaces[-1]
methods.each do |method|
result = scope.send(method, "testing")
assert_equal(should, result,
"did not get correct value from %s with namespaces %s" %
[method, scope.namespaces.inspect])
end
end
# Start with the empty namespace
assert_nothing_raised { test.call([["", "testing"]]) }
# Now add a namespace
scope.add_namespace("a")
assert_nothing_raised { test.call([["a", "testing"]]) }
# And another
scope.add_namespace("b")
assert_nothing_raised { test.call([["a", "testing"], ["b", "testing"]]) }
end
# #629 - undef should be "" or :undef
def test_lookupvar_with_undef
scope = mkscope
scope.setvar("testing", :undef)
assert_equal(:undef, scope.lookupvar("testing", false),
"undef was not returned as :undef when not string")
assert_equal("", scope.lookupvar("testing", true),
"undef was not returned as '' when string")
end
end
|