Enable hooking parameters into req/res construction. Useful if you are dynamically...
[catagits/Catalyst-Runtime.git] / t / optional_lighttpd-fastcgi.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7 BEGIN {
8     plan skip_all => 'set TEST_LIGHTTPD to enable this test'
9         unless $ENV{TEST_LIGHTTPD};
10 }
11
12 use File::Path;
13 use FindBin;
14 use IO::Socket;
15
16 eval "use FCGI";
17 plan skip_all => 'FCGI required' if $@;
18
19 eval "use Catalyst::Devel 1.0";
20 plan skip_all => 'Catalyst::Devel required' if $@;
21
22 eval "use File::Copy::Recursive";
23 plan skip_all => 'File::Copy::Recursive required' if $@;
24
25 eval "use Test::Harness";
26 plan skip_all => 'Test::Harness required' if $@;
27
28 my $lighttpd_bin = $ENV{LIGHTTPD_BIN} || `which lighttpd`;
29 chomp $lighttpd_bin;
30
31 plan skip_all => 'Please set LIGHTTPD_BIN to the path to lighttpd'
32     unless $lighttpd_bin && -x $lighttpd_bin;
33
34 plan tests => 1;
35
36 # clean up
37 rmtree "$FindBin::Bin/../t/tmp" if -d "$FindBin::Bin/../t/tmp";
38
39 # create a TestApp and copy the test libs into it
40 mkdir "$FindBin::Bin/../t/tmp";
41 chdir "$FindBin::Bin/../t/tmp";
42 system "$^X -I$FindBin::Bin/../lib $FindBin::Bin/../script/catalyst.pl TestApp";
43 chdir "$FindBin::Bin/..";
44 File::Copy::Recursive::dircopy( 't/lib', 't/tmp/TestApp/lib' );
45
46 # remove TestApp's tests
47 rmtree 't/tmp/TestApp/t';
48
49 # Create a temporary lighttpd config
50 my $docroot = "$FindBin::Bin/../t/tmp";
51 my $port    = 8529;
52
53 # Clean up docroot path
54 $docroot =~ s{/t/..}{};
55
56 my $conf = <<"END";
57 # basic lighttpd config file for testing fcgi+catalyst
58 server.modules = (
59     "mod_access",
60     "mod_fastcgi",
61     "mod_accesslog"
62 )
63
64 server.document-root = "$docroot"
65
66 server.errorlog    = "$docroot/error.log"
67 accesslog.filename = "$docroot/access.log"
68
69 server.bind = "127.0.0.1"
70 server.port = $port
71
72 # catalyst app specific fcgi setup
73 fastcgi.server = (
74     "" => (
75         "FastCgiTest" => (
76             "socket"          => "$docroot/test.socket",
77             "check-local"     => "disable",
78             "bin-path"        => "$docroot/TestApp/script/testapp_fastcgi.pl",
79             "min-procs"       => 1,
80             "max-procs"       => 1,
81             "idle-timeout"    => 20,
82             "bin-environment" => (
83                 "PERL5LIB" => "$docroot/../../lib"
84             )
85         )
86     )
87 )
88 END
89
90 open(my $lightconf, '>', "$docroot/lighttpd.conf") 
91   or die "Can't open $docroot/lighttpd.conf: $!";
92 print {$lightconf} $conf or die "Write error: $!";
93 close $lightconf;
94
95 my $pid = open my $lighttpd, "$lighttpd_bin -D -f $docroot/lighttpd.conf 2>&1 |" 
96     or die "Unable to spawn lighttpd: $!";
97     
98 # wait for it to start
99 while ( check_port( 'localhost', $port ) != 1 ) {
100     diag "Waiting for server to start...";
101     sleep 1;
102 }
103
104 # run the testsuite against the server
105 $ENV{CATALYST_SERVER} = "http://localhost:$port";
106
107 my @tests = (shift) || glob('t/aggregate/live_*');
108 eval {
109     runtests(@tests);
110 };
111 ok(!$@, 'lighttpd tests ran OK');
112
113 # shut it down
114 kill 'INT', $pid;
115 close $lighttpd;
116
117 # clean up
118 rmtree "$FindBin::Bin/../t/tmp" if -d "$FindBin::Bin/../t/tmp";
119
120 sub check_port {
121     my ( $host, $port ) = @_;
122
123     my $remote = IO::Socket::INET->new(
124         Proto    => "tcp",
125         PeerAddr => $host,
126         PeerPort => $port
127     );
128     if ($remote) {
129         close $remote;
130         return 1;
131     }
132     else {
133         return 0;
134     }
135 }