Catalyst-Plugin-Authentication

 view release on metacpan or  search on metacpan

t/06_user.t  view on Meta::CPAN

use strict;
use warnings;

use Test::More;
use Test::Fatal;

my $m; BEGIN { use_ok($m = "Catalyst::Authentication::User") }

{
    package SomeBaseUser;
    sub other_method { 'FNAR' };
}

{
    package SomeUser;
    use base $m;

    sub new { bless {}, shift };

    sub supported_features {
        {
            feature => {
                subfeature => 1,
                unsupported_subfeature => 0,
            },
            top_level => 1,
        }
    }
    sub get_object {
        bless {}, 'SomeBaseUser';
    }
}

my $o = SomeUser->new;

can_ok( $m, "supports" );

ok( $o->supports("top_level"), "simple top level feature check");
ok( $o->supports(qw/feature subfeature/), "traversal");
ok( !$o->supports(qw/feature unsupported_subfeature/), "traversal terminating in false");

is exception {
    $o->supports("bad_key");
}, undef, "can check for non existent feature";

#dies_ok {
#    $o->supports(qw/bad_key subfeature/)
#} "but can't traverse into one";

is exception {
    is $o->other_method, 'FNAR', 'Delegation onto user object works';
}, undef, 'Delegation lives';

done_testing;




( run in 0.863 second using v1.01-cache-2.11-cpan-54e63673c56 )