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.
138 lines
3.2 KiB
138 lines
3.2 KiB
use Test::More;
|
|
use strict;
|
|
use IO::String;
|
|
use Data::Dumper;
|
|
|
|
BEGIN {
|
|
require 't/test-lib.pm';
|
|
}
|
|
|
|
my $res;
|
|
|
|
my $client = LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => 'error',
|
|
authentication => 'Demo',
|
|
userDB => 'Same',
|
|
loginHistoryEnabled => 0,
|
|
bruteForceProtection => 0,
|
|
requireToken => 0,
|
|
globalLogoutTimer => 0,
|
|
globalLogoutRule => 1,
|
|
}
|
|
}
|
|
);
|
|
|
|
## First successful connection for 'dwho'
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=dwho&password=dwho'),
|
|
length => 23,
|
|
accept => 'text/html',
|
|
),
|
|
'1st "dwho" Auth query'
|
|
);
|
|
count(1);
|
|
my $idd = expectCookie($res);
|
|
expectRedirection( $res, 'http://auth.example.com/' );
|
|
|
|
## Second successful connection for "dwho"
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=dwho&password=dwho'),
|
|
length => 23,
|
|
accept => 'text/html',
|
|
),
|
|
'2nd "dwho" Auth query'
|
|
);
|
|
count(1);
|
|
expectCookie($res);
|
|
expectRedirection( $res, 'http://auth.example.com/' );
|
|
|
|
## Third successful connection for 'dwho'
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=dwho&password=dwho'),
|
|
length => 23,
|
|
accept => 'text/html',
|
|
),
|
|
'3rd "dwho" Auth query'
|
|
);
|
|
count(1);
|
|
expectCookie($res);
|
|
expectRedirection( $res, 'http://auth.example.com/' );
|
|
|
|
## First successful connection for 'rtyler'
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=rtyler&password=rtyler'),
|
|
length => 27,
|
|
accept => 'text/html',
|
|
),
|
|
'1st "rtyler" Auth query'
|
|
);
|
|
count(1);
|
|
my $idr = expectCookie($res);
|
|
expectRedirection( $res, 'http://auth.example.com/' );
|
|
|
|
## 2nd successful connection for 'rtyler'
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=rtyler&password=rtyler'),
|
|
length => 27,
|
|
accept => 'text/html',
|
|
),
|
|
'2nd "rtyler" Auth query'
|
|
);
|
|
count(1);
|
|
expectCookie($res);
|
|
expectRedirection( $res, 'http://auth.example.com/' );
|
|
|
|
my $nbr = count_sessions();
|
|
ok( $nbr == 5, "Five sessions found" )
|
|
or explain("Number of session(s) found = $nbr");
|
|
count(1);
|
|
|
|
## Logout request for 'rtyler'
|
|
ok(
|
|
$res = $client->_get(
|
|
'/',
|
|
query => 'logout',
|
|
cookie => "lemonldap=$idr",
|
|
accept => 'text/html'
|
|
),
|
|
'Logout request for "rtyler"'
|
|
);
|
|
ok( $res->[2]->[0] =~ m%<span trmsg="47"></span>%, 'Found PE_LOGOUT_OK' )
|
|
or explain( $res->[2]->[0], "PE_LOGOUT_OK" );
|
|
$nbr = count_sessions();
|
|
ok( $nbr == 3, "Three sessions found" )
|
|
or explain("Number of session(s) found = $nbr");
|
|
count(3);
|
|
|
|
## Logout request for 'dwho'
|
|
ok(
|
|
$res = $client->_get(
|
|
'/',
|
|
query => 'logout',
|
|
cookie => "lemonldap=$idd"
|
|
),
|
|
'Logout request for "dwho"'
|
|
);
|
|
eval { $res = JSON::from_json( $res->[2]->[0] ) };
|
|
ok( not($@), 'Content is JSON' )
|
|
or explain( $res->[2]->[0], 'JSON content' );
|
|
ok( $res->{error} == 47, 'PE_LOGOUT_OK' );
|
|
$nbr = count_sessions();
|
|
ok( $nbr == 0, "No session found" )
|
|
or explain("Number of session(s) found = $nbr");
|
|
count(4);
|
|
|
|
clean_sessions();
|
|
|
|
done_testing( count() );
|
|
|