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.
162 lines
4.3 KiB
162 lines
4.3 KiB
use lib 'inc';
|
|
use Test::More;
|
|
use strict;
|
|
use IO::String;
|
|
use LWP::UserAgent;
|
|
use LWP::Protocol::PSGI;
|
|
|
|
BEGIN {
|
|
require 't/test-lib.pm';
|
|
}
|
|
|
|
my $debug = 'error';
|
|
my ( $issuer, $sp, $res, $spId );
|
|
my %handlerOR = ( issuer => [], sp => [] );
|
|
|
|
# Redefine LWP methods for tests
|
|
LWP::Protocol::PSGI->register(
|
|
sub {
|
|
my $req = Plack::Request->new(@_);
|
|
ok(
|
|
$req->uri =~ m#http://auth.idp.com(.*?)(?:\?(.*))?$#,
|
|
' @ REST request (' . $req->method . " $1)"
|
|
);
|
|
count(1);
|
|
my $url = $1;
|
|
my $query = $2;
|
|
my $res;
|
|
if ( $req->method =~ /^(post|put)$/i ) {
|
|
my $mth = '_' . lc($1);
|
|
my $s = $req->content;
|
|
ok(
|
|
$res = $issuer->$mth(
|
|
$url,
|
|
IO::String->new($s),
|
|
length => length($s),
|
|
type => $req->header('Content-Type'),
|
|
),
|
|
' Post request'
|
|
);
|
|
count(1);
|
|
expectOK($res);
|
|
}
|
|
elsif ( $req->method =~ /^(get|delete)$/i ) {
|
|
my $mth = '_' . lc($1);
|
|
ok(
|
|
$res = $issuer->$mth(
|
|
$url,
|
|
accept => $req->header('Accept'),
|
|
cookie => $req->header('Cookie'),
|
|
query => $query,
|
|
),
|
|
' Execute request'
|
|
);
|
|
ok( ( $res->[0] == 200 or $res->[0] == 400 ),
|
|
' Response is 200 or 400' )
|
|
or explain( $res->[0], '200 or 400' );
|
|
count(2);
|
|
}
|
|
pass(' @ END OF REST REQUEST');
|
|
count(1);
|
|
return $res;
|
|
}
|
|
);
|
|
|
|
ok( $issuer = issuer(), 'Issuer portal' );
|
|
$handlerOR{issuer} = \@Lemonldap::NG::Handler::Main::_onReload;
|
|
switch ('sp');
|
|
&Lemonldap::NG::Handler::Main::cfgNum( 0, 0 );
|
|
|
|
ok( $sp = sp(), 'SP portal' );
|
|
$handlerOR{sp} = \@Lemonldap::NG::Handler::Main::_onReload;
|
|
count(2);
|
|
|
|
# Simple SP access
|
|
ok(
|
|
$res = $sp->_get(
|
|
'/', accept => 'text/html',
|
|
),
|
|
'Unauth SP request'
|
|
);
|
|
expectOK($res);
|
|
|
|
# Try to auth
|
|
ok(
|
|
$res = $sp->_post(
|
|
'/', IO::String->new('user=french&password=french'),
|
|
length => 27,
|
|
accept => 'text/html'
|
|
),
|
|
'Post user/password'
|
|
);
|
|
count(2);
|
|
expectRedirection( $res, 'http://auth.sp.com' );
|
|
$spId = expectCookie($res);
|
|
|
|
# Test auth
|
|
ok( $res = $sp->_get( '/', cookie => "lemonldap=$spId" ), 'Auth test' );
|
|
count(1);
|
|
expectOK($res);
|
|
|
|
# Test other REST queries
|
|
switch ('issuer');
|
|
|
|
# Session key
|
|
ok( $res = $issuer->_get("/sessions/global/$spId/[_session_id,_password]"),
|
|
'Some session keys' );
|
|
expectOK($res);
|
|
ok( $res = eval { JSON::from_json( $res->[2]->[0] ) }, ' GET JSON' )
|
|
or print STDERR $@;
|
|
ok( $res->{_session_id} eq $spId, ' Good ID' )
|
|
or explain( $res, "_session_id => $spId" );
|
|
ok( $res->{_password} eq 'french', ' Password is exported' )
|
|
or explain( $res, '_password => french' );
|
|
count(4);
|
|
|
|
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',
|
|
restSessionServer => 1,
|
|
restExportSecretKeys => 1,
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
sub sp {
|
|
return LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => $debug,
|
|
domain => 'sp.com',
|
|
portal => 'http://auth.sp.com',
|
|
authentication => 'Demo',
|
|
userDB => 'Same',
|
|
globalStorage => 'Lemonldap::NG::Common::Apache::Session::REST',
|
|
globalStorageOptions => {
|
|
baseUrl => 'http://auth.idp.com/sessions/global/'
|
|
},
|
|
persistentStorage =>
|
|
'Lemonldap::NG::Common::Apache::Session::REST',
|
|
persistentStorageOptions => {
|
|
baseUrl => 'http://auth.idp.com/sessions/persistent/'
|
|
},
|
|
storePassword => 1,
|
|
},
|
|
}
|
|
);
|
|
}
|
|
|