# 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 strict; use Test::More tests => 22; 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. my $res; ok( my $jail = Lemonldap::NG::Handler::Main::Jail->new( 'jail' => undef, 'useSafeJail' => 1, 'multiValuesSeparator' => '; ', ), 'new jail object' ); $jail->build_jail('Lemonldap::NG::Handler::Test'); my $sub = "sub { return( basic('login','password') ) }"; my $basic = $jail->jail_reval($sub); ok( ( defined($basic) ), 'basic extended function is defined' ); $sub = "sub { return ( encode_base64('test','') ) }"; my $code = $jail->jail_reval($sub); ok( ( defined($code) and ref($code) eq 'CODE' ), 'encode_base64 function is defined' ); ok( $res = &$code, "Function works" ); ok( $res eq 'dGVzdA==', 'Get good result' ); $sub = "sub { return ( listMatch('ABC; DEF; GHI','abc',1) ) }"; $code = $jail->jail_reval($sub); ok( ( defined($code) and ref($code) eq 'CODE' ), 'listMatch function is defined' ); ok( &$code eq '1', 'Get good result' ); $sub = "sub { return ( listMatch('ABC; DEF; GHI','ab',1) ) }"; $code = $jail->jail_reval($sub); ok( ( defined($code) and ref($code) eq 'CODE' ), 'listMatch function is defined' ); ok( &$code eq '0', 'Get good result' ); $sub = "sub { return(checkDate('20000101000000','21000101000000')) }"; $code = $jail->jail_reval($sub); ok( ( defined($code) and ref($code) eq 'CODE' ), 'checkDate extended function is defined' ); ok( $res = &$code, "Function works" ); ok( $res == 1, 'Get good result' ); $sub = "sub { return(checkDate('20000101000000+0100','21000101000000+0100')) }"; $code = $jail->jail_reval($sub); ok( ( defined($code) and ref($code) eq 'CODE' ), 'checkDate extended function is defined' ); ok( $res = &$code, "Function works" ); ok( $res == 1, 'Get good result' ); $sub = "sub { return(has2f_internal(\$_[0],\$_[1])) }"; $code = $jail->jail_reval($sub); ok( ( defined($code) and ref($code) eq 'CODE' ), 'checkDate extended function is defined' ); is( $code->( { _2fDevices => "[{\"name\":\"MyTOTP\",\"_secret\":\"g5fsxwf4d34biemlojsbbvhgtskrssos\",\"epoch\":1602173208,\"type\":\"TOTP\"}]" }, "TOTP" ), 1, "Function works" ); is( $code->( { _2fDevices => "[{\"name\":\"MyTOTP\",\"_secret\":\"g5fsxwf4d34biemlojsbbvhgtskrssos\",\"epoch\":1602173208,\"type\":\"TOTP\"}]" }, "UBK" ), 0, "Function works" ); is( $code->( { _2fDevices => "[{\"name\":\"MyTOTP\",\"_secret\":\"g5fsxwf4d34biemlojsbbvhgtskrssos\",\"epoch\":1602173208,\"type\":\"TOTP\"}]" }, ), 1, "Function works" ); $sub = "sub { return("; $code = $jail->jail_reval($sub); ok( ( not defined($code) ), 'Syntax error yields undef result' ); like( $jail->error, qr/Missing right curly or square bracket/, 'Found correct error message' );