diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-03-14 00:37:19 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-03-14 00:37:19 -0700 |
commit | 90d083563df3fc997b8cd3790f3b0b95d0855461 (patch) | |
tree | bb1306abdf132e2eab8851ff3c31e34a608fe0ca /spec | |
parent | f428846dc400d6edb3b0e8be02a95d2ed66f22bf (diff) | |
download | chef-90d083563df3fc997b8cd3790f3b0b95d0855461.tar.gz |
Adding Chef::CookbookLoader
Diffstat (limited to 'spec')
-rw-r--r-- | spec/data/kitchen/openldap/attributes/default.rb | 3 | ||||
-rw-r--r-- | spec/data/kitchen/openldap/attributes/robinson.rb | 3 | ||||
-rw-r--r-- | spec/data/kitchen/openldap/definitions/client.rb | 3 | ||||
-rw-r--r-- | spec/data/kitchen/openldap/definitions/drewbarrymore.rb | 3 | ||||
-rw-r--r-- | spec/data/kitchen/openldap/recipes/gigantor.rb | 3 | ||||
-rw-r--r-- | spec/data/kitchen/openldap/recipes/ignoreme.rb | 3 | ||||
-rw-r--r-- | spec/data/kitchen/openldap/recipes/woot.rb | 3 | ||||
-rw-r--r-- | spec/unit/cookbook_loader_spec.rb | 116 |
8 files changed, 137 insertions, 0 deletions
diff --git a/spec/data/kitchen/openldap/attributes/default.rb b/spec/data/kitchen/openldap/attributes/default.rb new file mode 100644 index 0000000000..d208959475 --- /dev/null +++ b/spec/data/kitchen/openldap/attributes/default.rb @@ -0,0 +1,3 @@ +# +# Nothing to see here, move along +# diff --git a/spec/data/kitchen/openldap/attributes/robinson.rb b/spec/data/kitchen/openldap/attributes/robinson.rb new file mode 100644 index 0000000000..9d6b44d464 --- /dev/null +++ b/spec/data/kitchen/openldap/attributes/robinson.rb @@ -0,0 +1,3 @@ +# +# Smokey lives here +#
\ No newline at end of file diff --git a/spec/data/kitchen/openldap/definitions/client.rb b/spec/data/kitchen/openldap/definitions/client.rb new file mode 100644 index 0000000000..d4c2263b54 --- /dev/null +++ b/spec/data/kitchen/openldap/definitions/client.rb @@ -0,0 +1,3 @@ +# +# A sad client +# diff --git a/spec/data/kitchen/openldap/definitions/drewbarrymore.rb b/spec/data/kitchen/openldap/definitions/drewbarrymore.rb new file mode 100644 index 0000000000..510f0c35da --- /dev/null +++ b/spec/data/kitchen/openldap/definitions/drewbarrymore.rb @@ -0,0 +1,3 @@ +# +# Was in people magazine this month... +#
\ No newline at end of file diff --git a/spec/data/kitchen/openldap/recipes/gigantor.rb b/spec/data/kitchen/openldap/recipes/gigantor.rb new file mode 100644 index 0000000000..70a41960eb --- /dev/null +++ b/spec/data/kitchen/openldap/recipes/gigantor.rb @@ -0,0 +1,3 @@ +cat "blanket" do + pretty_kitty true +end
\ No newline at end of file diff --git a/spec/data/kitchen/openldap/recipes/ignoreme.rb b/spec/data/kitchen/openldap/recipes/ignoreme.rb new file mode 100644 index 0000000000..15095986c6 --- /dev/null +++ b/spec/data/kitchen/openldap/recipes/ignoreme.rb @@ -0,0 +1,3 @@ +# +# this file will never be seen +#
\ No newline at end of file diff --git a/spec/data/kitchen/openldap/recipes/woot.rb b/spec/data/kitchen/openldap/recipes/woot.rb new file mode 100644 index 0000000000..44893dae36 --- /dev/null +++ b/spec/data/kitchen/openldap/recipes/woot.rb @@ -0,0 +1,3 @@ +# +# Such a funny word.. +# diff --git a/spec/unit/cookbook_loader_spec.rb b/spec/unit/cookbook_loader_spec.rb new file mode 100644 index 0000000000..3da3e644ec --- /dev/null +++ b/spec/unit/cookbook_loader_spec.rb @@ -0,0 +1,116 @@ +# +# Author:: Adam Jacob (<adam@hjksolutions.com>) +# Copyright:: Copyright (c) 2008 HJK Solutions, LLC +# License:: GNU General Public License version 2 or later +# +# This program and entire repository is free software; you can +# redistribute it and/or modify it under the terms of the GNU +# General Public License as published by the Free Software +# Foundation; either version 2 of the License, or any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +require File.join(File.dirname(__FILE__), "..", "spec_helper") + +describe Chef::CookbookLoader do + before(:each) do + config = Chef::Config.new + config.cookbook_path [ + File.join(File.dirname(__FILE__), "..", "data", "cookbooks"), + File.join(File.dirname(__FILE__), "..", "data", "kitchen") + ] + @cl = Chef::CookbookLoader.new(config) + end + + it "should be a Chef::CookbookLoader object" do + @cl.should be_kind_of(Chef::CookbookLoader) + end + + it "should return cookbook objects with []" do + @cl[:openldap].should be_a_kind_of(Chef::Cookbook) + end + + it "should allow you to look up available cookbooks with [] and a symbol" do + @cl[:openldap].name.should eql(:openldap) + end + + it "should allow you to look up available cookbooks with [] and a string" do + @cl["openldap"].name.should eql(:openldap) + end + + it "should allow you to iterate over cookbooks with each" do + seen = Hash.new + @cl.each do |cb| + seen[cb.name] = true + end + seen.should have_key(:openldap) + seen.should have_key(:apache2) + end + + it "should find all the cookbooks in the cookbook path" do + @cl.config.cookbook_path << File.join(File.dirname(__FILE__), "..", "data", "hidden-cookbooks") + @cl.load_cookbooks + @cl.detect { |cb| cb.name == :openldap }.should_not eql(nil) + @cl.detect { |cb| cb.name == :apache2 }.should_not eql(nil) + end + + it "should allow you to override an attribute file via cookbook_path" do + @cl[:openldap].attribute_files.detect { |f| + f =~ /cookbooks\/openldap\/attributes\/default.rb/ + }.should_not eql(nil) + @cl[:openldap].attribute_files.detect { |f| + f =~ /kitchen\/openldap\/attributes\/default.rb/ + }.should eql(nil) + end + + it "should load different attribute files from deeper paths" do + @cl[:openldap].attribute_files.detect { |f| + f =~ /kitchen\/openldap\/attributes\/robinson.rb/ + }.should_not eql(nil) + end + + it "should allow you to override a definition file via cookbook_path" do + @cl[:openldap].definition_files.detect { |f| + f =~ /cookbooks\/openldap\/definitions\/client.rb/ + }.should_not eql(nil) + @cl[:openldap].definition_files.detect { |f| + f =~ /kitchen\/openldap\/definitions\/client.rb/ + }.should eql(nil) + end + + it "should load definition files from deeper paths" do + @cl[:openldap].definition_files.detect { |f| + f =~ /kitchen\/openldap\/definitions\/drewbarrymore.rb/ + }.should_not eql(nil) + end + + it "should allow you to override a recipe file via cookbook_path" do + @cl[:openldap].recipe_files.detect { |f| + f =~ /cookbooks\/openldap\/recipes\/gigantor.rb/ + }.should_not eql(nil) + @cl[:openldap].recipe_files.detect { |f| + f =~ /kitchen\/openldap\/recipes\/gigantor.rb/ + }.should eql(nil) + end + + it "should load recipe files from deeper paths" do + @cl[:openldap].recipe_files.detect { |f| + f =~ /kitchen\/openldap\/recipes\/woot.rb/ + }.should_not eql(nil) + end + + it "should allow you to have an 'ignore' file, which skips loading files in later cookbooks" do + @cl[:openldap].recipe_files.detect { |f| + f =~ /kitchen\/openldap\/recipes\/ignoreme.rb/ + }.should eql(nil) + end + +end
\ No newline at end of file |