You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.9 KiB
56 lines
1.9 KiB
# Before `make install' is performed this script should be runnable with
|
|
# `make test'. After `make install' it should work as `perl Lemonldap-NG-Handler-SharedConf.t'
|
|
|
|
#########################
|
|
|
|
# change 'tests => 1' to 'tests => last_test_to_print';
|
|
|
|
use Test::More tests => 9;
|
|
require 't/test.pm';
|
|
BEGIN { use_ok('Lemonldap::NG::Handler::Main::Jail') }
|
|
|
|
#########################
|
|
|
|
# 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.
|
|
|
|
ok(
|
|
my $jail = Lemonldap::NG::Handler::Main::Jail->new(
|
|
'jail' => undef,
|
|
'useSafeJail' => 0,
|
|
'customFunctions' => undef,
|
|
'multiValuesSeparator' => '; ',
|
|
),
|
|
'new fake jail object'
|
|
);
|
|
$jail->build_jail('Lemonldap::NG::Handler::Test');
|
|
|
|
my $sub1 = "sub { return( basic('login','password') ) }";
|
|
my $basic = $jail->jail_reval($sub1);
|
|
like(
|
|
&$basic,
|
|
'/^Basic bG9naW46cGFzc3dvcmQ=$/',
|
|
'basic extended function working without Safe Jail'
|
|
);
|
|
|
|
my $sub2 = "sub { return ( encode_base64('test') ) }";
|
|
my $encode_base64 = $jail->jail_reval($sub2);
|
|
like( &$encode_base64, '/^dGVzdA==$/',
|
|
'encode_base64 extended function working without Safe Jail' );
|
|
|
|
my $sub3 = "sub { return(checkDate('20000000000000','21000000000000')) }";
|
|
my $checkDate = $jail->jail_reval($sub3);
|
|
ok( &$checkDate == "1",
|
|
'checkDate extended function working without Safe Jail' );
|
|
|
|
my $sub4 = "sub { return ( listMatch('ABC; DEF; GHI','abc', 1) ) }";
|
|
my $listMatch = $jail->jail_reval($sub4);
|
|
ok( ( defined($listMatch) and ref($listMatch) eq 'CODE' ),
|
|
'listMatch function is defined' );
|
|
ok( &$listMatch eq '1', 'Get good result' );
|
|
|
|
my $sub5 = "sub { return ( listMatch('ABC; DEF; GHI','ab', 1) ) }";
|
|
$listMatch = $jail->jail_reval($sub5);
|
|
ok( ( defined($listMatch) and ref($listMatch) eq 'CODE' ),
|
|
'listMatch function is defined' );
|
|
ok( &$listMatch eq '0', 'Get good result' );
|
|
|