moar better warnings fix.
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_script_fastcgi.t
CommitLineData
78dc94f2 1use strict;
2use warnings;
3
4use FindBin qw/$Bin/;
5use lib "$Bin/../lib";
6
7use Test::More;
8use Test::Exception;
9
10use Catalyst::Script::FastCGI;
11
12my $testopts;
13
14# Test default (no opts/args behaviour)
15testOption( [ qw// ], [undef, opthash()] );
16
17# listen socket
18testOption( [ qw|-l /tmp/foo| ], ['/tmp/foo', opthash()] );
19testOption( [ qw/-l 127.0.0.1:3000/ ], ['127.0.0.1:3000', opthash()] );
20
21#daemonize -d --daemon
22testOption( [ qw/-d/ ], [undef, opthash()] );
23testOption( [ qw/--daemon/ ], [undef, opthash()] );
24
ad08ab75 25# pidfile -pidfile -p --pid --pidfile
78dc94f2 26testOption( [ qw/--pidfile cat.pid/ ], [undef, opthash(pidfile => 'cat.pid')] );
27testOption( [ qw/--pid cat.pid/ ], [undef, opthash(pidfile => 'cat.pid')] );
ad08ab75 28testOption( [ qw/-p cat.pid/ ], [undef, opthash(pidfile => 'cat.pid')] );
78dc94f2 29
30# manager
31testOption( [ qw/--manager foo::bar/ ], [undef, opthash(manager => 'foo::bar')] );
32testOption( [ qw/-M foo::bar/ ], [undef, opthash(manager => 'foo::bar')] );
33
34# keeperr
35testOption( [ qw/--keeperr/ ], [undef, opthash(keep_stderr => 1)] );
36testOption( [ qw/-e/ ], [undef, opthash(keep_stderr => 1)] );
37
38# nproc
39testOption( [ qw/--nproc 6/ ], [undef, opthash(nproc => 6)] );
40testOption( [ qw/--n 6/ ], [undef, opthash(nproc => 6)] );
41
42# detach
43testOption( [ qw/--detach/ ], [undef, opthash(detach => 1)] );
44testOption( [ qw/--det/ ], [undef, opthash(detach => 1)] );
45
46done_testing;
47
48sub testOption {
49 my ($argstring, $resultarray) = @_;
50
6ec45f37 51 local @ARGV = @$argstring;
52 local @TestAppToTestScripts::RUN_ARGS;
53 lives_ok {
54 Catalyst::Script::FastCGI->new_with_options(application_name => 'TestAppToTestScripts')->run;
55 } "new_with_options";
56 # First element of RUN_ARGS will be the script name, which we don't care about
57 shift @TestAppToTestScripts::RUN_ARGS;
58 is_deeply \@TestAppToTestScripts::RUN_ARGS, $resultarray, "is_deeply comparison";
78dc94f2 59}
60
61# Returns the hash expected when no flags are passed
62sub opthash {
63 return {
64 pidfile => undef,
65 keep_stderr => undef,
66 detach => undef,
67 nproc => undef,
68 manager => undef,
69 @_,
70 };
71}