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.
191 lines
6.6 KiB
191 lines
6.6 KiB
use lib 'inc';
|
|
use Test::More;
|
|
use strict;
|
|
use IO::String;
|
|
use LWP::UserAgent;
|
|
use LWP::Protocol::PSGI;
|
|
use MIME::Base64;
|
|
|
|
BEGIN {
|
|
require 't/test-lib.pm';
|
|
require 't/saml-lib.pm';
|
|
}
|
|
|
|
my $maintests = 4;
|
|
my $debug = 'error';
|
|
my ( $issuer, $sp, $res );
|
|
|
|
# Redefine LWP methods for tests
|
|
LWP::Protocol::PSGI->register(
|
|
sub {
|
|
my $req = Plack::Request->new(@_);
|
|
fail('POST should not launch SOAP requests');
|
|
count(1);
|
|
return [ 500, [], [] ];
|
|
}
|
|
);
|
|
|
|
SKIP: {
|
|
eval "use Lasso";
|
|
if ($@) {
|
|
skip 'Lasso not found', $maintests;
|
|
}
|
|
|
|
# Initialization
|
|
$issuer = register( 'issuer', \&issuer );
|
|
$sp = register( 'sp', \&sp );
|
|
|
|
# Simple SP access
|
|
my $res;
|
|
ok(
|
|
$res = $sp->_get(
|
|
'/',
|
|
accept => 'text/html',
|
|
query => 'url=aHR0cDovL3Rlc3QxLmV4YW1wbGUuY29tLw=='
|
|
),
|
|
'Unauth SP request'
|
|
);
|
|
my ( $url, $query ) = expectRedirection( $res,
|
|
qr#^http://auth.idp.com(/saml/singleSignOn)\?(SAMLRequest=.+)# );
|
|
|
|
# Push SAML request to IdP
|
|
switch ('issuer');
|
|
ok(
|
|
$res = $issuer->_get(
|
|
$url,
|
|
query => $query,
|
|
accept => 'text/html',
|
|
),
|
|
'Launch SAML request to IdP'
|
|
);
|
|
expectOK($res);
|
|
my $pdata = 'lemonldappdata=' . expectCookie( $res, 'lemonldappdata' );
|
|
|
|
# Try to authenticate to IdP with unautorizated user
|
|
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;
|
|
$query =
|
|
join( '&', map { "$_=" . uri_escape( $fields{$_} ) } keys %fields );
|
|
ok(
|
|
$res = $issuer->_post(
|
|
$url,
|
|
IO::String->new($query),
|
|
length => length($query),
|
|
cookie => $pdata,
|
|
accept => 'text/html',
|
|
),
|
|
'Post authentication'
|
|
);
|
|
expectOK($res);
|
|
my $idpId = expectCookie($res);
|
|
ok( $res->[2]->[0] =~ /trmsg="84"/, 'Reject reason is 84' );
|
|
}
|
|
|
|
count($maintests);
|
|
clean_sessions();
|
|
done_testing( count() );
|
|
|
|
sub issuer {
|
|
return LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => $debug,
|
|
domain => 'idp.com',
|
|
portal => 'http://auth.idp.com',
|
|
authentication => 'Demo',
|
|
userDB => 'Same',
|
|
issuerDBSAMLActivation => 1,
|
|
issuerDBSAMLRule => '$uid eq "french"',
|
|
samlSPMetaDataOptions => {
|
|
'sp.com' => {
|
|
samlSPMetaDataOptionsEncryptionMode => 'none',
|
|
samlSPMetaDataOptionsSignSSOMessage => 1,
|
|
samlSPMetaDataOptionsSignSLOMessage => 1,
|
|
samlSPMetaDataOptionsCheckSSOMessageSignature => 1,
|
|
samlSPMetaDataOptionsCheckSLOMessageSignature => 1,
|
|
samlSPMetaDataOptionsRule => '$uid eq "dwho"',
|
|
}
|
|
},
|
|
samlSPMetaDataExportedAttributes => {
|
|
'sp.com' => {
|
|
cn =>
|
|
'1;cn;urn:oasis:names:tc:SAML:2.0:attrname-format:basic',
|
|
uid =>
|
|
'1;uid;urn:oasis:names:tc:SAML:2.0:attrname-format:basic',
|
|
}
|
|
},
|
|
samlOrganizationDisplayName => "IDP",
|
|
samlOrganizationName => "IDP",
|
|
samlOrganizationURL => "http://www.idp.com/",
|
|
samlServicePrivateKeyEnc => saml_key_idp_private_enc,
|
|
samlServicePrivateKeySig => saml_key_idp_private_sig,
|
|
samlServicePublicKeyEnc => saml_key_idp_public_enc,
|
|
samlServicePublicKeySig => saml_key_idp_public_sig,
|
|
samlSPMetaDataXML => {
|
|
"sp.com" => {
|
|
samlSPMetaDataXML =>
|
|
samlSPMetaDataXML( 'sp', 'HTTP-Redirect' )
|
|
},
|
|
},
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
sub sp {
|
|
return LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => $debug,
|
|
domain => 'sp.com',
|
|
portal => 'http://auth.sp.com',
|
|
authentication => 'SAML',
|
|
userDB => 'Same',
|
|
issuerDBSAMLActivation => 0,
|
|
restSessionServer => 1,
|
|
samlIDPMetaDataExportedAttributes => {
|
|
idp => {
|
|
mail => "0;mail;;",
|
|
uid => "1;uid",
|
|
cn => "0;cn"
|
|
}
|
|
},
|
|
samlIDPMetaDataOptions => {
|
|
idp => {
|
|
samlIDPMetaDataOptionsEncryptionMode => 'none',
|
|
samlIDPMetaDataOptionsSSOBinding => 'redirect',
|
|
samlIDPMetaDataOptionsSLOBinding => 'redirect',
|
|
samlIDPMetaDataOptionsSignSSOMessage => 1,
|
|
samlIDPMetaDataOptionsSignSLOMessage => 1,
|
|
samlIDPMetaDataOptionsCheckSSOMessageSignature => 1,
|
|
samlIDPMetaDataOptionsCheckSLOMessageSignature => 1,
|
|
samlIDPMetaDataOptionsForceUTF8 => 1,
|
|
}
|
|
},
|
|
samlIDPMetaDataExportedAttributes => {
|
|
idp => {
|
|
"uid" => "0;uid;;",
|
|
"cn" => "1;cn;;",
|
|
},
|
|
},
|
|
samlIDPMetaDataXML => {
|
|
idp => {
|
|
samlIDPMetaDataXML =>
|
|
samlIDPMetaDataXML( 'idp', 'HTTP-Redirect' )
|
|
}
|
|
},
|
|
samlOrganizationDisplayName => "SP",
|
|
samlOrganizationName => "SP",
|
|
samlOrganizationURL => "http://www.sp.com",
|
|
samlServicePublicKeySig => saml_key_sp_public_sig,
|
|
samlServicePrivateKeyEnc => saml_key_sp_private_enc,
|
|
samlServicePrivateKeySig => saml_key_sp_private_sig,
|
|
samlServicePublicKeyEnc => saml_key_sp_public_enc,
|
|
samlSPSSODescriptorAuthnRequestsSigned => 1,
|
|
},
|
|
}
|
|
);
|
|
}
|
|
|