[Catalyst-commits] r7641 - / trunk/examples
trunk/examples/NewAuthApp trunk/examples/NewAuthApp/lib
trunk/examples/NewAuthApp/lib/NewAuthApp
trunk/examples/NewAuthApp/lib/NewAuthApp/Controller
trunk/examples/NewAuthApp/lib/NewAuthApp/View
trunk/examples/NewAuthApp/root trunk/examples/NewAuthApp/root/static
trunk/examples/NewAuthApp/root/static/images
trunk/examples/NewAuthApp/script trunk/examples/NewAuthApp/t
zarquon at dev.catalyst.perl.org
zarquon at dev.catalyst.perl.org
Tue Apr 29 13:57:31 BST 2008
Author: zarquon
Date: 2008-04-29 13:57:31 +0100 (Tue, 29 Apr 2008)
New Revision: 7641
Added:
trunk/examples/NewAuthApp/
trunk/examples/NewAuthApp/Changes
trunk/examples/NewAuthApp/Makefile.PL
trunk/examples/NewAuthApp/README
trunk/examples/NewAuthApp/lib/
trunk/examples/NewAuthApp/lib/NewAuthApp.pm
trunk/examples/NewAuthApp/lib/NewAuthApp/
trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/
trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Auth.pm
trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Root.pm
trunk/examples/NewAuthApp/lib/NewAuthApp/Model/
trunk/examples/NewAuthApp/lib/NewAuthApp/View/
trunk/examples/NewAuthApp/lib/NewAuthApp/View/TT.pm
trunk/examples/NewAuthApp/newauthapp.conf
trunk/examples/NewAuthApp/root/
trunk/examples/NewAuthApp/root/favicon.ico
trunk/examples/NewAuthApp/root/static/
trunk/examples/NewAuthApp/root/static/images/
trunk/examples/NewAuthApp/root/static/images/btn_120x50_built.png
trunk/examples/NewAuthApp/root/static/images/btn_120x50_built_shadow.png
trunk/examples/NewAuthApp/root/static/images/btn_120x50_powered.png
trunk/examples/NewAuthApp/root/static/images/btn_120x50_powered_shadow.png
trunk/examples/NewAuthApp/root/static/images/btn_88x31_built.png
trunk/examples/NewAuthApp/root/static/images/btn_88x31_built_shadow.png
trunk/examples/NewAuthApp/root/static/images/btn_88x31_powered.png
trunk/examples/NewAuthApp/root/static/images/btn_88x31_powered_shadow.png
trunk/examples/NewAuthApp/root/static/images/catalyst_logo.png
trunk/examples/NewAuthApp/script/
trunk/examples/NewAuthApp/script/newauthapp_cgi.pl
trunk/examples/NewAuthApp/script/newauthapp_create.pl
trunk/examples/NewAuthApp/script/newauthapp_fastcgi.pl
trunk/examples/NewAuthApp/script/newauthapp_server.pl
trunk/examples/NewAuthApp/script/newauthapp_test.pl
trunk/examples/NewAuthApp/t/
trunk/examples/NewAuthApp/t/01app.t
trunk/examples/NewAuthApp/t/02pod.t
trunk/examples/NewAuthApp/t/03podcoverage.t
trunk/examples/NewAuthApp/t/controller_Auth.t
trunk/examples/NewAuthApp/t/view_TT.t
Modified:
/
Log:
r12990 at zaphod: kd | 2008-04-29 18:44:05 +1000
example app showing how to use the "new" auth framework
Property changes on:
___________________________________________________________________
Name: svk:merge
- 1b129c88-ebf4-0310-add9-f09427935aba:/local/catalyst:4278
1c72fc7c-9ce4-42af-bf25-3bfe470ff1e8:/local/Catalyst:12988
3b9770f9-e80c-0410-a7de-cd203d167417:/local/catalyst:3514
dd8ad9ea-0304-0410-a433-df5f223e7bc0:/local/Catalyst:6909
+ 1b129c88-ebf4-0310-add9-f09427935aba:/local/catalyst:4278
1c72fc7c-9ce4-42af-bf25-3bfe470ff1e8:/local/Catalyst:12990
3b9770f9-e80c-0410-a7de-cd203d167417:/local/catalyst:3514
dd8ad9ea-0304-0410-a433-df5f223e7bc0:/local/Catalyst:6909
Added: trunk/examples/NewAuthApp/Changes
===================================================================
--- trunk/examples/NewAuthApp/Changes (rev 0)
+++ trunk/examples/NewAuthApp/Changes 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,4 @@
+This file documents the revision history for Perl extension NewAuthApp.
+
+0.01 2008-04-29 15:55:04
+ - initial revision, generated by Catalyst
Added: trunk/examples/NewAuthApp/Makefile.PL
===================================================================
--- trunk/examples/NewAuthApp/Makefile.PL (rev 0)
+++ trunk/examples/NewAuthApp/Makefile.PL 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,21 @@
+use inc::Module::Install;
+
+name 'NewAuthApp';
+all_from 'lib/NewAuthApp.pm';
+
+requires 'Catalyst' => '5.7012';
+requires 'Catalyst::Plugin::ConfigLoader';
+requires 'Catalyst::Plugin::Static::Simple';
+requires 'Catalyst::Plugin::Authentication';
+requires 'Catalyst::Plugin::Session';
+requires 'Catalyst::Plugin::Session::State::Cookie';
+requires 'Catalyst::Plugin::Session::Store::FastMmapp';
+requires 'Catalyst::View::TT';
+requires 'Catalyst::Action::RenderView';
+requires 'YAML'; # This should reflect the config file format you've chosen
+ # See Catalyst::Plugin::ConfigLoader for supported formats
+catalyst;
+
+install_script glob('script/*.pl');
+auto_install;
+WriteAll;
Added: trunk/examples/NewAuthApp/README
===================================================================
--- trunk/examples/NewAuthApp/README (rev 0)
+++ trunk/examples/NewAuthApp/README 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1 @@
+Run script/newauthapp_server.pl to test the application.
Added: trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Auth.pm
===================================================================
--- trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Auth.pm (rev 0)
+++ trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Auth.pm 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,26 @@
+package NewAuthApp::Controller::Auth;
+
+use strict;
+use warnings;
+use base 'Catalyst::Controller';
+
+sub login : Local {
+ my ( $self, $c ) = @_;
+
+ if ( my $user = $c->req->params->{user}
+ and my $password = $c->req->params->{password} ) {
+ if ( $c->authenticate( { username => $user,
+ password => $password } ) ) {
+ $c->res->body( "hello " . $c->user->get("name") );
+ }
+ else {
+ # login incorrect
+ }
+ }
+ else {
+ # invalid form input
+ }
+}
+
+
+1;
Added: trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Root.pm
===================================================================
--- trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Root.pm (rev 0)
+++ trunk/examples/NewAuthApp/lib/NewAuthApp/Controller/Root.pm 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,18 @@
+package NewAuthApp::Controller::Root;
+
+use strict;
+use warnings;
+use base 'Catalyst::Controller';
+
+__PACKAGE__->config->{namespace} = '';
+
+sub default : Private {
+ my ( $self, $c ) = @_;
+
+ # Hello World
+ $c->response->body( 'you made it' );
+}
+
+sub end : ActionClass('RenderView') {}
+
+1;
Added: trunk/examples/NewAuthApp/lib/NewAuthApp/View/TT.pm
===================================================================
--- trunk/examples/NewAuthApp/lib/NewAuthApp/View/TT.pm (rev 0)
+++ trunk/examples/NewAuthApp/lib/NewAuthApp/View/TT.pm 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,8 @@
+package NewAuthApp::View::TT;
+
+use strict;
+use base 'Catalyst::View::TT';
+
+__PACKAGE__->config(TEMPLATE_EXTENSION => '.tt');
+
+1;
Added: trunk/examples/NewAuthApp/lib/NewAuthApp.pm
===================================================================
--- trunk/examples/NewAuthApp/lib/NewAuthApp.pm (rev 0)
+++ trunk/examples/NewAuthApp/lib/NewAuthApp.pm 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,21 @@
+package NewAuthApp;
+
+use strict;
+use warnings;
+
+use Catalyst::Runtime '5.70';
+use Catalyst qw/
+ ConfigLoader
+ Static::Simple
+ Authentication
+ Session
+ Session::State::Cookie
+ Session::Store::FastMmap
+ /;
+
+our $VERSION = '0.01';
+
+
+__PACKAGE__->setup;
+
+1;
Added: trunk/examples/NewAuthApp/newauthapp.conf
===================================================================
--- trunk/examples/NewAuthApp/newauthapp.conf (rev 0)
+++ trunk/examples/NewAuthApp/newauthapp.conf 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,30 @@
+name NewAuthApp
+<Plugin::Authentication>
+ <realms>
+ <members>
+ <store>
+ class Minimal
+ <users>
+ <bob>
+ roles edit
+ roles delete
+ password s00p3r
+ editor yes
+ </bob>
+ <william>
+ roles comment
+ password s3cr3t
+ </william>
+ </users>
+ </store>
+ <credential>
+ password_field password
+ password_type clear
+ password_hash_type SHA-1
+ class Password
+ </credential>
+ </members>
+ </realms>
+ use_session 1
+ default_realm members
+</Plugin::Authentication>
Added: trunk/examples/NewAuthApp/root/favicon.ico
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/favicon.ico
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/NewAuthApp/root/static/images/btn_120x50_built.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_120x50_built.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/btn_120x50_built_shadow.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_120x50_built_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/btn_120x50_powered.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_120x50_powered.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/btn_120x50_powered_shadow.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_120x50_powered_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/btn_88x31_built.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_88x31_built.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/btn_88x31_built_shadow.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_88x31_built_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/btn_88x31_powered.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_88x31_powered.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/btn_88x31_powered_shadow.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/btn_88x31_powered_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/root/static/images/catalyst_logo.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/NewAuthApp/root/static/images/catalyst_logo.png
___________________________________________________________________
Name: svn:mime-type
+ image/x-png
Added: trunk/examples/NewAuthApp/script/newauthapp_cgi.pl
===================================================================
--- trunk/examples/NewAuthApp/script/newauthapp_cgi.pl (rev 0)
+++ trunk/examples/NewAuthApp/script/newauthapp_cgi.pl 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,37 @@
+#!/usr/bin/perl -w
+
+BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+
+use strict;
+use warnings;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+use NewAuthApp;
+
+NewAuthApp->run;
+
+1;
+
+=head1 NAME
+
+newauthapp_cgi.pl - Catalyst CGI
+
+=head1 SYNOPSIS
+
+See L<Catalyst::Manual>
+
+=head1 DESCRIPTION
+
+Run a Catalyst application as a cgi script.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+
+=head1 COPYRIGHT
+
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: trunk/examples/NewAuthApp/script/newauthapp_cgi.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/examples/NewAuthApp/script/newauthapp_create.pl
===================================================================
--- trunk/examples/NewAuthApp/script/newauthapp_create.pl (rev 0)
+++ trunk/examples/NewAuthApp/script/newauthapp_create.pl 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,74 @@
+#!/usr/bin/perl -w
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use Catalyst::Helper;
+
+my $force = 0;
+my $mech = 0;
+my $help = 0;
+
+GetOptions(
+ 'nonew|force' => \$force,
+ 'mech|mechanize' => \$mech,
+ 'help|?' => \$help
+ );
+
+pod2usage(1) if ( $help || !$ARGV[0] );
+
+my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
+
+pod2usage(1) unless $helper->mk_component( 'NewAuthApp', @ARGV );
+
+1;
+
+=head1 NAME
+
+newauthapp_create.pl - Create a new Catalyst Component
+
+=head1 SYNOPSIS
+
+newauthapp_create.pl [options] model|view|controller name [helper] [options]
+
+ Options:
+ -force don't create a .new file where a file to be created exists
+ -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ -help display this help and exits
+
+ Examples:
+ newauthapp_create.pl controller My::Controller
+ newauthapp_create.pl -mechanize controller My::Controller
+ newauthapp_create.pl view My::View
+ newauthapp_create.pl view MyView TT
+ newauthapp_create.pl view TT TT
+ newauthapp_create.pl model My::Model
+ newauthapp_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
+ dbi:SQLite:/tmp/my.db
+ newauthapp_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
+ dbi:Pg:dbname=foo root 4321
+
+ See also:
+ perldoc Catalyst::Manual
+ perldoc Catalyst::Manual::Intro
+
+=head1 DESCRIPTION
+
+Create a new Catalyst Component.
+
+Existing component files are not overwritten. If any of the component files
+to be created already exist the file will be written with a '.new' suffix.
+This behavior can be suppressed with the C<-force> option.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: trunk/examples/NewAuthApp/script/newauthapp_create.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/examples/NewAuthApp/script/newauthapp_fastcgi.pl
===================================================================
--- trunk/examples/NewAuthApp/script/newauthapp_fastcgi.pl (rev 0)
+++ trunk/examples/NewAuthApp/script/newauthapp_fastcgi.pl 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,80 @@
+#!/usr/bin/perl -w
+
+BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+use NewAuthApp;
+
+my $help = 0;
+my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
+
+GetOptions(
+ 'help|?' => \$help,
+ 'listen|l=s' => \$listen,
+ 'nproc|n=i' => \$nproc,
+ 'pidfile|p=s' => \$pidfile,
+ 'manager|M=s' => \$manager,
+ 'daemon|d' => \$detach,
+ 'keeperr|e' => \$keep_stderr,
+);
+
+pod2usage(1) if $help;
+
+NewAuthApp->run(
+ $listen,
+ { nproc => $nproc,
+ pidfile => $pidfile,
+ manager => $manager,
+ detach => $detach,
+ keep_stderr => $keep_stderr,
+ }
+);
+
+1;
+
+=head1 NAME
+
+newauthapp_fastcgi.pl - Catalyst FastCGI
+
+=head1 SYNOPSIS
+
+newauthapp_fastcgi.pl [options]
+
+ Options:
+ -? -help display this help and exits
+ -l -listen Socket path to listen on
+ (defaults to standard input)
+ can be HOST:PORT, :PORT or a
+ filesystem path
+ -n -nproc specify number of processes to keep
+ to serve requests (defaults to 1,
+ requires -listen)
+ -p -pidfile specify filename for pid file
+ (requires -listen)
+ -d -daemon daemonize (requires -listen)
+ -M -manager specify alternate process manager
+ (FCGI::ProcManager sub-class)
+ or empty string to disable
+ -e -keeperr send error messages to STDOUT, not
+ to the webserver
+
+=head1 DESCRIPTION
+
+Run a Catalyst application as fastcgi.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: trunk/examples/NewAuthApp/script/newauthapp_fastcgi.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/examples/NewAuthApp/script/newauthapp_server.pl
===================================================================
--- trunk/examples/NewAuthApp/script/newauthapp_server.pl (rev 0)
+++ trunk/examples/NewAuthApp/script/newauthapp_server.pl 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,111 @@
+#!/usr/bin/perl -w
+
+BEGIN {
+ $ENV{CATALYST_ENGINE} ||= 'HTTP';
+ $ENV{CATALYST_SCRIPT_GEN} = 30;
+ require Catalyst::Engine::HTTP;
+}
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+
+my $debug = 0;
+my $fork = 0;
+my $help = 0;
+my $host = undef;
+my $port = 3000;
+my $keepalive = 0;
+my $restart = 0;
+my $restart_delay = 1;
+my $restart_regex = '\.yml$|\.yaml$|\.pm$';
+my $restart_directory = undef;
+
+my @argv = @ARGV;
+
+GetOptions(
+ 'debug|d' => \$debug,
+ 'fork' => \$fork,
+ 'help|?' => \$help,
+ 'host=s' => \$host,
+ 'port=s' => \$port,
+ 'keepalive|k' => \$keepalive,
+ 'restart|r' => \$restart,
+ 'restartdelay|rd=s' => \$restart_delay,
+ 'restartregex|rr=s' => \$restart_regex,
+ 'restartdirectory=s' => \$restart_directory,
+);
+
+pod2usage(1) if $help;
+
+if ( $restart ) {
+ $ENV{CATALYST_ENGINE} = 'HTTP::Restarter';
+}
+if ( $debug ) {
+ $ENV{CATALYST_DEBUG} = 1;
+}
+
+# This is require instead of use so that the above environment
+# variables can be set at runtime.
+require NewAuthApp;
+
+NewAuthApp->run( $port, $host, {
+ argv => \@argv,
+ 'fork' => $fork,
+ keepalive => $keepalive,
+ restart => $restart,
+ restart_delay => $restart_delay,
+ restart_regex => qr/$restart_regex/,
+ restart_directory => $restart_directory,
+} );
+
+1;
+
+=head1 NAME
+
+newauthapp_server.pl - Catalyst Testserver
+
+=head1 SYNOPSIS
+
+newauthapp_server.pl [options]
+
+ Options:
+ -d -debug force debug mode
+ -f -fork handle each request in a new process
+ (defaults to false)
+ -? -help display this help and exits
+ -host host (defaults to all)
+ -p -port port (defaults to 3000)
+ -k -keepalive enable keep-alive connections
+ -r -restart restart when files get modified
+ (defaults to false)
+ -rd -restartdelay delay between file checks
+ -rr -restartregex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.pm$')
+ -restartdirectory the directory to search for
+ modified files
+ (defaults to '../')
+
+ See also:
+ perldoc Catalyst::Manual
+ perldoc Catalyst::Manual::Intro
+
+=head1 DESCRIPTION
+
+Run a Catalyst Testserver for this application.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: trunk/examples/NewAuthApp/script/newauthapp_server.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/examples/NewAuthApp/script/newauthapp_test.pl
===================================================================
--- trunk/examples/NewAuthApp/script/newauthapp_test.pl (rev 0)
+++ trunk/examples/NewAuthApp/script/newauthapp_test.pl 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,54 @@
+#!/usr/bin/perl -w
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+use Catalyst::Test 'NewAuthApp';
+
+my $help = 0;
+
+GetOptions( 'help|?' => \$help );
+
+pod2usage(1) if ( $help || !$ARGV[0] );
+
+print request($ARGV[0])->content . "\n";
+
+1;
+
+=head1 NAME
+
+newauthapp_test.pl - Catalyst Test
+
+=head1 SYNOPSIS
+
+newauthapp_test.pl [options] uri
+
+ Options:
+ -help display this help and exits
+
+ Examples:
+ newauthapp_test.pl http://localhost/some_action
+ newauthapp_test.pl /some_action
+
+ See also:
+ perldoc Catalyst::Manual
+ perldoc Catalyst::Manual::Intro
+
+=head1 DESCRIPTION
+
+Run a Catalyst action from the command line.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: trunk/examples/NewAuthApp/script/newauthapp_test.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/examples/NewAuthApp/t/01app.t
===================================================================
--- trunk/examples/NewAuthApp/t/01app.t (rev 0)
+++ trunk/examples/NewAuthApp/t/01app.t 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,7 @@
+use strict;
+use warnings;
+use Test::More tests => 2;
+
+BEGIN { use_ok 'Catalyst::Test', 'NewAuthApp' }
+
+ok( request('/')->is_success, 'Request should succeed' );
Added: trunk/examples/NewAuthApp/t/02pod.t
===================================================================
--- trunk/examples/NewAuthApp/t/02pod.t (rev 0)
+++ trunk/examples/NewAuthApp/t/02pod.t 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+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();
Added: trunk/examples/NewAuthApp/t/03podcoverage.t
===================================================================
--- trunk/examples/NewAuthApp/t/03podcoverage.t (rev 0)
+++ trunk/examples/NewAuthApp/t/03podcoverage.t 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+use Test::More;
+
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_coverage_ok();
Added: trunk/examples/NewAuthApp/t/controller_Auth.t
===================================================================
--- trunk/examples/NewAuthApp/t/controller_Auth.t (rev 0)
+++ trunk/examples/NewAuthApp/t/controller_Auth.t 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,10 @@
+use strict;
+use warnings;
+use Test::More tests => 3;
+
+BEGIN { use_ok 'Catalyst::Test', 'NewAuthApp' }
+BEGIN { use_ok 'NewAuthApp::Controller::Auth' }
+
+ok( request('/auth')->is_success, 'Request should succeed' );
+
+
Added: trunk/examples/NewAuthApp/t/view_TT.t
===================================================================
--- trunk/examples/NewAuthApp/t/view_TT.t (rev 0)
+++ trunk/examples/NewAuthApp/t/view_TT.t 2008-04-29 12:57:31 UTC (rev 7641)
@@ -0,0 +1,6 @@
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+BEGIN { use_ok 'NewAuthApp::View::TT' }
+
More information about the Catalyst-commits
mailing list