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