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.
147 lines
5.5 KiB
147 lines
5.5 KiB
use Test::More;
|
|
use strict;
|
|
use IO::String;
|
|
|
|
BEGIN {
|
|
require 't/test-lib.pm';
|
|
eval "use GSSAPI";
|
|
}
|
|
|
|
my $res;
|
|
my $maintests = 21;
|
|
|
|
my $userdb = tempdb();
|
|
|
|
SKIP: {
|
|
eval { require DBI; require DBD::SQLite; require GSSAPI; };
|
|
if ($@) {
|
|
skip 'Missing dependencies', $maintests;
|
|
}
|
|
my $dbh = DBI->connect("dbi:SQLite:dbname=$userdb");
|
|
$dbh->do('CREATE TABLE users (user text,password text,name text)');
|
|
$dbh->do("INSERT INTO users VALUES ('dwho','dwho','Doctor who')");
|
|
|
|
my $client = LLNG::Manager::Test->new( {
|
|
ini => {
|
|
logLevel => 'error',
|
|
useSafeJail => 1,
|
|
portalMainLogo => 'common/logos/logo_llng_old.png',
|
|
authentication => 'Choice',
|
|
userDB => 'Same',
|
|
|
|
authChoiceParam => 'test',
|
|
authChoiceModules => {
|
|
'1_demo' => 'Demo;Demo;Null;;0',
|
|
'2_sql' => 'DBI;DBI;DBI;;1',
|
|
'3_demo' =>
|
|
'Demo;Demo;Null;https://test.example.com;$env->{ipAddr} =~ /127.0.0.1/',
|
|
'4_demo' =>
|
|
'Demo;Demo;Null;https://test.example.com;$env->{ipAddr} =~ /1.2.3.4/',
|
|
'5_ssl' => 'SSL;Demo;Demo',
|
|
'6_FakeCustom' => 'Custom;Demo;Demo',
|
|
'7_Kerberos' => 'Kerberos;Null;Null',
|
|
},
|
|
|
|
dbiAuthChain => "dbi:SQLite:dbname=$userdb",
|
|
dbiAuthUser => '',
|
|
dbiAuthPassword => '',
|
|
dbiAuthTable => 'users',
|
|
dbiAuthLoginCol => 'user',
|
|
dbiAuthPasswordCol => 'password',
|
|
dbiAuthPasswordHash => '',
|
|
customAuth => '::Auth::Apache',
|
|
customAddParams => {},
|
|
sslByAjax => 1,
|
|
sslHost => 'https://authssl.example.com:19876',
|
|
krbKeytab => '/etc/keytab',
|
|
krbByJs => 1,
|
|
krbAuthnLevel => 4,
|
|
}
|
|
}
|
|
);
|
|
|
|
ok( $res = $client->_get( '/', accept => 'text/html' ), 'Get Menu' );
|
|
ok( $res->[2]->[0] !~ /1_demo/, '1_demo not displayed' );
|
|
ok( $res->[2]->[0] =~ /2_sql/, '2_sql displayed' );
|
|
ok( $res->[2]->[0] =~ /3_demo/, '3_demo displayed' );
|
|
ok( $res->[2]->[0] =~ /5_ssl/, '5_ssl displayed' );
|
|
ok( $res->[2]->[0] =~ /6_FakeCustom/, '6_FakeCustom displayed' );
|
|
ok( $res->[2]->[0] =~ /7_Kerberos/, '7_Kerberos displayed' );
|
|
ok( $res->[2]->[0] =~ qr%<img src="/static/common/modules/SSL.png"%,
|
|
'Found 5_ssl Logo' )
|
|
or explain( $res->[2]->[0], '<img src="/static/common/modules/SSL.png' );
|
|
ok( $res->[2]->[0] =~ qr%img src="/static/common/modules/Apache.png"%,
|
|
'Found 6_FakeCustom Logo' )
|
|
or
|
|
explain( $res->[2]->[0], '<img src="/static/common/modules/Apache.png' );
|
|
ok( $res->[2]->[0] =~ qr%<img src="/static/common/modules/Kerberos.png"%,
|
|
'Found 7_Kerberos Logo' )
|
|
or explain( $res->[2]->[0],
|
|
'<img src="/static/common/modules/Kerberos.png' );
|
|
ok(
|
|
$res->[2]->[0] =~
|
|
m%<form id="lformDemo" action="https://test.example.com"%,
|
|
' Redirect URL found'
|
|
)
|
|
or explain( $res->[2]->[0],
|
|
'<form id="lformDemo" action="https://test.example.com"' );
|
|
ok(
|
|
$res->[2]->[0] =~
|
|
m%<script type="application/init">\s*\{"sslHost":"https://authssl.example.com:19876"\}\s*</script>%s,
|
|
' SSL AJAX URL found'
|
|
)
|
|
or
|
|
explain( $res->[2]->[0], '<script type="application/init">\{"sslHost"' );
|
|
expectForm( $res, '#', undef, 'kerberos' );
|
|
ok(
|
|
$res->[2]->[0] =~ m%<input type="hidden" name="kerberos" value="0" />%,
|
|
'Found hidden attribut "kerberos" with value="0"'
|
|
) or explain( $res->[2]->[0], '<input type="hidden" name="kerberos"' );
|
|
ok( $res->[2]->[0] =~ /kerberosChoice\.(?:min\.)?js/,
|
|
'Get Kerberos javascript' )
|
|
or explain( $res->[2]->[0], 'kerberosChoice.(min.)?js' );
|
|
ok(
|
|
$res->[2]->[0] =~
|
|
m%<form id="lformKerberos" action="#" method="post" class="login Kerberos">%,
|
|
' Redirect URL found'
|
|
) or explain( $res->[2]->[0], '<form id="lformKerberos"' );
|
|
ok( $res->[2]->[0] =~ /sslChoice\.(?:min\.)?js/,
|
|
'Get sslChoice javascript' )
|
|
or explain( $res->[2]->[0], 'sslChoice.(min.)?js' );
|
|
ok(
|
|
$res->[2]->[0] =~
|
|
m%<form id="lformSSL" action="#" method="post" class="login SSL">%,
|
|
' Action # found'
|
|
) or explain( $res->[2]->[0], '<form id="lformSSL"' );
|
|
my $header = getHeader( $res, 'Content-Security-Policy' );
|
|
ok( $header =~ m%;form-action \* https://test.example.com;%,
|
|
' CSP URL found' )
|
|
or explain( $res->[1], 'form-action * https://test.example.com;' );
|
|
ok( $res->[2]->[0] !~ /4_demo/, '4_Demo not displayed' );
|
|
ok(
|
|
$res->[2]->[0] =~ qr%<img src="/static/common/logos/logo_llng_old.png"%,
|
|
'Found custom Main Logo'
|
|
)
|
|
or explain( $res->[2]->[0],
|
|
'<img src="/static/common/logos/logo_llng_old.png"' );
|
|
|
|
# Test SQL
|
|
my $postString = 'user=dwho&password=dwho&test=2_sql';
|
|
|
|
# Try to authenticate
|
|
# -------------------
|
|
ok(
|
|
$res = $client->_post(
|
|
'/', IO::String->new($postString),
|
|
length => length($postString)
|
|
),
|
|
'Auth query'
|
|
);
|
|
expectOK($res);
|
|
my $id = expectCookie($res);
|
|
$client->logout($id);
|
|
clean_sessions();
|
|
}
|
|
count($maintests);
|
|
clean_sessions();
|
|
done_testing( count() );
|
|
|