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.
111 lines
2.6 KiB
111 lines
2.6 KiB
use lib 'inc';
|
|
use Test::More; # skip_all => 'CAS is in rebuild';
|
|
use strict;
|
|
use IO::String;
|
|
use LWP::UserAgent;
|
|
use LWP::Protocol::PSGI;
|
|
use MIME::Base64;
|
|
|
|
BEGIN {
|
|
require 't/test-lib.pm';
|
|
}
|
|
|
|
my $debug = 'error';
|
|
my ( $issuer, $res );
|
|
my %handlerOR = ( issuer => [] );
|
|
|
|
eval { require XML::Simple };
|
|
plan skip_all => "Missing dependencies: $@" if ($@);
|
|
|
|
ok( $issuer = issuer(), 'Issuer portal' );
|
|
count(1);
|
|
switch ('issuer');
|
|
|
|
ok(
|
|
$res = $issuer->_get(
|
|
'/cas/login',
|
|
query => 'service=http://auth.sp.com/',
|
|
accept => 'text/html'
|
|
),
|
|
'Query CAS server'
|
|
);
|
|
count(1);
|
|
expectOK($res);
|
|
my $pdata = 'lemonldappdata=' . expectCookie( $res, 'lemonldappdata' );
|
|
|
|
# Try to authenticate to IdP
|
|
my $body = $res->[2]->[0];
|
|
$body =~ s/^.*?<form.*?>//s;
|
|
$body =~ s#</form>.*$##s;
|
|
my %fields =
|
|
( $body =~ /<input type="hidden".+?name="(.+?)".+?value="(.*?)"/sg );
|
|
$fields{user} = $fields{password} = 'french';
|
|
use URI::Escape;
|
|
my $s = join( '&', map { "$_=" . uri_escape( $fields{$_} ) } keys %fields );
|
|
ok(
|
|
$res = $issuer->_post(
|
|
'/cas/login',
|
|
IO::String->new($s),
|
|
cookie => $pdata,
|
|
accept => 'text/html',
|
|
length => length($s),
|
|
),
|
|
'Post authentication'
|
|
);
|
|
count(1);
|
|
my $idpId = expectCookie($res);
|
|
|
|
# Expect pdata to be cleared
|
|
$pdata = expectCookie( $res, 'lemonldappdata' );
|
|
ok( $pdata !~ 'issuerRequestsaml', 'SAML request cleared from pdata' );
|
|
count(1);
|
|
|
|
my ($query) =
|
|
expectRedirection( $res, qr#^http://auth.sp.com/\?(ticket=[^&]+)$# );
|
|
|
|
ok(
|
|
$res = $issuer->_get(
|
|
'/cas/validate',
|
|
query => 'service=http://auth.sp.com/&' . $query,
|
|
accept => 'text/html'
|
|
),
|
|
'Query CAS server'
|
|
);
|
|
|
|
expectOK($res);
|
|
count(1);
|
|
|
|
my @resp = split /\n/, $res->[2]->[0];
|
|
|
|
ok( $resp[0] eq 'yes', 'Ticket is valid' );
|
|
count(1);
|
|
ok( $resp[1] eq 'french', 'Username is returned' );
|
|
count(1);
|
|
|
|
clean_sessions();
|
|
done_testing( count() );
|
|
|
|
sub switch {
|
|
my $type = shift;
|
|
@Lemonldap::NG::Handler::Main::_onReload = @{
|
|
$handlerOR{$type};
|
|
};
|
|
}
|
|
|
|
sub issuer {
|
|
return LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => $debug,
|
|
domain => 'idp.com',
|
|
portal => 'http://auth.idp.com',
|
|
authentication => 'Demo',
|
|
userDB => 'Same',
|
|
issuerDBCASActivation => 1,
|
|
casAttr => 'uid',
|
|
casAttributes => { cn => 'cn', uid => 'uid', },
|
|
casAccessControlPolicy => 'none',
|
|
multiValuesSeparator => ';',
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|