X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole%2FCLI.pm;h=39abf1546370987a26f16fb00d57c584bf14b045;hb=0ce03c9aa8e988d951a1383c99287d5ca4fbdfba;hp=fec6f5e8739929565c624f7b9e27499a9ef2abee;hpb=5ba93a09518403ae28e8a71b5299e2458a6dfa0b;p=maypole.git diff --git a/lib/Maypole/CLI.pm b/lib/Maypole/CLI.pm index fec6f5e..39abf15 100644 --- a/lib/Maypole/CLI.pm +++ b/lib/Maypole/CLI.pm @@ -9,6 +9,13 @@ use warnings; my $package; our $buffer; +# Command line action +CHECK { + if ( ( caller(0) )[1] eq "-e" ) { + $package->handler() == OK and print $buffer; + } +} + sub import { $package = $_[1]; $package->require; @@ -17,15 +24,25 @@ sub import { unshift @{ $package . "::ISA" }, "Maypole::CLI"; } -sub get_request { } sub get_template_root { $ENV{MAYPOLE_TEMPLATES} || "." } +sub warn { + my ($self,@args) = @_; + my ($package, $line) = (caller)[0,2]; + warn "[$package line $line] ", @args ; + return; +} + sub parse_location { my $self = shift; my $url = URI->new( shift @ARGV ); - my $root = URI->new( $self->config->{uri_base} )->path; + + $self->preprocess_location(); + + (my $uri_base = $self->config->uri_base) =~ s:/$::; + my $root = URI->new( $uri_base )->path; $self->{path} = $url->path; - $self->{path} =~ s/^$root//i if $root; + $self->{path} =~ s:^$root/?::i if $root; $self->parse_path; $self->parse_args($url); } @@ -40,16 +57,10 @@ sub send_output { $buffer = shift->{output} } sub call_url { my $self = shift; - @ARGV = @_; + local @ARGV = @_; $package->handler() == OK and return $buffer; } -# Do it! -CHECK { - if ( ( caller(0) )[1] eq "-e" ) { - $package->handler() == OK and print $buffer; - } -} 1; @@ -98,7 +109,7 @@ more easily. For instance, a test script could look like this: - use Test::More tests => 5; + use Test::More tests => 3; use Maypole::CLI qw(BeerDB); use Maypole::Constants; $ENV{MAYPOLE_TEMPLATES} = "t/templates"; @@ -106,11 +117,38 @@ For instance, a test script could look like this: # Hack because isa_ok only supports object isa not class isa isa_ok( (bless {},"BeerDB") , "Maypole"); - @ARGV = ("http://localhost/beerdb/"); - is(BeerDB->handler, OK, "OK"); - like($Maypole::CLI::buffer, qr/frontpage/, "Got the front page"); + like(BeerDB->call_url("http://localhost/beerdb/"), qr/frontpage/, "Got the front page"); + + like(BeerDB->call_url("http://localhost/beerdb/beer/list"), qr/Organic Best/, "Found a beer in the list"); + +=head1 METHODS + +=over + +=item call_url + +for use in scripts. takes an url as argument, and returns the buffer. + +=back + + +=head1 Implementation + +This class overrides a set of methods in the base Maypole class to provide it's +functionality. See L for these: + +=over + +=item get_template_root + +=item parse_args + +=item parse_location + +=item send_output + +=item warn - @ARGV = ("http://localhost/beerdb/beer/list"); - is(BeerDB->handler, OK, "OK"); - like($Maypole::CLI::buffer, qr/Organic Best/, "Found a beer in the list"); +=back +=cut