use Test::More; use strict; use IO::String; use Data::Dumper; require 't/test-lib.pm'; use_ok('Lemonldap::NG::Common::FormEncode'); count(1); my $client = LLNG::Manager::Test->new( { ini => { logLevel => 'error', ext2fActivation => 1, ext2FSendCommand => 't/sendOTP.pl -uid $uid', ext2FValidateCommand => 't/vrfyOTP.pl -uid $uid -code $code', authentication => 'Demo', userDB => 'Same', grantSessionRules => { 'Dwho_notAllowed##Test' => '$uid ne "dwho"' } } } ); my $res; # Try to authenticate # ------------------- ok( $res = $client->_post( '/', IO::String->new('user=dwho&password=dwho'), length => 23, accept => 'text/html', ), 'Auth query' ); count(1); my ( $host, $url, $query ) = expectForm( $res, undef, '/ext2fcheck', 'token', 'code' ); ok( $res->[2]->[0] =~ qr%%, 'Found EXTCODE input' ) or print STDERR Dumper( $res->[2]->[0] ); count(1); $query =~ s/code=/code=123456/; ok( $res = $client->_post( '/ext2fcheck', IO::String->new($query), length => length($query), accept => 'text/html', ), 'Post code' ); count(1); ok( $res->[2]->[0] =~ /

Dwho_notAllowed<\/h3>/, 'dwho rejected with custom message' ) or print STDERR Dumper( $res->[2]->[0] ); count(1); ok( $res->[2]->[0] =~ qr%src="/static/common/js/info.(?:min\.)?js">%, 'Found INFO js' ) or print STDERR Dumper( $res->[2]->[0] ); count(1); clean_sessions(); done_testing( count() );