]> git.decadent.org.uk Git - maypole.git/commitdiff
Maypole.pm - applied 'method' attribute to Maypole::handler,
authorDavid Baird <cpan.zerofive@googlemail.com>
Mon, 3 Oct 2005 11:08:57 +0000 (11:08 +0000)
committerDavid Baird <cpan.zerofive@googlemail.com>
Mon, 3 Oct 2005 11:08:57 +0000 (11:08 +0000)
removed exporting of handler() from setup().
maypole.t - tidied up, removed test made irrelevant by new handler() attribute.

git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@380 48953598-375a-da11-a14b-00016c27c3ee

lib/Maypole.pm
t/maypole.t

index b060f15a50cf529bd4f408be38736ccc6df5af1a..566895129efcadea641af19e81fa13d059c9e9ac 100644 (file)
@@ -20,23 +20,23 @@ __PACKAGE__->init_done(0);
 
 sub debug { 0 }
 
-sub setup {
+sub setup 
+{
     my $calling_class = shift;
+    
     $calling_class = ref $calling_class if ref $calling_class;
-    {
-        no strict 'refs';
-        no warnings 'redefine';
-
-        # Naughty.
-        *{ $calling_class . "::handler" } =
-          sub { Maypole::handler( $calling_class, @_ ) };
-    }
+    
     my $config = $calling_class->config;
-    $config->model || $config->model("Maypole::Model::CDBI");
-    $config->model->require;
-    die "Couldn't load the model class $config->{model}: $@" if $@;
-    $config->model->setup_database( $config, $calling_class, @_ );
-    for my $subclass ( @{ $config->classes } ) {
+    
+    $config->model || $config->model('Maypole::Model::CDBI');
+    
+    $config->model->require or die 
+        "Couldn't load the model class $config->{model}: $@";
+    
+    $config->model->setup_database($config, $calling_class, @_);
+    
+    foreach my $subclass ( @{ $config->classes } ) 
+    {
         no strict 'refs';
         unshift @{ $subclass . "::ISA" }, $config->model;
         $config->model->adopt($subclass)
@@ -44,7 +44,8 @@ sub setup {
     }
 }
 
-sub init {
+sub init 
+{
     my $class  = shift;
     my $config = $class->config;
     $config->view || $config->view("Maypole::View::TT");
@@ -57,10 +58,11 @@ sub init {
 
 }
 
-sub handler {
-
+sub handler : method 
+{
     # See Maypole::Workflow before trying to understand this.
-    my ( $class, $req ) = @_;
+    my ($class, $req) = @_;
+    
     $class->init unless $class->init_done;
 
     # Create the request object
index 63e7e6585c0a6f97c1c33adc9167c8271ab402ee..f376697bddd0acc032b12a8f4bcdf69d1e20ec6f 100755 (executable)
@@ -1,57 +1,61 @@
 #!/usr/bin/perl
 use strict;
 use warnings;
-use Test::More tests => 107;
+use Test::More tests => 73;
 use Test::MockModule;
 
 # module compilation
 require_ok('Maypole');
+
+# loaded modules
+{
+    ok($Maypole::VERSION, 'defines $VERSION');
+    ok($INC{'Maypole/Config.pm'}, 'loads Maypole::Config');
+    ok($INC{'UNIVERSAL/require.pm'}, 'loads UNIVERSAL::require');
+    ok($INC{'Maypole/Constants.pm'}, 'loads Maypole::Constants');
+    ok($INC{'Maypole/Headers.pm'}, 'loads Maypole::Headers');
+    ok($INC{'Class/Accessor/Fast.pm'}, 'loads Class::Accessor::Fast');
+    ok($INC{'Class/Data/Inheritable.pm'}, 'loads Class::Data::Inheritable');
+}
+
 my $OK       = Maypole::Constants::OK();
 my $DECLINED = Maypole::Constants::DECLINED();
 my $ERROR    = Maypole::Constants::ERROR();
 
-ok($Maypole::VERSION, 'defines $VERSION');
-ok($INC{'Maypole/Config.pm'}, 'loads Maypole::Config');
-ok($INC{'UNIVERSAL/require.pm'}, 'loads UNIVERSAL::require');
-ok($INC{'Maypole/Constants.pm'}, 'loads Maypole::Constants');
-ok($INC{'Maypole/Headers.pm'}, 'loads Maypole::Headers');
-ok($INC{'Class/Accessor/Fast.pm'}, 'loads Class::Accessor::Fast');
-ok($INC{'Class/Data/Inheritable.pm'}, 'loads Class::Data::Inheritable');
-ok(Maypole->can('config'), 'defines a config attribute');
+# Maypole API
+my @API = qw/ config init_done view_object params query objects model_class
+              template_args output path args action template error document_encoding
+              content_type table headers_in headers_out 
+              is_applicable setup init handler handler_guts
+              call_authenticate call_exception additional_data
+              authenticate exception parse_path get_template_root get_request
+              parse_location send_output
+              /;
+                
+can_ok(Maypole => @API);
+
 ok(Maypole->config->isa('Maypole::Config'), 'config is a Maypole::Config object');
-ok(Maypole->can('init_done'), 'defines an init_done attribute');
 ok(! Maypole->init_done, '... which is false by default');
-ok(Maypole->can('view_object'), 'defines a view_object attribute');
 is(Maypole->view_object, undef, '... which is undefined');
-#ok(Maypole->can('ar'), 'defines an "ar" accessor'); moved to Apache::MVC
-ok(Maypole->can('params'), 'defines a "params" accessor');
-ok(Maypole->can('query'), 'defines a "query" accessor');
-ok(Maypole->can('objects'), 'defines an "objects" accessor');
-ok(Maypole->can('model_class'), 'defines a "model_class" accessor');
-ok(Maypole->can('template_args'), 'defines a "template_args" accessor');
-ok(Maypole->can('output'), 'defines an "output" accessor');
-ok(Maypole->can('path'), 'defines a "path" accessor');
-ok(Maypole->can('args'), 'defines an "args" accessor');
-ok(Maypole->can('action'), 'defines an "action" accessor');
-ok(Maypole->can('template'), 'defines a "template" accessor');
-ok(Maypole->can('error'), 'defines an "error" accessor');
-ok(Maypole->can('document_encoding'), 'defines a "document_encoding" accessor');
-ok(Maypole->can('content_type'), 'defines a "content_type" accessor');
-ok(Maypole->can('table'), 'defines a "table" accessor');
-ok(Maypole->can('headers_in'), 'defines a "headers_in" accessor');
-ok(Maypole->can('headers_out'), 'defines a "headers_out" accessor');
 
 # simple test class that inherits from Maypole
-package MyDriver;
-@MyDriver::ISA = 'Maypole';
-@MyDriver::VERSION = 1;
-package main;
+{
+    package MyDriver;
+    @MyDriver::ISA = 'Maypole';
+    @MyDriver::VERSION = 1;
+}
+
+# back to package main;
 my $driver_class = 'MyDriver';
 
+# subclass inherits API
+can_ok($driver_class => @API);
+
 # Mock the model class
 my (%required, @db_args, @adopted);
 my $model_class = 'Maypole::Model::CDBI';
 my $table_class = $driver_class . '::One';
+
 my $mock_model = Test::MockModule->new($model_class);
 $mock_model->mock(
     require        => sub {$required{+shift} = 1},
@@ -63,27 +67,38 @@ $mock_model->mock(
     adopt          => sub {push @adopted, \@_},
 );
 
-# setup()
-can_ok($driver_class => 'setup');
-my $handler = $driver_class->can('handler');
-is($handler, Maypole->can('handler'), 'calling package inherits handler()');
-$driver_class->setup('dbi:foo'); # call setup()
-isnt($handler, $driver_class->can('handler'), 'setup() installs new handler()');
-ok($required{$model_class}, '... requires model class');
-is($driver_class->config->model(),
-   'Maypole::Model::CDBI', '... default model is CDBI');
-is(@db_args, 1, '... calls model->setup_database');
-like(join (' ', @{$db_args[0]}),
-     qr/$model_class Maypole::Config=\S* $driver_class dbi:foo/,
-     '... setup_database passed setup() args');
-is(@adopted, 2, '... calls model->adopt foreach class in the model');
-ok($adopted[0][0]->isa($model_class),
-   '... sets up model subclasses to inherit from model');
-$driver_class->config->model('NonExistant::Model');
-eval {$driver_class->setup};
-like($@, qr/Couldn't load the model class/,
-     '... dies if unable to load model class');
-$@ = undef; $driver_class->config->model($model_class);
+
+# setup
+{
+    # 2.11 - removed tests to check the installed handler was a different ref after setup().
+    # The handler tests were testing Maypole's old (pre 2.11) method of importing handler() 
+    # into the subclass - it works via standard inheritance now, by setting the 'method' 
+    # attribute on Maypole::handler(). The reason the handlers were different 
+    # was because setup() would create a new anonymous ref to Maypole::handler(), and install 
+    # that - i.e. it installed the same code, but in a different ref, so they tested unequal
+    # although they referred to the same code
+
+    $driver_class->setup('dbi:foo'); 
+    
+    ok($required{$model_class}, '... requires model class');
+    is($driver_class->config->model(),
+        'Maypole::Model::CDBI', '... default model is CDBI');
+    is(@db_args, 1, '... calls model->setup_database');
+    like(join (' ', @{$db_args[0]}),
+        qr/$model_class Maypole::Config=\S* $driver_class dbi:foo/,
+        '... setup_database passed setup() args');
+    is(@adopted, 2, '... calls model->adopt foreach class in the model');
+    ok($adopted[0][0]->isa($model_class),
+    '... sets up model subclasses to inherit from model');
+    $driver_class->config->model('NonExistant::Model');
+    eval {$driver_class->setup};
+    like($@, qr/Couldn't load the model class/,
+        '... dies if unable to load model class');
+    
+    # cleanup
+    $@ = undef; 
+    $driver_class->config->model($model_class);
+}
 
 # Mock the view class
 my $view_class = 'Maypole::View::TT';
@@ -94,28 +109,33 @@ $mock_view->mock(
 );
 
 # init()
-can_ok($driver_class => 'init');
-$driver_class->init();
-ok($required{$view_class}, '... requires the view class');
-is($driver_class->config->view, $view_class, '... the default view class is TT');
-is(join(' ', @{$driver_class->config->display_tables}), 'one two',
-   '... config->display_tables defaults to all tables');
-ok($driver_class->view_object->isa($view_class),
-   '... creates an instance of the view object');
-ok($driver_class->init_done, '... sets init_done');
-$driver_class->config->view('NonExistant::View');
-eval {$driver_class->init};
-like($@, qr/Couldn't load the view class/,
-     '... dies if unable to load view class');
-$@ = undef; $driver_class->config->view($view_class);
-
+{
+    $driver_class->init();
+    ok($required{$view_class}, '... requires the view class');
+    is($driver_class->config->view, $view_class, '... the default view class is TT');
+    is(join(' ', @{$driver_class->config->display_tables}), 'one two',
+        '... config->display_tables defaults to all tables');
+    ok($driver_class->view_object->isa($view_class),
+        '... creates an instance of the view object');
+    ok($driver_class->init_done, '... sets init_done');
+    $driver_class->config->view('NonExistant::View');
+    eval {$driver_class->init};
+    like($@, qr/Couldn't load the view class/,
+        '... dies if unable to load view class');
+        
+    # cleanup
+    $@ = undef; 
+    $driver_class->config->view($view_class);
+}
 
 my ($r, $req); # request objects
+
+# handler()
 {
-    no strict 'refs';
     my $init = 0;
     my $status = 0;
     my %called;
+    
     my $mock_driver = Test::MockModule->new($driver_class, no_auto => 1);
     $mock_driver->mock(
         init           => sub {$init++; shift->init_done(1)},
@@ -125,9 +145,8 @@ my ($r, $req); # request objects
         send_output    => sub {$called{send_output}++},
     );
 
-    # handler()
-    can_ok($driver_class => 'handler');
     my $rv = $driver_class->handler();
+    
     ok($r && $r->isa($driver_class), '... created $r');
     ok($called{get_request}, '... calls get_request()');
     ok($called{parse_location}, '... calls parse_location');
@@ -135,8 +154,10 @@ my ($r, $req); # request objects
     ok($called{send_output}, '... call send_output');
     is($rv, 0, '... return status (should be ok?)');
     ok(!$init, "... doesn't call init() if init_done()");
+    
     ok($r->headers_out && $r->headers_out->isa('Maypole::Headers'),
        '... populates headers_out() with a Maypole::Headers object');
+       
     # call again, testing other branches
     $driver_class->init_done(0);
     $status = -1;
@@ -144,6 +165,7 @@ my ($r, $req); # request objects
     ok($called{handler_guts} == 2 && $called{send_output} == 1,
        '... returns early if handler_guts failed');
     is($rv, -1, '... returning the error code from handler_guts');
+    
     $driver_class->handler();
     ok($init && $driver_class->init_done, "... init() called if !init_done()");
 }
@@ -155,29 +177,37 @@ my ($r, $req); # request objects
         @{$table_class . "::ISA"} = $model_class;
     }
 
-    my ($applicable, %called, $status);
+    my ($applicable, %called);
+    
     my $mock_driver = new Test::MockModule($driver_class, no_auto => 1);
     my $mock_table  = new Test::MockModule($table_class, no_auto => 1);
+    
     $mock_driver->mock(
         is_applicable   => sub {push @{$called{applicable}},\@_; $applicable},
         get_request     => sub {($r, $req) = @_},
         additional_data => sub {$called{additional_data}++},
     );
+    
     $mock_table->mock(
         table_process   => sub {push @{$called{process}},\@_},
     );
+    
     $mock_model->mock(
         class_of        => sub {push @{$called{class_of}},\@_; $table_class},
         process         => sub {push @{$called{model_process}}, \@_},
     );
+    
     $mock_view->mock(
         process         => sub {push @{$called{view_process}}, \@_; $OK}
     );
-    can_ok(Maypole => 'handler_guts');
-
+    
+    # allow request
     $applicable = $OK;
-    $r->{path} = '/table/action';    $r->parse_path;
-    $status = $r->handler_guts();
+    
+    $r->{path} = '/table/action';    
+    $r->parse_path;
+    
+    my $status = $r->handler_guts();
 
     is($r->model_class, $table_class, '... sets model_class from table()');
     ok($called{additional_data}, '... call additional_data()');
@@ -185,11 +215,16 @@ my ($r, $req); # request objects
     ok($called{model_process},
        '... if_applicable, call model_class->process');
 
+    # decline request
     %called = ();
+    
     $applicable = $DECLINED;
+    
     $r->{path} = '/table/action';
     $r->parse_path;
+    
     $status = $r->handler_guts();
+    
     is($r->template, $r->path,
        '... if ! is_applicable set template() to path()');
     ok(!$called{model_process},
@@ -198,13 +233,18 @@ my ($r, $req); # request objects
               ' ... view_object->process called');
     is($status, $OK, '... return status = OK');
 
+    # pre-load some output
     %called = ();
+    
     $r->parse_path;
     $r->{output} = 'test';
+    
     $status = $r->handler_guts();
+    
     ok(!$called{view_process},
        '... unless output, call view_object->process to get output');
 
+    # fail authentication
     $mock_driver->mock(call_authenticate => sub {$DECLINED});
     $status = $r->handler_guts();
     is($status, $DECLINED,
@@ -216,126 +256,130 @@ my ($r, $req); # request objects
 }
 
 # is_applicable()
-can_ok(Maypole => 'is_applicable');
-$r->config->display_tables([qw(one two)]);
-$r->config->ok_tables(undef);
-$r->model_class($table_class);
-$r->table('one');
-$r->action('unittest');
-my $is_public;
-$mock_model->mock('is_public', sub {0});
-my $status = $r->is_applicable;
-is($status, $DECLINED,
-   '... return DECLINED unless model_class->is_public(action)');
-$mock_model->mock('is_public', sub {$is_public = \@_; 1});
-$status = $r->is_applicable;
-is($status, $OK, '... returns OK if table is in ok_tables');
-is_deeply($is_public, [$r->model_class, 'unittest'],
-          '... calls model_class->is_public with request action');
-is_deeply($r->config->ok_tables, {one => 1, two => 1},
-          '... config->ok_tables defaults to config->display_tables');
-delete $r->config->ok_tables->{one};
-$status = $r->is_applicable;
-is($status, $DECLINED, '... return DECLINED unless $r->table is in ok_tables');
+{
+    $r->config->display_tables([qw(one two)]);
+    $r->config->ok_tables(undef);
+    $r->model_class($table_class);
+    $r->table('one');
+    $r->action('unittest');
+    my $is_public;
+    $mock_model->mock('is_public', sub {0});
+    my $status = $r->is_applicable;
+    is($status, $DECLINED,
+    '... return DECLINED unless model_class->is_public(action)');
+    $mock_model->mock('is_public', sub {$is_public = \@_; 1});
+    $status = $r->is_applicable;
+    is($status, $OK, '... returns OK if table is in ok_tables');
+    is_deeply($is_public, [$r->model_class, 'unittest'],
+            '... calls model_class->is_public with request action');
+    is_deeply($r->config->ok_tables, {one => 1, two => 1},
+            '... config->ok_tables defaults to config->display_tables');
+    delete $r->config->ok_tables->{one};
+    $status = $r->is_applicable;
+    is($status, $DECLINED, '... return DECLINED unless $r->table is in ok_tables');
+}
 
-# call_authenticate()
-can_ok(Maypole => 'call_authenticate');
 my $mock_driver = new Test::MockModule($driver_class, no_auto => 1);
 my $mock_table  = new Test::MockModule($table_class, no_auto => 1);
-my %auth_calls;
-$mock_table->mock(
-    authenticate => sub {$auth_calls{model_auth} = \@_; $OK}
-);
-$status = $r->call_authenticate;
-is_deeply($auth_calls{model_auth}, [$table_class, $r],
-          '... calls model_class->authenticate if it exists');
-is($status, $OK, '... and returns its status (OK)');
-$mock_table->mock(authenticate => sub {$DECLINED});
-$status = $r->call_authenticate;
-is($status, $DECLINED, '... or DECLINED, as appropriate');
-
-$mock_table->unmock('authenticate');
-$mock_driver->mock(authenticate => sub {return $DECLINED});
-$status = $r->call_authenticate;
-is($status, $DECLINED, '... otherwise it calls authenticte()');
-$mock_driver->unmock('authenticate');
-$status = $r->call_authenticate;
-is($status, $OK, '... the default authenticate is OK');
+
+# call_authenticate()
+{
+    my %auth_calls;
+    $mock_table->mock(
+        authenticate => sub {$auth_calls{model_auth} = \@_; $OK}
+    );
+    my $status = $r->call_authenticate;
+    is_deeply($auth_calls{model_auth}, [$table_class, $r],
+            '... calls model_class->authenticate if it exists');
+    is($status, $OK, '... and returns its status (OK)');
+    $mock_table->mock(authenticate => sub {$DECLINED});
+    $status = $r->call_authenticate;
+    is($status, $DECLINED, '... or DECLINED, as appropriate');
+    
+    $mock_table->unmock('authenticate');
+    $mock_driver->mock(authenticate => sub {return $DECLINED});
+    $status = $r->call_authenticate;
+    is($status, $DECLINED, '... otherwise it calls authenticte()');
+    $mock_driver->unmock('authenticate');
+    $status = $r->call_authenticate;
+    is($status, $OK, '... the default authenticate is OK');
+}
 
 # call_exception()
-can_ok(Maypole => 'call_exception');
-my %ex_calls;
-$mock_table->mock(
-    exception => sub {$ex_calls{model_exception} = \@_; $OK}
-);
-$mock_driver->mock(
-    exception => sub {$ex_calls{driver_exception} = \@_; 'X'}
-);
-$status = $r->call_exception('ERR');
-is_deeply($ex_calls{model_exception}, [$table_class, $r, 'ERR'],
-          '... calls model_class->exception if it exists');
-is($status, $OK, '... and returns its status (OK)');
-$mock_table->mock(exception => sub {$DECLINED});
-$status = $r->call_exception('ERR');
-is_deeply($ex_calls{driver_exception}, [$r, 'ERR'],
-          '... or calls driver->exception if model returns !OK');
-is($status, 'X', '... and returns the drivers status');
-
-$mock_table->unmock('exception');
-$mock_driver->unmock('exception');
-$status = $r->call_exception('ERR');
-is($status, $ERROR, '... the default exception is ERROR');
-
-# additional_data()
-can_ok(Maypole => 'additional_data');
+{
+    my %ex_calls;
+    $mock_table->mock(
+        exception => sub {$ex_calls{model_exception} = \@_; $OK}
+    );
+    $mock_driver->mock(
+        exception => sub {$ex_calls{driver_exception} = \@_; 'X'}
+    );
+    my $status = $r->call_exception('ERR');
+    is_deeply($ex_calls{model_exception}, [$table_class, $r, 'ERR'],
+            '... calls model_class->exception if it exists');
+    is($status, $OK, '... and returns its status (OK)');
+    $mock_table->mock(exception => sub {$DECLINED});
+    $status = $r->call_exception('ERR');
+    is_deeply($ex_calls{driver_exception}, [$r, 'ERR'],
+            '... or calls driver->exception if model returns !OK');
+    is($status, 'X', '... and returns the drivers status');
+    
+    $mock_table->unmock('exception');
+    $mock_driver->unmock('exception');
+    $status = $r->call_exception('ERR');
+    is($status, $ERROR, '... the default exception is ERROR');
+}
 
 # authenticate()
-can_ok(Maypole => 'authenticate');
-is(Maypole->authenticate(), $OK, '... returns OK');
+{
+    is(Maypole->authenticate(), $OK, '... returns OK');
+}
 
 # exception()
-can_ok(Maypole => 'exception');
-is(Maypole->exception(), $ERROR, '... returns ERROR');
+{
+    is(Maypole->exception(), $ERROR, '... returns ERROR');
+}
 
 # parse_path()
-can_ok(Maypole => 'parse_path');
-$r->path(undef);
-$r->parse_path;
-is($r->path, 'frontpage', '... path() defaults to "frontpage"');
-
-$r->path('/table');
-$r->parse_path;
-is($r->table, 'table', '... parses "table" from the first part of path');
-ok(@{$r->args} == 0, '... "args" default to empty list');
-
-$r->path('/table/action');
-$r->parse_path;
-ok($r->table eq 'table' && $r->action eq 'action',
-   '... action is parsed from second part of path');
-
-$r->path('/table/action/arg1/arg2');
-$r->parse_path;
-is_deeply($r->args, [qw(arg1 arg2)],
-   '... "args" are populated from remaning components');
-
-# ... action defaults to index
-$r->path('/table');
-$r->parse_path;
-is($r->action, 'index', '... action defaults to index');
+{
+    $r->path(undef);
+    $r->parse_path;
+    is($r->path, 'frontpage', '... path() defaults to "frontpage"');
+    
+    $r->path('/table');
+    $r->parse_path;
+    is($r->table, 'table', '... parses "table" from the first part of path');
+    ok(@{$r->args} == 0, '... "args" default to empty list');
+    
+    $r->path('/table/action');
+    $r->parse_path;
+    ok($r->table eq 'table' && $r->action eq 'action',
+    '... action is parsed from second part of path');
+    
+    $r->path('/table/action/arg1/arg2');
+    $r->parse_path;
+    is_deeply($r->args, [qw(arg1 arg2)],
+    '... "args" are populated from remaning components');
+    
+    # ... action defaults to index
+    $r->path('/table');
+    $r->parse_path;
+    is($r->action, 'index', '... action defaults to index');
+}
 
 # get_template_root()
-can_ok(Maypole => 'get_template_root');
-is(Maypole->get_template_root(), '.', '... returns "."');
-
-# get_request()
-can_ok(Maypole => 'get_request');
+{
+    is(Maypole->get_template_root(), '.', '... returns "."');
+}
 
 # parse_location()
-can_ok(Maypole => 'parse_location');
-eval {Maypole->parse_location()};
-like($@, qr/Do not use Maypole directly/, '... croaks - must be overriden');
+{
+    eval {Maypole->parse_location()};
+    like($@, qr/Do not use Maypole directly/, '... croaks - must be overriden');
+}
 
 # send_output()
-can_ok(Maypole=> 'send_output');
-eval {Maypole->send_output};
-like($@, qr/Do not use Maypole directly/, '... croaks - must be overriden');
+{
+    eval {Maypole->send_output};
+    like($@, qr/Do not use Maypole directly/, '... croaks - must be overriden');
+}