Ark

 view release on metacpan or  search on metacpan

t/regexp_action.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

{
    package T1;
    use Ark;

    package T1::Controller::Root;
    use Ark 'Controller';

    has '+namespace' => default => '';

    sub default :Path {
        my ($self, $c) = @_;
        $c->res->status(404);
        $c->res->body('404 Not Found');
    }

    sub render :Private {
        my ($self, $c, @path) = @_;

        my $date = q[];
        my ($yr, $mo, $da) = @{$c->stash}{qw/year month day/};
        if ($yr && $mo && $da) {
            $date = sprintf '%04d-%02d-%02d', $yr, $mo, $da;
        }
        elsif ($yr && $mo) {
            $date = sprintf '%04d-%02d', $yr, $mo;
        }
        elsif ($yr) {
            $date = $yr;
        }

        $c->res->body("${date}: " . join ',', @path);
    }

    sub day :Regex('^(\d{4})/([01]?\d)/([0-3]?\d)(?:/(.*))?') {
        my ($self, $c, $yr, $mo, $da, $rest) = @_;

        @{$c->stash}{qw/year month day/} = ($yr, $mo, $da);
        $c->forward('render', split '/', $rest);
    }

    sub month :Regex('^(\d{4})/([01]?\d)(?:/(.*))?') {
        my ($self, $c, $yr, $mo, $rest) = @_;

        @{$c->stash}{qw/year month/} = ($yr, $mo);
        $c->forward('render', split '/', $rest);
    }

    sub year :Regex('^(\d{4})(?:/(.*))?') {
        my ($self, $c, $yr, $rest) = @_;

        $c->stash->{year} = $yr;
        $c->forward('render', split '/', $rest);
    }
}


use Ark::Test 'T1', components => [qw/Controller::Root/];

is(get('/2009/01/11/foo/bar'), '2009-01-11: foo,bar');
is(get('/2009/01/foo/bar/baz'), '2009-01: foo,bar,baz');
is(get('/2009/foo/bar'), '2009: foo,bar');

done_testing;



( run in 1.101 second using v1.01-cache-2.11-cpan-788537b7465 )