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.
240 lines
9.0 KiB
240 lines
9.0 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/oidc-lib.pm';
|
|
}
|
|
|
|
my $debug = 'error';
|
|
my ( $op, $rp, $res );
|
|
|
|
LWP::Protocol::PSGI->register(
|
|
sub {
|
|
my $req = Plack::Request->new(@_);
|
|
ok( $req->uri =~ m#http://auth.((?:o|r)p).com(.*)#, ' REST request' );
|
|
my $host = $1;
|
|
my $url = $2;
|
|
my ( $res, $client );
|
|
count(1);
|
|
if ( $host eq 'op' ) {
|
|
pass(" Request from RP to OP, endpoint $url");
|
|
$client = $op;
|
|
}
|
|
elsif ( $host eq 'rp' ) {
|
|
pass(' Request from OP to RP');
|
|
$client = $rp;
|
|
}
|
|
else {
|
|
fail(' Aborting REST request (external)');
|
|
return [ 500, [], [] ];
|
|
}
|
|
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'),
|
|
),
|
|
' Execute request'
|
|
);
|
|
}
|
|
else {
|
|
ok(
|
|
$res = $client->_get(
|
|
$url,
|
|
custom => {
|
|
HTTP_AUTHORIZATION => $req->header('Authorization'),
|
|
}
|
|
),
|
|
' Execute request'
|
|
);
|
|
}
|
|
ok( $res->[0] == 200, ' Response is 200' );
|
|
ok( getHeader( $res, 'Content-Type' ) =~ m#^application/json#,
|
|
' Content is JSON' )
|
|
or explain( $res->[1], 'Content-Type => application/json' );
|
|
count(4);
|
|
return $res;
|
|
}
|
|
);
|
|
|
|
# Initialization
|
|
ok( $op = op(), 'OP portal' );
|
|
|
|
ok( $res = $op->_get('/oauth2/jwks'), 'Get JWKS, endpoint /oauth2/jwks' );
|
|
expectOK($res);
|
|
my $jwks = $res->[2]->[0];
|
|
|
|
ok(
|
|
$res = $op->_get('/.well-known/openid-configuration'),
|
|
'Get metadata, endpoint /.well-known/openid-configuration'
|
|
);
|
|
expectOK($res);
|
|
my $metadata = $res->[2]->[0];
|
|
count(3);
|
|
|
|
switch ('rp');
|
|
&Lemonldap::NG::Handler::Main::cfgNum( 0, 0 );
|
|
ok( $rp = rp( $jwks, $metadata ), 'RP portal' );
|
|
count(1);
|
|
|
|
# Query RP for auth
|
|
ok( $res = $rp->_get( '/', accept => 'text/html' ), 'Unauth SP request' );
|
|
count(1);
|
|
|
|
# OIDC idp must be sorted
|
|
my @idp = map /idploop py-3" val="(.+?)">/g, $res->[2]->[0];
|
|
ok( $idp[0] eq 'op2', '1st = op2' ) or print STDERR Dumper( \@idp );
|
|
ok( $idp[1] eq 'op3', '2nd = op3' ) or print STDERR Dumper( \@idp );
|
|
ok( $idp[2] eq 'op', '3rd = op' ) or print STDERR Dumper( \@idp );
|
|
count(3);
|
|
|
|
# Found OIDC idp logo and display name
|
|
ok(
|
|
$res->[2]->[0] =~
|
|
qr%<img src="http://auth.rp.com/static/common/icons/sfa_manager.png" class="mr-2" alt="op2" title="op2" />%,
|
|
'Found OIDC idp logo'
|
|
) or print STDERR Dumper( $res->[2]->[0] );
|
|
ok( $res->[2]->[0] =~ qr%idpOPtest%, 'Found OIDC idp display name' )
|
|
or print STDERR Dumper( $res->[2]->[0] );
|
|
count(2);
|
|
clean_sessions();
|
|
done_testing( count() );
|
|
|
|
sub op {
|
|
return LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => $debug,
|
|
domain => 'idp.com',
|
|
portal => 'http://auth.op.com',
|
|
authentication => 'Demo',
|
|
userDB => 'Same',
|
|
issuerDBOpenIDConnectActivation => "1",
|
|
oidcRPMetaDataExportedVars => {
|
|
rp => {
|
|
email => "mail",
|
|
family_name => "cn",
|
|
name => "cn"
|
|
}
|
|
},
|
|
oidcServiceAllowHybridFlow => 1,
|
|
oidcServiceAllowImplicitFlow => 1,
|
|
oidcServiceAllowAuthorizationCodeFlow => 1,
|
|
oidcRPMetaDataOptions => {
|
|
rp => {
|
|
oidcRPMetaDataOptionsDisplayName => "RP",
|
|
oidcRPMetaDataOptionsIDTokenExpiration => 3600,
|
|
oidcRPMetaDataOptionsClientID => "rpid",
|
|
oidcRPMetaDataOptionsIDTokenSignAlg => "HS512",
|
|
oidcRPMetaDataOptionsBypassConsent => 0,
|
|
oidcRPMetaDataOptionsClientSecret => "rpsecret",
|
|
oidcRPMetaDataOptionsUserIDAttr => "",
|
|
oidcRPMetaDataOptionsAccessTokenExpiration => 3600
|
|
}
|
|
},
|
|
oidcOPMetaDataOptions => {},
|
|
oidcOPMetaDataJSON => {},
|
|
oidcOPMetaDataJWKS => {},
|
|
oidcServiceMetaDataAuthnContext => {
|
|
'loa-4' => 4,
|
|
'loa-1' => 1,
|
|
'loa-5' => 5,
|
|
'loa-2' => 2,
|
|
'loa-3' => 3
|
|
},
|
|
oidcServicePrivateKeySig => oidc_key_op_private_sig,
|
|
oidcServicePublicKeySig => oidc_key_op_public_sig,
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
sub rp {
|
|
my ( $jwks, $metadata ) = @_;
|
|
return LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => $debug,
|
|
domain => 'rp.com',
|
|
portal => 'http://auth.rp.com',
|
|
authentication => 'OpenIDConnect',
|
|
userDB => 'Same',
|
|
oidcOPMetaDataExportedVars => {
|
|
op => {
|
|
cn => "name",
|
|
uid => "sub",
|
|
sn => "family_name",
|
|
mail => "email"
|
|
},
|
|
op2 => {
|
|
cn => "name",
|
|
uid => "sub",
|
|
sn => "family_name",
|
|
mail => "email"
|
|
},
|
|
op3 => {
|
|
cn => "name",
|
|
uid => "sub",
|
|
sn => "family_name",
|
|
mail => "email"
|
|
}
|
|
},
|
|
oidcOPMetaDataOptions => {
|
|
op => {
|
|
oidcOPMetaDataOptionsCheckJWTSignature => 1,
|
|
oidcOPMetaDataOptionsJWKSTimeout => 0,
|
|
oidcOPMetaDataOptionsClientSecret => "rpsecret",
|
|
oidcOPMetaDataOptionsScope => "openid profile",
|
|
oidcOPMetaDataOptionsStoreIDToken => 0,
|
|
oidcOPMetaDataOptionsDisplay => "",
|
|
oidcOPMetaDataOptionsClientID => "rpid",
|
|
oidcOPMetaDataOptionsDisplayName => 'idpOPtest',
|
|
oidcOPMetaDataOptionsSortNumber => '3',
|
|
oidcOPMetaDataOptionsConfigurationURI =>
|
|
"https://auth.op.com/.well-known/openid-configuration"
|
|
},
|
|
op2 => {
|
|
oidcOPMetaDataOptionsCheckJWTSignature => 1,
|
|
oidcOPMetaDataOptionsJWKSTimeout => 0,
|
|
oidcOPMetaDataOptionsClientSecret => "rpsecret",
|
|
oidcOPMetaDataOptionsScope => "openid profile",
|
|
oidcOPMetaDataOptionsStoreIDToken => 0,
|
|
oidcOPMetaDataOptionsDisplay => "",
|
|
oidcOPMetaDataOptionsIcon => 'icons/sfa_manager.png',
|
|
oidcOPMetaDataOptionsClientID => "rpid",
|
|
oidcOPMetaDataOptionsConfigurationURI =>
|
|
"https://auth.op.com/.well-known/openid-configuration"
|
|
},
|
|
op3 => {
|
|
oidcOPMetaDataOptionsCheckJWTSignature => 1,
|
|
oidcOPMetaDataOptionsJWKSTimeout => 0,
|
|
oidcOPMetaDataOptionsClientSecret => "rpsecret",
|
|
oidcOPMetaDataOptionsScope => "openid profile",
|
|
oidcOPMetaDataOptionsStoreIDToken => 0,
|
|
oidcOPMetaDataOptionsDisplay => "",
|
|
oidcOPMetaDataOptionsSortNumber => '1',
|
|
oidcOPMetaDataOptionsClientID => "rpid",
|
|
oidcOPMetaDataOptionsConfigurationURI =>
|
|
"https://auth.op.com/.well-known/openid-configuration"
|
|
}
|
|
},
|
|
oidcOPMetaDataJWKS => {
|
|
op => $jwks,
|
|
op2 => $jwks,
|
|
op3 => $jwks,
|
|
},
|
|
oidcOPMetaDataJSON => {
|
|
op => $metadata,
|
|
op2 => $metadata,
|
|
op3 => $metadata,
|
|
}
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|