Changelog Adopt::NEXT warnings
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_script_server.t
CommitLineData
60b86a55 1use strict;
2use warnings;
3
4use FindBin qw/$Bin/;
04f4497c 5use lib "$Bin/../lib";
60b86a55 6
6ec45f37 7use Test::More;
60b86a55 8use Test::Exception;
9
10use Catalyst::Script::Server;
11
f3bf2976 12my $testopts;
13
14# Test default (no opts/args behaviour)
b1bfeea6 15# Note undef for host means we bind to all interfaces.
16testOption( [ qw// ], ['3000', undef, opthash()] );
f3bf2976 17
18# Old version supports long format opts with either one or two dashes. New version only supports two.
19# Old New
fb533ac3 20# help -? -help --help -? --help
f3bf2976 21# debug -d -debug --debug -d --debug
22# host -host --host --host
23testOption( [ qw/--host testhost/ ], ['3000', 'testhost', opthash()] );
24testOption( [ qw/-h testhost/ ], ['3000', 'testhost', opthash()] );
25
26# port -p -port --port -l --listen
b1bfeea6 27testOption( [ qw/-p 3001/ ], ['3001', undef, opthash()] );
28testOption( [ qw/--port 3001/ ], ['3001', undef, opthash()] );
b89d8b98 29{
30 local $ENV{TESTAPPTOTESTSCRIPTS_PORT} = 5000;
31 testOption( [ qw// ], [5000, undef, opthash()] );
32}
56eb9db4 33{
34 local $ENV{CATALYST_PORT} = 5000;
35 testOption( [ qw// ], [5000, undef, opthash()] );
36}
f3bf2976 37
38# fork -f -fork --fork -f --fork
b1bfeea6 39testOption( [ qw/--fork/ ], ['3000', undef, opthash(fork => 1)] );
40testOption( [ qw/-f/ ], ['3000', undef, opthash(fork => 1)] );
f3bf2976 41
42# pidfile -pidfile --pid --pidfile
b1bfeea6 43testOption( [ qw/--pidfile cat.pid/ ], ['3000', undef, opthash(pidfile => "cat.pid")] );
44testOption( [ qw/--pid cat.pid/ ], ['3000', undef, opthash(pidfile => "cat.pid")] );
f3bf2976 45
46# keepalive -k -keepalive --keepalive -k --keepalive
b1bfeea6 47testOption( [ qw/-k/ ], ['3000', undef, opthash(keepalive => 1)] );
48testOption( [ qw/--keepalive/ ], ['3000', undef, opthash(keepalive => 1)] );
f3bf2976 49
50# symlinks -follow_symlinks --sym --follow_symlinks
b1bfeea6 51testOption( [ qw/--follow_symlinks/ ], ['3000', undef, opthash(follow_symlinks => 1)] );
52testOption( [ qw/--sym/ ], ['3000', undef, opthash(follow_symlinks => 1)] );
f3bf2976 53
54# background -background --bg --background
b1bfeea6 55testOption( [ qw/--background/ ], ['3000', undef, opthash(background => 1)] );
56testOption( [ qw/--bg/ ], ['3000', undef, opthash(background => 1)] );
53c6ec79 57
f3bf2976 58# restart -r -restart --restart -R --restart
2c298960 59testRestart( ['-r'], restartopthash() );
56eb9db4 60{
61 local $ENV{TESTAPPTOTESTSCRIPTS_RELOAD} = 1;
62 testRestart( [], restartopthash() );
63}
64{
65 local $ENV{CATALYST_RELOAD} = 1;
66 testRestart( [], restartopthash() );
67}
68
2c298960 69# restart dly -rd -restartdelay --rd --restart_delay
70testRestart( ['-r', '--rd', 30], restartopthash(sleep_interval => 30) );
71testRestart( ['-r', '--restart_delay', 30], restartopthash(sleep_interval => 30) );
72
f3bf2976 73# restart dir -restartdirectory --rdir --restart_directory
2c298960 74testRestart( ['-r', '--rdir', 'root'], restartopthash(directories => ['root']) );
75testRestart( ['-r', '--rdir', 'root', '--rdir', 'lib'], restartopthash(directories => ['root', 'lib']) );
76testRestart( ['-r', '--restart_directory', 'root'], restartopthash(directories => ['root']) );
77
78# restart regex -rr -restartregex --rr --restart_regex
79testRestart( ['-r', '--rr', 'foo'], restartopthash(filter => qr/foo/) );
80testRestart( ['-r', '--restart_regex', 'foo'], restartopthash(filter => qr/foo/) );
f3bf2976 81
6ec45f37 82done_testing;
f3bf2976 83
84sub testOption {
85 my ($argstring, $resultarray) = @_;
2c298960 86 my $app = _build_testapp($argstring);
87 lives_ok {
88 $app->run;
89 };
90 # First element of RUN_ARGS will be the script name, which we don't care about
91 shift @TestAppToTestScripts::RUN_ARGS;
92 is_deeply \@TestAppToTestScripts::RUN_ARGS, $resultarray, "is_deeply comparison " . join(' ', @$argstring);
93}
94
95sub testRestart {
96 my ($argstring, $resultarray) = @_;
97 my $app = _build_testapp($argstring);
56eb9db4 98 ok $app->restart, 'App is in restart mode';
2c298960 99 my $args = {$app->_restarter_args};
100 is_deeply delete $args->{argv}, $argstring, 'argv is arg string';
101 is ref(delete $args->{start_sub}), 'CODE', 'Closure to start app present';
102 is_deeply $args, $resultarray, "is_deeply comparison of restarter args " . join(' ', @$argstring);
103}
104
105sub _build_testapp {
106 my ($argstring, $resultarray) = @_;
f3bf2976 107
6ec45f37 108 local @ARGV = @$argstring;
109 local @TestAppToTestScripts::RUN_ARGS;
2c298960 110 my $i;
6ec45f37 111 lives_ok {
2c298960 112 $i = Catalyst::Script::Server->new_with_options(application_name => 'TestAppToTestScripts');
113 } "new_with_options " . join(' ', @$argstring);;
114 ok $i;
115 return $i;
60b86a55 116}
117
f3bf2976 118# Returns the hash expected when no flags are passed
119sub opthash {
960bf5b0 120 return {
121 'pidfile' => undef,
122 'fork' => 0,
123 'follow_symlinks' => 0,
124 'background' => 0,
125 'keepalive' => 0,
126 @_,
127 };
60b86a55 128}
2c298960 129
130sub restartopthash {
131 return {
34be7d45 132 follow_symlinks => 0,
2c298960 133 @_,
134 };
135}