1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
package main;
use strict;
use warnings;
require 't/test.pm';
use Test::More tests => 4;
BEGIN { use_ok('Lemonldap::NG::Handler::Main') }
# get a standard basic configuration in $args hashref
use Cwd 'abs_path';
use File::Basename;
use lib dirname( abs_path $0 );
#########################
# Insert your test code below, the Test::More module is used here so read
# its man page (perldoc Test::More) for help writing this test script.
my $h;
$h = 'Lemonldap::NG::Handler::Test';
$ENV{SERVER_NAME} = "test1.example.com";
#open STDERR, '>/dev/null';
my $conf = {
cfgNum => 1,
logLevel => 'error',
portal => 'http://auth.example.com/',
globalStorage => 'Apache::Session::File',
post => {},
key => 1,
locationRules => {
'test1.example.com' => {
# Basic rules
'default' => 'accept',
'^/no' => 'deny',
'test' => '$groups =~ /\badmin\b/',
# Bad ordered rules
'^/a/a' => 'deny',
'^/a' => 'accept',
# Good ordered rules
'(?#1 first)^/b/a' => 'deny',
'(?#2 second)^/b' => 'accept',
},
},
};
eval { $h->localConfig($conf); $h->logLevelInit() };
ok( !$@, 'init' );
ok( $h->configReload($conf), 'Load conf' );
ok( $h->tsv->{portal}->() eq 'http://auth.example.com/', 'portal' );
|