X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=8c392cb6e52f4d562e3e01f4793306c4c79e59ce;hb=5a8fd7e9d4cca2af0237e1659f061cc64618bfe6;hp=1382d22ec3d296d39202c73c8c05cc42e594d2d2;hpb=caca1b02bf3a1559079047dde1edf73bfee358da;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index 1382d22..8c392cb 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -39,8 +39,9 @@ sub mk_app { $self->_mk_changes; $self->_mk_apptest; $self->_mk_cgi; + $self->_mk_nphcgi; + $self->_mk_fcgi; $self->_mk_server; - $self->_mk_cgiserver; $self->_mk_test; $self->_mk_create; return 1; @@ -307,7 +308,16 @@ use_ok( Catalyst::Test, '$name' ); ok( request('/')->is_success ); EOF - $self->mk_file( "$t\/02podcoverage.t", <<"EOF"); + $self->mk_file( "$t\/02pod.t", <<"EOF"); +use Test::More; + +eval "use Test::Pod 1.14"; +plan skip_all => 'Test::Pod 1.14 required' if $@; +plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; + +all_pod_files_ok(); +EOF + $self->mk_file( "$t\/03podcoverage.t", <<"EOF"); use Test::More; eval "use Test::Pod::Coverage 1.04"; @@ -322,13 +332,10 @@ sub _mk_cgi { my $self = shift; my $name = $self->{name}; my $script = $self->{script}; - $self->mk_file( "$script\/nph-cgi.pl", <<"EOF"); + $self->mk_file( "$script\/cgi.pl", <<"EOF"); $Config{startperl} -w -BEGIN { - \$ENV{CATALYST_ENGINE} = 'CGI'; - \$ENV{CATALYST_TEST} = 1; -} +BEGIN { \$ENV{CATALYST_ENGINE} = 'CGI' } use strict; use FindBin; @@ -342,7 +349,7 @@ __END__ =head1 NAME -nph-cgi - Catalyst CGI +cgi - Catalyst CGI =head1 SYNOPSIS @@ -365,59 +372,86 @@ the same terms as perl itself. =cut EOF - chmod 0700, "$script/nph-cgi.pl"; + chmod 0700, "$script/cgi.pl"; } -sub _mk_server { +sub _mk_nphcgi { my $self = shift; my $name = $self->{name}; my $script = $self->{script}; - $self->mk_file( "$script\/server.pl", <<"EOF"); + $self->mk_file( "$script\/nph-cgi.pl", <<"EOF"); $Config{startperl} -w -BEGIN { - \$ENV{CATALYST_ENGINE} = 'Server'; - \$ENV{CATALYST_TEST} = 1; -} +BEGIN { \$ENV{CATALYST_ENGINE} = 'CGI::NPH' } use strict; -use Getopt::Long; -use Pod::Usage; use FindBin; use lib "\$FindBin::Bin/../lib"; use $name; -my \$help = 0; -my \$port = 3000; +$name->run; -GetOptions( 'help|?' => \\\$help, 'port=s' => \\\$port ); +1; +__END__ -pod2usage(1) if \$help; +=head1 NAME -$name->run(\$port); +nph-cgi - Catalyst CGI + +=head1 SYNOPSIS + +See L + +=head1 DESCRIPTION + +Run a Catalyst application as nph cgi. + +=head1 AUTHOR + +Sebastian Riedel, C + +=head1 COPYRIGHT + +Copyright 2004 Sebastian Riedel. All rights reserved. + +This library is free software. You can redistribute it and/or modify it under +the same terms as perl itself. + +=cut +EOF + chmod 0700, "$script/nph-cgi.pl"; +} + +sub _mk_fcgi { + my $self = shift; + my $name = $self->{name}; + my $script = $self->{script}; + $self->mk_file( "$script\/fcgi.pl", <<"EOF"); +$Config{startperl} -w + +BEGIN { \$ENV{CATALYST_ENGINE} = 'FCGI' } + +use strict; +use FindBin; +use lib "\$FindBin::Bin/../lib"; +use $name; + +$name->run; 1; __END__ =head1 NAME -server - Catalyst Testserver +fcgi - Catalyst FCGI =head1 SYNOPSIS -server.pl [options] - - Options: - -? -help display this help and exits - -p -port port (defaults to 3000) - - See also: - perldoc Catalyst::Manual - perldoc Catalyst::Manual::Intro +See L =head1 DESCRIPTION -Run a Catalyst Testserver for this application. +Run a Catalyst application as fcgi. =head1 AUTHOR @@ -432,27 +466,23 @@ the same terms as perl itself. =cut EOF - chmod 0700, "$script/server.pl"; + chmod 0700, "$script/fcgi.pl"; } -sub _mk_cgiserver { +sub _mk_server { my $self = shift; my $name = $self->{name}; my $script = $self->{script}; - $self->mk_file( "$script\/cgi-server.pl", <<"EOF"); + $self->mk_file( "$script\/server.pl", <<"EOF"); $Config{startperl} -w -BEGIN { - \$ENV{CATALYST_ENGINE} = 'Server'; - \$ENV{CATALYST_TEST} = 1; -} +BEGIN { \$ENV{CATALYST_ENGINE} = 'Server' } use strict; use Getopt::Long; use Pod::Usage; use FindBin; use lib "\$FindBin::Bin/../lib"; -use File::Spec; use $name; my \$help = 0; @@ -462,18 +492,18 @@ GetOptions( 'help|?' => \\\$help, 'port=s' => \\\$port ); pod2usage(1) if \$help; -$name->run( \$port, File::Spec->catfile( \$FindBin::Bin, 'nph-cgi.pl' ) ); +$name->run(\$port); 1; __END__ =head1 NAME -cgi-server - Catalyst CGI Testserver +server - Catalyst Testserver =head1 SYNOPSIS -cgi-server.pl [options] +server.pl [options] Options: -? -help display this help and exits @@ -485,10 +515,7 @@ cgi-server.pl [options] =head1 DESCRIPTION -Run a Catalyst CGI Testserver for this application. - -Similar to the regular server but doesn't require a restart -after code changes! +Run a Catalyst Testserver for this application. =head1 AUTHOR @@ -503,7 +530,7 @@ the same terms as perl itself. =cut EOF - chmod 0700, "$script/cgi-server.pl"; + chmod 0700, "$script/server.pl"; } sub _mk_test { @@ -513,11 +540,14 @@ sub _mk_test { $self->mk_file( "$script/test.pl", <<"EOF"); $Config{startperl} -w +BEGIN { \$ENV{CATALYST_ENGINE} = 'Test' } + use strict; use Getopt::Long; use Pod::Usage; use FindBin; use lib "\$FindBin::Bin/../lib"; +use $name; my \$help = 0; @@ -525,10 +555,7 @@ GetOptions( 'help|?' => \\\$help ); pod2usage(1) if ( \$help || !\$ARGV[0] ); -require Catalyst::Test; -import Catalyst::Test '$name'; - -print get(\$ARGV[0]) . "\n"; +print $name->run(\$ARGV[0])->content . "\n"; 1; __END__