summaryrefslogtreecommitdiffstats
path: root/test/language
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-05-13 20:01:12 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-05-13 20:01:12 +0000
commit637cc71296f96fd1d5f2ca83aa7e20c73757f8dd (patch)
treef3b055bf75d7df6cbabafb24334710071f2ef8ec /test/language
parent9e9ef1acc6231254e52b96257ed1e81475d2d1bc (diff)
downloadpuppet-637cc71296f96fd1d5f2ca83aa7e20c73757f8dd.tar.gz
puppet-637cc71296f96fd1d5f2ca83aa7e20c73757f8dd.tar.xz
puppet-637cc71296f96fd1d5f2ca83aa7e20c73757f8dd.zip
I appear to have object collection working, incredibly. This commit does the collection from the database up to adding the objects to the current scope, which is what sends it to the client.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1190 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/language')
-rwxr-xr-xtest/language/ast.rb56
-rw-r--r--test/language/parser.rb19
-rwxr-xr-xtest/language/rails.rb24
3 files changed, 96 insertions, 3 deletions
diff --git a/test/language/ast.rb b/test/language/ast.rb
index b714fcdea..cb95fdff4 100755
--- a/test/language/ast.rb
+++ b/test/language/ast.rb
@@ -753,6 +753,62 @@ class TestAST < Test::Unit::TestCase
end
end
+ # Verify that our collection stuff works.
+ def test_collection
+ collectable = []
+ non = []
+ # First put some objects into the database.
+ bucket = mk_transtree do |object, depth, width|
+ # and mark some of them collectable
+ if width % 2 == 1
+ object.collectable = true
+ collectable << object
+ else
+ non << object
+ end
+ end
+
+ # Now collect our facts
+ facts = {}
+ Facter.each do |fact, value| facts[fact] = value end
+
+ assert_nothing_raised {
+ Puppet::Rails.init
+ }
+
+ # Now try storing our crap
+ assert_nothing_raised {
+ host = Puppet::Rails::Host.store(
+ :objects => bucket,
+ :facts => facts,
+ :host => facts["hostname"]
+ )
+ }
+
+ # Now create an ast tree that collects that. They should all be files.
+ coll = nil
+ assert_nothing_raised {
+ coll = AST::Collection.new(
+ :type => nameobj("file")
+ )
+ }
+
+ top = nil
+ assert_nothing_raised("Could not create top object") {
+ top = AST::ASTArray.new(
+ :children => [coll]
+ )
+ }
+
+ objects = nil
+ assert_nothing_raised("Could not evaluate") {
+ scope = Puppet::Parser::Scope.new()
+ objects = scope.evaluate(:ast => top).flatten
+ }
+
+ assert(objects.length > 0, "Did not receive any collected objects")
+ end
+
# To fix #140. Currently non-functional.
def disabled_test_classreuse
children = []
diff --git a/test/language/parser.rb b/test/language/parser.rb
index e1b6598d4..848f0128e 100644
--- a/test/language/parser.rb
+++ b/test/language/parser.rb
@@ -335,6 +335,25 @@ class TestParser < Test::Unit::TestCase
parser.parse
}
end
+
+ # Verify that we can parse collections
+ def test_collecting
+ Puppet[:storeconfigs] = true
+ text = "port <| |>"
+ parser = Puppet::Parser::Parser.new
+ parser.string = text
+
+ ret = nil
+ assert_nothing_raised {
+ ret = parser.parse
+ }
+
+ assert_instance_of(AST::ASTArray, ret)
+
+ ret.each do |obj|
+ assert_instance_of(AST::Collection, obj)
+ end
+ end
end
# $Id$
diff --git a/test/language/rails.rb b/test/language/rails.rb
index e85652620..13bee4c5b 100755
--- a/test/language/rails.rb
+++ b/test/language/rails.rb
@@ -62,7 +62,21 @@ class TestRails < Test::Unit::TestCase
assert(host.rails_objects, "No objects on host")
- collectable = host.rails_objects.find_all do |obj| obj.collectable end
+ assert_equal(facts["hostname"], host.facts["hostname"],
+ "Did not retrieve facts")
+
+ inline_test_objectcollection(host)
+ end
+
+ # This is called from another test, it just makes sense to split it out some
+ def inline_test_objectcollection(host)
+ # XXX For some reason, find_all doesn't work here at all.
+ collectable = []
+ host.rails_objects.each do |obj|
+ if obj.collectable?
+ collectable << obj
+ end
+ end
assert(collectable.length > 0, "Found no collectable objects")
@@ -76,8 +90,12 @@ class TestRails < Test::Unit::TestCase
assert(!trans.collectable, "Object from db was collectable")
end
- assert_equal(facts["hostname"], host.facts["hostname"],
- "Did not retrieve facts")
+ # Now find all collectable objects directly through database APIs
+
+ list = Puppet::Rails::RailsObject.find_all_by_collectable(true)
+
+ assert_equal(collectable.length, list.length,
+ "Did not get the right number of objects")
end
def test_railsinit