The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use strict;
use warnings;

use lib "t/lib";

use Test::More;

BEGIN {
    eval {
		require Test::WWW::Mechanize::Catalyst;
    } or plan 'skip_all' => "A bunch of plugins are required for this test... Look in the source if you really care... $@";
    plan tests => 10;
}


use Test::WWW::Mechanize::Catalyst 'ACLTestApp2';

my $m = Test::WWW::Mechanize::Catalyst->new;

my $u = "http://localhost";

$m->get_ok( "$u/foo", "get foo" );
$m->content_contains( "", "access to end forbidden" );

$m->get_ok( "$u/bar", "get bar" );
$m->content_contains( "bar", "access to end forbidden" );

ACLTestApp2->acl_allow_root_internals;

$m->get_ok( "$u/foo", "get foo" );
$m->content_contains( "denied handled", "denied, handled" );

$m->get_ok( "$u/bar", "get bar" );
$m->content_contains( "allowed bar", "allowed" );

$m->get_ok( "$u/gorch", "get gorch" );
$m->content_contains( "denied handled gorch", "denied but overridden by handler" );