Sha256: 8808c39eaf0e814984efbd25c6a753bbe88f0549ec0f229013b9fd02ce118397
Contents?: true
Size: 1.96 KB
Versions: 28
Compression:
Stored size: 1.96 KB
Contents
require File.dirname(__FILE__) + '/../spec_helper' include PoolParty::Resources require File.dirname(__FILE__) + '/test_plugins/webserver' describe "Plugin" do before(:each) do @p = pool :poolpartyrb do cloud :app do apache do enable_php site("heady", { :document_root => "/root" }) end end end @c = @p.cloud(:app) end describe "methods should include" do it "register_plugin(plugin)" do;WebServers.respond_to?(:register_plugin).should == true;end end describe "registered" do before(:each) do @plugin = "apache".class_constant.new(@c) end describe "storage" do it "should store the plugin in a Hash on the pool" do @c.plugins.class.should == Hash end it "should be able to retrieve the plugin as a name" do @c.plugin("apache").should_not be_nil end end it "should store the regsitered plugins in an array" do @plugin.should_not be_nil end it "should set the pool on the plugin" do @plugin.parent.should == @c end it "should have the plugin name as a method on the cloud " do @c.respond_to?(:apache).should == true end describe "methods" do before(:each) do reset! end it "should call the enable_php method when in the defininition of the cloud" do @plugin.respond_to?(:enable_php).should == true end it "should call php = true in the enable_php" do @plugin.php.should_not == true @plugin.enable_php @plugin.php.should == true end it "should call the site method when in the defininition of the cloud" do @plugin.respond_to?(:site).should == true end it "should be able to call the plugin method site" do @plugin.should_receive(:virtual_host).with("hop", {:document_root => "/root"}) @plugin.virtual_host("hop", {:document_root => "/root"}) end end end end
Version data entries
28 entries across 28 versions & 2 rubygems