Nested TAP and Test::Aggregate don't play nice together. It was cute, but screw it...
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_script_fastcgi.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::FastCGI;
11
12 my $testopts;
13
14 # Test default (no opts/args behaviour)
15 testOption( [ qw// ], [undef, opthash()] );
16
17 # listen socket
18 testOption( [ qw|-l /tmp/foo| ], ['/tmp/foo', opthash()] );
19 testOption( [ qw/-l 127.0.0.1:3000/ ], ['127.0.0.1:3000', opthash()] );
20
21 #daemonize           -d --daemon
22 testOption( [ qw/-d/ ], [undef, opthash()] );
23 testOption( [ qw/--daemon/ ], [undef, opthash()] );
24
25 # pidfile        -pidfile                  --pid --pidfile
26 testOption( [ qw/--pidfile cat.pid/ ], [undef, opthash(pidfile => 'cat.pid')] );
27 testOption( [ qw/--pid cat.pid/ ], [undef, opthash(pidfile => 'cat.pid')] );
28
29 # manager
30 testOption( [ qw/--manager foo::bar/ ], [undef, opthash(manager => 'foo::bar')] );
31 testOption( [ qw/-M foo::bar/ ], [undef, opthash(manager => 'foo::bar')] );
32
33 # keeperr
34 testOption( [ qw/--keeperr/ ], [undef, opthash(keep_stderr => 1)] );
35 testOption( [ qw/-e/ ], [undef, opthash(keep_stderr => 1)] );
36
37 # nproc
38 testOption( [ qw/--nproc 6/ ], [undef, opthash(nproc => 6)] );
39 testOption( [ qw/--n 6/ ], [undef, opthash(nproc => 6)] );
40
41 # detach
42 testOption( [ qw/--detach/ ], [undef, opthash(detach => 1)] );
43 testOption( [ qw/--det/ ], [undef, opthash(detach => 1)] );
44
45 done_testing;
46
47 sub testOption {
48     my ($argstring, $resultarray) = @_;
49
50     local @ARGV = @$argstring;
51     local @TestAppToTestScripts::RUN_ARGS;
52     lives_ok {
53         Catalyst::Script::FastCGI->new_with_options(application_name => 'TestAppToTestScripts')->run;
54     } "new_with_options";
55     # First element of RUN_ARGS will be the script name, which we don't care about
56     shift @TestAppToTestScripts::RUN_ARGS;
57     is_deeply \@TestAppToTestScripts::RUN_ARGS, $resultarray, "is_deeply comparison";
58 }
59
60 # Returns the hash expected when no flags are passed
61 sub opthash {
62     return {
63         pidfile => undef,
64         keep_stderr => undef,
65         detach => undef,
66         nproc => undef,
67         manager => undef,
68         @_,
69     };
70 }