Sha256: 08d959b36c3f31be040c8ff7a3372a9953f3e7c47ce00f7235900ea1eb4d2d20
Contents?: true
Size: 1.89 KB
Versions: 1
Compression:
Stored size: 1.89 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') require 'optparse' describe Trinidad::Extensions::HotdeployWebAppExtension do subject { Trinidad::Extensions::HotdeployWebAppExtension.new({}) } before(:each) do @tomcat = Trinidad::Tomcat::Tomcat.new @context = Trinidad::Tomcat::StandardContext.new @context.doc_base = Dir.pwd end it "uses tmp/restart.txt as monitor by default" do listener = subject.configure(@tomcat, @context) listener.monitor.should =~ /tmp\/restart.txt$/ end it "can use a custom monitor file" do ext = Trinidad::Extensions::HotdeployWebAppExtension.new({ :monitor => 'tmp/redeploy.txt' }) listener = ext.configure(@tomcat, @context) listener.monitor.should =~ /tmp\/redeploy.txt$/ end it "uses the base directory when the custom path is relative" do ext = Trinidad::Extensions::HotdeployWebAppExtension.new({ :monitor => 'tmp/redeploy.txt' }) listener = ext.configure(@tomcat, @context) listener.monitor.should =~ /^#{File.expand_path('../../', __FILE__)}/ end it "checks the file each second by default" do listener = subject.configure(@tomcat, @context) listener.delay.should == 1000 end it "can use a custom delay" do ext = Trinidad::Extensions::HotdeployWebAppExtension.new({ :delay => 30000 }) listener = ext.configure(@tomcat, @context) listener.delay.should == 30000 end it "uses the doc_base path if the context it's a war file" do @context.doc_base = 'foo.war' listener = subject.configure(@tomcat, @context) listener.monitor.should =~ /foo\.war$/ end end describe Trinidad::Extensions::HotdeployOptionsExtension do it "allows to specify a command line option to load the hotdeploy" do parser = OptionParser.new options = {} subject.configure(parser, options) options[:extensions].keys.should include(:hotdeploy) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trinidad_hotdeploy_extension-0.4.0 | spec/trinidad_hotdeploy_extension_spec.rb |