lemonldap-ng/lemonldap-ng-portal/t/32-Auth-and-issuer-OIDC-authorization_code.t

384 lines
12 KiB
Perl
Raw Normal View History

2016-12-31 09:39:31 +01:00
use Test::More;
use strict;
use IO::String;
use MIME::Base64;
BEGIN {
require 't/test-lib.pm';
}
2017-01-01 13:32:38 +01:00
my $debug = 'error';
2017-01-02 21:35:37 +01:00
my ( $op, $rp, $res );
my %handlerOR = ( op => [], rp => [] );
2016-12-31 09:39:31 +01:00
# Initialization
2017-01-02 21:35:37 +01:00
ok( $op = op(), 'OP portal' );
2016-12-31 09:39:31 +01:00
2017-01-02 21:35:37 +01:00
ok( $res = $op->_get('/oauth2/jwks'), 'Get JWKS, endpoint /oauth2/jwks' );
2017-01-24 22:02:06 +01:00
expectOK($res);
2016-12-31 15:40:26 +01:00
my $jwks = $res->[2]->[0];
2017-01-02 21:20:42 +01:00
ok(
2017-01-02 21:35:37 +01:00
$res = $op->_get('/.well-known/openid-configuration'),
2017-01-02 21:20:42 +01:00
'Get metadata, endpoint /.well-known/openid-configuration'
);
2017-01-24 22:02:06 +01:00
expectOK($res);
2016-12-31 15:40:26 +01:00
my $metadata = $res->[2]->[0];
count(3);
2016-12-31 14:08:39 +01:00
2017-01-02 21:35:37 +01:00
switch ('rp');
ok( $rp = rp( $jwks, $metadata ), 'RP portal' );
2016-12-31 14:08:39 +01:00
count(1);
2017-01-01 10:43:48 +01:00
# Query RP for auth
2017-01-02 21:35:37 +01:00
ok( $res = $rp->_get( '/', accept => 'text/html' ), 'Unauth SP request' );
2017-01-01 10:43:48 +01:00
count(1);
my ( $url, $query ) =
expectRedirection( $res, qr#http://auth.op.com(/oauth2/authorize)\?(.*)$# );
# Push request to OP
2017-01-02 21:35:37 +01:00
switch ('op');
ok( $res = $op->_get( $url, query => $query, accept => 'text/html' ),
2017-01-02 21:57:45 +01:00
"Push request to OP, endpoint $url" );
2017-01-01 10:43:48 +01:00
count(1);
expectOK($res);
# Try to authenticate to IdP
$query = "user=dwho&password=dwho&$query";
ok(
2017-01-02 21:35:37 +01:00
$res = $op->_post(
2017-01-01 10:43:48 +01:00
$url,
IO::String->new($query),
accept => 'text/html',
length => length($query),
),
2017-01-02 21:57:45 +01:00
"Post authentication, endpoint $url"
2017-01-01 10:43:48 +01:00
);
count(1);
my $idpId = expectCookie($res);
my ( $host, $tmp );
2017-01-02 21:20:42 +01:00
( $host, $tmp, $query ) = expectForm( $res, '#', undef, 'confirm' );
2017-01-01 10:43:48 +01:00
ok(
2017-01-02 21:35:37 +01:00
$res = $op->_post(
2017-01-01 10:43:48 +01:00
$url,
IO::String->new($query),
accept => 'text/html',
cookie => "lemonldap=$idpId",
length => length($query),
),
2017-01-02 21:57:45 +01:00
"Post confirmation, endpoint $url"
2017-01-01 10:43:48 +01:00
);
count(1);
($query) = expectRedirection( $res, qr#^http://auth.rp.com/?\?(.*)$# );
# Push OP response to RP
2017-01-02 21:35:37 +01:00
switch ('rp');
2017-01-01 10:43:48 +01:00
2017-01-02 21:35:37 +01:00
ok( $res = $rp->_get( '/', query => $query, accept => 'text/html' ),
2017-01-01 10:43:48 +01:00
'Call openidconnectcallback on RP' );
count(1);
2017-01-01 18:56:46 +01:00
my $spId = expectCookie($res);
2017-01-02 21:35:37 +01:00
switch ('op');
2017-01-02 21:57:45 +01:00
ok(
2017-01-04 23:19:17 +01:00
$res = $op->_get( '/oauth2/checksession.html', accept => 'text.html' ),
'Check session, endpoint /oauth2/checksession.html'
2017-01-02 21:57:45 +01:00
);
2017-01-02 21:20:42 +01:00
count(1);
2017-01-02 21:57:45 +01:00
expectOK($res);
2017-01-21 10:50:59 +01:00
ok( getHeader( $res, 'Content-Security-Policy' ) !~ /frame-ancestors/,
2017-01-21 10:17:24 +01:00
' Frame can be embedded' )
or explain( $res->[1],
2017-01-21 10:50:59 +01:00
'Content-Security-Policy does not contain a frame-ancestors' );
2017-01-20 07:19:54 +01:00
count(1);
2017-01-02 21:20:42 +01:00
2017-01-01 18:56:46 +01:00
# Logout initiated by RP
2017-01-02 21:35:37 +01:00
switch ('rp');
2017-01-01 18:56:46 +01:00
ok(
2017-01-02 21:35:37 +01:00
$res = $rp->_get(
2017-01-01 18:56:46 +01:00
'/',
query => 'logout',
cookie => "lemonldap=$spId",
accept => 'text/html'
),
'Query SP for logout'
);
count(1);
( $url, $query ) = expectRedirection( $res,
qr#http://auth.op.com(/oauth2/logout)\?(post_logout_redirect_uri=.+)$# );
# Push logout to OP
2017-01-02 21:35:37 +01:00
switch ('op');
2017-01-01 18:56:46 +01:00
ok(
2017-01-02 21:35:37 +01:00
$res = $op->_get(
2017-01-01 18:56:46 +01:00
$url,
query => $query,
cookie => "lemonldap=$idpId",
accept => 'text/html'
),
2017-01-02 21:57:45 +01:00
"Push logout request to OP, endpoint $url"
2017-01-01 18:56:46 +01:00
);
count(1);
( $host, $tmp, $query ) = expectForm( $res, '#', undef, 'confirm' );
ok(
2017-01-02 21:35:37 +01:00
$res = $op->_post(
2017-01-01 18:56:46 +01:00
$url, IO::String->new($query),
length => length($query),
cookie => "lemonldap=$idpId",
),
2017-01-02 21:57:45 +01:00
"Confirm logout, endpoint $url"
);
count(1);
# Test logout endpoint without session
ok(
$res = $op->_get(
'/oauth2/logout',
accept => 'text/html',
query => 'post_logout_redirect_uri=http://auth.rp.com'
),
'logout endpoint with redirect, endpoint /oauth2/logout'
2017-01-01 18:56:46 +01:00
);
count(1);
2017-01-02 21:57:45 +01:00
expectRedirection( $res, 'http://auth.rp.com' );
ok( $res = $op->_get('/oauth2/logout'),
'logout endpoint, endpoint /oauth2/logout' );
count(1);
expectReject($res);
2017-01-01 18:56:46 +01:00
2017-01-02 21:20:42 +01:00
# Test if logout is done
ok(
2017-01-02 21:35:37 +01:00
$res = $op->_get(
2017-01-02 21:20:42 +01:00
'/', cookie => "lemonldap=$idpId",
),
'Test if user is reject on IdP'
);
count(1);
expectReject($res);
2017-01-01 18:56:46 +01:00
2017-01-02 21:35:37 +01:00
switch ('rp');
2017-01-02 21:20:42 +01:00
ok(
2017-01-02 21:35:37 +01:00
$res = $rp->_get(
2017-01-02 21:20:42 +01:00
'/',
accept => 'text/html',
cookie =>
"lemonldapidp=http://auth.idp.com/saml/metadata; lemonldap=$spId"
),
'Test if user is reject on SP'
);
count(1);
expectRedirection( $res, qr#^http://auth.op.com/oauth2/authorize# );
2017-01-01 18:56:46 +01:00
#print STDERR Dumper($res);
2016-12-31 14:08:39 +01:00
2016-12-31 09:39:31 +01:00
clean_sessions();
done_testing( count() );
2017-01-01 10:43:48 +01:00
no warnings 'redefine';
sub LWP::UserAgent::request {
my ( $self, $req ) = @_;
2017-01-02 21:20:42 +01:00
ok( $req->uri =~ m#http://auth.((?:o|r)p).com(.*)#, ' REST request' );
2017-01-01 10:43:48 +01:00
my $host = $1;
my $url = $2;
2017-01-02 21:20:42 +01:00
my ( $res, $client );
count(1);
if ( $host eq 'op' ) {
2017-01-02 21:57:45 +01:00
pass(" Request from RP to OP, endpoint $url");
2017-01-02 21:35:37 +01:00
$client = $op;
2017-01-02 21:20:42 +01:00
}
elsif ( $host eq 'rp' ) {
pass(' Request from OP to RP');
2017-01-02 21:35:37 +01:00
$client = $rp;
2017-01-02 21:20:42 +01:00
}
else {
fail(' Aborting REST request (external)');
return HTTP::Response->new(500);
}
2017-01-01 10:43:48 +01:00
if ( $req->method =~ /^post$/i ) {
my $s = $req->content;
ok(
$res = $client->_post(
$url, IO::String->new($s),
length => length($s),
type => $req->header('Content-Type'),
),
2017-01-02 21:20:42 +01:00
' Execute request'
2017-01-01 10:43:48 +01:00
);
}
else {
ok(
$res = $client->_get(
$url,
custom => {
HTTP_AUTHORIZATION => $req->header('Authorization'),
}
),
2017-01-02 21:20:42 +01:00
' Execute request'
2017-01-01 10:43:48 +01:00
);
}
2017-01-02 21:20:42 +01:00
ok( $res->[0] == 200, ' Response is 200' );
2017-01-01 10:43:48 +01:00
ok( getHeader( $res, 'Content-Type' ) =~ m#^application/json#,
2017-01-02 21:20:42 +01:00
' Content is JSON' )
2017-01-01 10:43:48 +01:00
or explain( $res->[1], 'Content-Type => application/json' );
my $httpResp = HTTP::Response->new( $res->[0], 'OK' );
while ( my $name = shift @{ $res->[1] } ) {
$httpResp->header( $name, shift( @{ $res->[1] } ) );
}
$httpResp->content( join( '', @{ $res->[2] } ) );
2017-01-02 21:20:42 +01:00
count(4);
2017-01-01 10:43:48 +01:00
return $httpResp;
}
2016-12-31 15:40:26 +01:00
sub switch {
my $type = shift;
2017-01-02 21:20:42 +01:00
pass( '==> Switching to ' . uc($type) . ' <==' );
count(1);
2016-12-31 15:40:26 +01:00
@Lemonldap::NG::Handler::Main::Reload::_onReload = @{
$handlerOR{$type};
};
}
2017-01-02 21:35:37 +01:00
sub op {
2016-12-31 09:39:31 +01:00
return LLNG::Manager::Test->new(
{
ini => {
logLevel => $debug,
domain => 'idp.com',
portal => 'http://auth.op.com',
authentication => 'Demo',
userDB => 'Same',
2016-12-31 09:39:31 +01:00
issuerDBOpenIDConnectActivation => "1",
oidcRPMetaDataExportedVars => {
rp => {
email => "mail",
family_name => "cn",
name => "cn"
}
},
oidcServiceMetaDataIssuer => "http://auth.op.com",
oidcServiceMetaDataAuthorizeURI => "authorize",
2017-01-04 23:19:17 +01:00
oidcServiceMetaDataCheckSessionURI => "checksession.html",
2016-12-31 09:39:31 +01:00
oidcServiceMetaDataJWKSURI => "jwks",
oidcServiceMetaDataEndSessionURI => "logout",
oidcServiceMetaDataRegistrationURI => "register",
oidcServiceMetaDataTokenURI => "token",
oidcServiceMetaDataUserInfoURI => "userinfo",
oidcServiceAllowHybridFlow => 1,
oidcServiceAllowImplicitFlow => 1,
oidcServiceAllowDynamicRegistration => 1,
oidcServiceAllowAuthorizationCodeFlow => 1,
oidcRPMetaDataOptions => {
rp => {
2016-12-31 15:40:26 +01:00
oidcRPMetaDataOptionsDisplayName => "RP",
oidcRPMetaDataOptionsIDTokenExpiration => 3600,
oidcRPMetaDataOptionsClientID => "rpid",
oidcRPMetaDataOptionsIDTokenSignAlg => "HS512",
oidcRPMetaDataOptionsBypassConsent => 0,
oidcRPMetaDataOptionsClientSecret => "rpsecret",
oidcRPMetaDataOptionsUserIDAttr => "",
2016-12-31 09:39:31 +01:00
oidcRPMetaDataOptionsAccessTokenExpiration => 3600
}
},
oidcOPMetaDataOptions => {},
oidcOPMetaDataJSON => {},
oidcOPMetaDataJWKS => {},
oidcStorageOptions => {},
oidcServiceMetaDataAuthnContext => {
'loa-4' => 4,
'loa-1' => 1,
'loa-5' => 5,
'loa-2' => 2,
'loa-3' => 3
},
2016-12-31 15:40:26 +01:00
oidcServicePrivateKeySig => "-----BEGIN RSA PRIVATE KEY-----
2016-12-31 14:08:39 +01:00
MIIEowIBAAKCAQEAs2jsmIoFuWzMkilJaA8//5/T30cnuzX9GImXUrFR2k9EKTMt
GMHCdKlWOl3BV+BTAU9TLz7Jzd/iJ5GJ6B8TrH1PHFmHpy8/qE/S5OhinIpIi7eb
ABqnoVcwDdCa8ugzq8k8SWxhRNXfVIlwz4NH1caJ8lmiERFj7IvNKqEhzAk0pyDr
8hubveTC39xREujKlsqutpPAFPJ3f2ybVsdykX5rx0h5SslG3jVWYhZ/SOb2aIzO
r0RMjhQmsYRwbpt3anjlBZ98aOzg7GAkbO8093X5VVk9vaPRg0zxJQ0Do0YLyzkR
isSAIFb0tdKuDnjRGK6y/N2j6At2HjkxntbtGQIDAQABAoIBADYq6LxJd977LWy3
0HT9nboFPIf+SM2qSEc/S5Po+6ipJBA4ZlZCMf7dHa6znet1TDpqA9iQ4YcqIHMH
6xZNQ7hhgSAzG9TrXBHqP+djDlrrGWotvjuy0IfS9ixFnnLWjrtAH9afRWLuG+a/
NHNC1M6DiiTE0TzL/lpt/zzut3CNmWzH+t19X6UsxUg95AzooEeewEYkv25eumWD
mfQZfCtSlIw1sp/QwxeJa/6LJw7KcPZ1wXUm1BN0b9eiKt9Cmni1MS7elgpZlgGt
xtfGTZtNLQ7bgDiM8MHzUfPBhbceNSIx2BeCuOCs/7eaqgpyYHBbAbuBQex2H61l
Lcc3Tz0CgYEA4Kx/avpCPxnvsJ+nHVQm5d/WERuDxk4vH1DNuCYBvXTdVCGADf6a
F5No1JcTH3nPTyPWazOyGdT9LcsEJicLyD8vCM6hBFstG4XjqcAuqG/9DRsElpHQ
yi1zc5DNP7Vxmiz9wII0Mjy0abYKtxnXh9YK4a9g6wrcTpvShhIcIb8CgYEAzGzG
lorVCfX9jXULIznnR/uuP5aSnTEsn0xJeqTlbW0RFWLdj8aIL1peirh1X89HroB9
GeTNqEJXD+3CVL2cx+BRggMDUmEz4hR59meZCDGUyT5fex4LIsceb/ESUl2jo6Sw
HXwWbN67rQ55N4oiOcOppsGxzOHkl5HdExKidycCgYEAr5Qev2tz+fw65LzfzHvH
Kj4S/KuT/5V6He731cFd+sEpdmX3vPgLVAFPG1Q1DZQT/rTzDDQKK0XX1cGiLG63
NnaqOye/jbfzOF8Z277kt51NFMDYhRLPKDD82IOA4xjY/rPKWndmcxwdob8yAIWh
efY76sMz6ntCT+xWSZA9i+ECgYBWMZM2TIlxLsBfEbfFfZewOUWKWEGvd9l5vV/K
D5cRIYivfMUw5yPq2267jPUolayCvniBH4E7beVpuPVUZ7KgcEvNxtlytbt7muil
5Z6X3tf+VodJ0Swe2NhTmNEB26uwxzLe68BE3VFCsbSYn2y48HAq+MawPZr18bHG
ZfgMxwKBgHHRg6HYqF5Pegzk1746uH2G+OoCovk5ylGGYzcH2ghWTK4agCHfBcDt
EYqYAev/l82wi+OZ5O8U+qjFUpT1CVeUJdDs0o5u19v0UJjunU1cwh9jsxBZAWLy
PAGd6SWf4S3uQCTw6dLeMna25YIlPh5qPA6I/pAahe8e3nSu2ckl
-----END RSA PRIVATE KEY-----
",
2016-12-31 15:40:26 +01:00
oidcServicePublicKeySig => "-----BEGIN PUBLIC KEY-----
2016-12-31 14:08:39 +01:00
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs2jsmIoFuWzMkilJaA8/
/5/T30cnuzX9GImXUrFR2k9EKTMtGMHCdKlWOl3BV+BTAU9TLz7Jzd/iJ5GJ6B8T
rH1PHFmHpy8/qE/S5OhinIpIi7ebABqnoVcwDdCa8ugzq8k8SWxhRNXfVIlwz4NH
1caJ8lmiERFj7IvNKqEhzAk0pyDr8hubveTC39xREujKlsqutpPAFPJ3f2ybVsdy
kX5rx0h5SslG3jVWYhZ/SOb2aIzOr0RMjhQmsYRwbpt3anjlBZ98aOzg7GAkbO80
93X5VVk9vaPRg0zxJQ0Do0YLyzkRisSAIFb0tdKuDnjRGK6y/N2j6At2Hjkxntbt
GQIDAQAB
-----END PUBLIC KEY-----
",
2016-12-31 09:39:31 +01:00
}
}
);
}
2016-12-31 15:40:26 +01:00
2017-01-02 21:35:37 +01:00
sub rp {
2016-12-31 15:40:26 +01:00
my ( $jwks, $metadata ) = @_;
return LLNG::Manager::Test->new(
{
ini => {
logLevel => $debug,
domain => 'rp.com',
portal => 'http://auth.rp.com',
authentication => 'OpenIDConnect',
userDB => 'Same',
2016-12-31 15:40:26 +01:00
oidcOPMetaDataExportedVars => {
op => {
cn => "name",
uid => "sub",
sn => "family_name",
mail => "email"
}
},
oidcOPMetaDataOptions => {
op => {
oidcOPMetaDataOptionsJWKSTimeout => 0,
oidcOPMetaDataOptionsClientSecret => "rpsecret",
oidcOPMetaDataOptionsScope => "openid profile",
oidcOPMetaDataOptionsStoreIDToken => 0,
oidcOPMetaDataOptionsDisplay => "",
oidcOPMetaDataOptionsClientID => "rpid",
oidcOPMetaDataOptionsConfigurationURI =>
"https://auth.op.com/.well-known/openid-configuration"
}
},
oidcOPMetaDataJWKS => {
op => $jwks,
},
oidcOPMetaDataJSON => {
op => $metadata,
}
}
}
);
}