X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_server.t;h=258255ecfd6a9d5fe2b509fbe5fb597ab22e36b6;hb=b1bfeea6b5a93af08341739456d587bd5455caf9;hp=035be3870662d374f60bd8097c2930b4f811e027;hpb=2c298960a7602044a287c444e3f421d628202b76;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_script_server.t b/t/aggregate/unit_core_script_server.t index 035be38..258255e 100644 --- a/t/aggregate/unit_core_script_server.t +++ b/t/aggregate/unit_core_script_server.t @@ -12,7 +12,8 @@ use Catalyst::Script::Server; my $testopts; # Test default (no opts/args behaviour) -testOption( [ qw// ], ['3000', 'localhost', opthash()] ); +# Note undef for host means we bind to all interfaces. +testOption( [ qw// ], ['3000', undef, opthash()] ); # Old version supports long format opts with either one or two dashes. New version only supports two. # Old New @@ -23,28 +24,28 @@ testOption( [ qw/--host testhost/ ], ['3000', 'testhost', opthash()] ); testOption( [ qw/-h testhost/ ], ['3000', 'testhost', opthash()] ); # port -p -port --port -l --listen -testOption( [ qw/-p 3001/ ], ['3001', 'localhost', opthash()] ); -testOption( [ qw/--port 3001/ ], ['3001', 'localhost', opthash()] ); +testOption( [ qw/-p 3001/ ], ['3001', undef, opthash()] ); +testOption( [ qw/--port 3001/ ], ['3001', undef, opthash()] ); # fork -f -fork --fork -f --fork -testOption( [ qw/--fork/ ], ['3000', 'localhost', opthash(fork => 1)] ); -testOption( [ qw/-f/ ], ['3000', 'localhost', opthash(fork => 1)] ); +testOption( [ qw/--fork/ ], ['3000', undef, opthash(fork => 1)] ); +testOption( [ qw/-f/ ], ['3000', undef, opthash(fork => 1)] ); # pidfile -pidfile --pid --pidfile -testOption( [ qw/--pidfile cat.pid/ ], ['3000', 'localhost', opthash(pidfile => "cat.pid")] ); -testOption( [ qw/--pid cat.pid/ ], ['3000', 'localhost', opthash(pidfile => "cat.pid")] ); +testOption( [ qw/--pidfile cat.pid/ ], ['3000', undef, opthash(pidfile => "cat.pid")] ); +testOption( [ qw/--pid cat.pid/ ], ['3000', undef, opthash(pidfile => "cat.pid")] ); # keepalive -k -keepalive --keepalive -k --keepalive -testOption( [ qw/-k/ ], ['3000', 'localhost', opthash(keepalive => 1)] ); -testOption( [ qw/--keepalive/ ], ['3000', 'localhost', opthash(keepalive => 1)] ); +testOption( [ qw/-k/ ], ['3000', undef, opthash(keepalive => 1)] ); +testOption( [ qw/--keepalive/ ], ['3000', undef, opthash(keepalive => 1)] ); # symlinks -follow_symlinks --sym --follow_symlinks -testOption( [ qw/--follow_symlinks/ ], ['3000', 'localhost', opthash(follow_symlinks => 1)] ); -testOption( [ qw/--sym/ ], ['3000', 'localhost', opthash(follow_symlinks => 1)] ); +testOption( [ qw/--follow_symlinks/ ], ['3000', undef, opthash(follow_symlinks => 1)] ); +testOption( [ qw/--sym/ ], ['3000', undef, opthash(follow_symlinks => 1)] ); # background -background --bg --background -testOption( [ qw/--background/ ], ['3000', 'localhost', opthash(background => 1)] ); -testOption( [ qw/--bg/ ], ['3000', 'localhost', opthash(background => 1)] ); +testOption( [ qw/--background/ ], ['3000', undef, opthash(background => 1)] ); +testOption( [ qw/--bg/ ], ['3000', undef, opthash(background => 1)] ); # restart -r -restart --restart -R --restart testRestart( ['-r'], restartopthash() ); @@ -110,6 +111,7 @@ sub opthash { sub restartopthash { return { + follow_symlinks => 0, @_, }; }