summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-08-31 16:01:17 -0700
committerJames Turnbull <james@lovedthanlost.net>2009-09-01 21:04:06 +1000
commitd397f8d1d1092067f7ca52449ce9af63f02f44e1 (patch)
treef7ec36c5e05bd55b8e21fce565f493a85e2f65a0 /spec
parent800a78b993f15e2d77312bf207929ec876e9b227 (diff)
downloadpuppet-d397f8d1d1092067f7ca52449ce9af63f02f44e1.tar.gz
puppet-d397f8d1d1092067f7ca52449ce9af63f02f44e1.tar.xz
puppet-d397f8d1d1092067f7ca52449ce9af63f02f44e1.zip
Fixing #2574 - autoloading finds plugins in modules
We had some stupid errors that were preventing this from happening; this fixes them and adds an integration test. Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec')
-rwxr-xr-xspec/integration/util/autoload.rb18
-rwxr-xr-xspec/unit/util/autoload.rb20
2 files changed, 35 insertions, 3 deletions
diff --git a/spec/integration/util/autoload.rb b/spec/integration/util/autoload.rb
index f84c00bcb..a1c8aaa58 100755
--- a/spec/integration/util/autoload.rb
+++ b/spec/integration/util/autoload.rb
@@ -3,6 +3,7 @@
Dir.chdir(File.dirname(__FILE__)) { (s = lambda { |f| File.exist?(f) ? require(f) : Dir.chdir("..") { s.call(f) } }).call("spec/spec_helper.rb") }
require 'puppet/util/autoload'
+require 'fileutils'
class AutoloadIntegrator
@things = []
@@ -93,4 +94,21 @@ describe Puppet::Util::Autoload do
}
}
end
+
+ it "should be able to load files directly from modules" do
+ modulepath = tmpfile("autoload_module_testing")
+ libdir = File.join(modulepath, "mymod", "lib", "foo")
+ FileUtils.mkdir_p(libdir)
+
+ file = File.join(libdir, "plugin.rb")
+
+ Puppet[:modulepath] = modulepath
+
+ with_loader("foo", "foo") do |dir, loader|
+ with_file(:plugin, file.split("/")) do
+ loader.load(:plugin)
+ loader.should be_loaded("plugin.rb")
+ end
+ end
+ end
end
diff --git a/spec/unit/util/autoload.rb b/spec/unit/util/autoload.rb
index c4a8642a0..18938125d 100755
--- a/spec/unit/util/autoload.rb
+++ b/spec/unit/util/autoload.rb
@@ -22,9 +22,9 @@ describe Puppet::Util::Autoload do
describe "when building the search path" do
it "should collect all of the plugins and lib directories that exist in the current environment's module path" do
Puppet.settings.expects(:value).with(:environment).returns "foo"
- Puppet.settings.expects(:value).with(:modulepath, "foo").returns %w{/a /b /c}
- Dir.expects(:entries).with("/a").returns %w{/a/one /a/two}
- Dir.expects(:entries).with("/b").returns %w{/b/one /b/two}
+ Puppet.settings.expects(:value).with(:modulepath, :foo).returns "/a:/b:/c"
+ Dir.expects(:entries).with("/a").returns %w{one two}
+ Dir.expects(:entries).with("/b").returns %w{one two}
FileTest.stubs(:directory?).returns false
FileTest.expects(:directory?).with("/a").returns true
@@ -36,6 +36,20 @@ describe Puppet::Util::Autoload do
@autoload.module_directories.should == %w{/a/one/plugins /a/two/lib /b/one/plugins /b/two/lib}
end
+ it "should not look for lib directories in directories starting with '.'" do
+ Puppet.settings.expects(:value).with(:environment).returns "foo"
+ Puppet.settings.expects(:value).with(:modulepath, :foo).returns "/a"
+ Dir.expects(:entries).with("/a").returns %w{. ..}
+
+ FileTest.expects(:directory?).with("/a").returns true
+ FileTest.expects(:directory?).with("/a/./lib").never
+ FileTest.expects(:directory?).with("/a/./plugins").never
+ FileTest.expects(:directory?).with("/a/../lib").never
+ FileTest.expects(:directory?).with("/a/../plugins").never
+
+ @autoload.module_directories
+ end
+
it "should include the module directories, the Puppet libdir, and all of the Ruby load directories" do
@autoload.expects(:module_directories).returns %w{/one /two}
@autoload.search_directories.should == ["/one", "/two", Puppet[:libdir], $:].flatten