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.
133 lines
3.2 KiB
133 lines
3.2 KiB
use Test::More;
|
|
use strict;
|
|
use IO::String;
|
|
|
|
require 't/test-lib.pm';
|
|
|
|
my $res;
|
|
|
|
my $client = LLNG::Manager::Test->new(
|
|
{ ini => { logLevel => 'error', useSafeJail => 1 } } );
|
|
|
|
# Test normal first access
|
|
# ------------------------
|
|
ok( $res = $client->_get('/'), 'Unauth JSON request' );
|
|
count(1);
|
|
expectReject($res);
|
|
|
|
# Test "first access" with good url
|
|
ok(
|
|
$res =
|
|
$client->_get( '/', query => 'url=aHR0cDovL3Rlc3QxLmV4YW1wbGUuY29tLw==' ),
|
|
'Unauth ajax request with good url'
|
|
);
|
|
count(1);
|
|
expectReject($res);
|
|
|
|
ok( $res = $client->_get( '/', accept => 'text/html' ), 'Get Menu' );
|
|
ok( $res->[2]->[0] =~ m%<span id="languages"></span>%, ' Language icons found' )
|
|
or print STDERR Dumper( $res->[2]->[0] );
|
|
count(2);
|
|
|
|
# Try to authenticate with unknown user
|
|
# -------------------------------------
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=jdoe&password=jdoe'),
|
|
accept => 'text/html',
|
|
length => 23
|
|
),
|
|
'Auth query'
|
|
);
|
|
count(1);
|
|
ok( $res->[2]->[0] =~ /<span trmsg="5"><\/span><\/div>/,
|
|
'jdoe rejected with PE_BADCREDENTIALS' )
|
|
or print STDERR Dumper( $res->[2]->[0] );
|
|
count(1);
|
|
ok( $res->[2]->[0] =~ m%<span trspan="connect">Connect</span>%,
|
|
'Found connect button' )
|
|
or print STDERR Dumper( $res->[2]->[0] );
|
|
count(1);
|
|
|
|
# Try to authenticate with bad password
|
|
# -------------------------------------
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=dwho&password=jdoe'),
|
|
accept => 'text/html',
|
|
length => 23
|
|
),
|
|
'Auth query'
|
|
);
|
|
count(1);
|
|
ok( $res->[2]->[0] =~ /<span trmsg="5"><\/span><\/div>/,
|
|
'dwho rejected with PE_BADCREDENTIALS' )
|
|
or print STDERR Dumper( $res->[2]->[0] );
|
|
count(1);
|
|
ok( $res->[2]->[0] =~ m%<span trspan="connect">Connect</span>%,
|
|
'Found connect button' )
|
|
or print STDERR Dumper( $res->[2]->[0] );
|
|
count(1);
|
|
|
|
# Try to authenticate with good password
|
|
# --------------------------------------
|
|
ok(
|
|
$res = $client->_post(
|
|
'/',
|
|
IO::String->new('user=dwho&password=dwho'),
|
|
length => 23,
|
|
),
|
|
'Auth query'
|
|
);
|
|
count(1);
|
|
expectOK($res);
|
|
my $id = expectCookie($res);
|
|
|
|
# Try to get a redirection for an auth user with a valid url
|
|
# ----------------------------------------------------------
|
|
ok(
|
|
$res = $client->_get(
|
|
'/',
|
|
query => 'url=aHR0cDovL3Rlc3QxLmV4YW1wbGUuY29tLw==',
|
|
cookie => "lemonldap=$id",
|
|
accept => 'text/html'
|
|
),
|
|
'Auth ajax request with good url'
|
|
);
|
|
count(1);
|
|
expectRedirection( $res, 'http://test1.example.com/' );
|
|
expectAuthenticatedAs( $res, 'dwho' );
|
|
|
|
# Try to get a redirection for an auth user with a bad url (host undeclared
|
|
# in manager)
|
|
# -------------------------------------------------------------------------
|
|
ok(
|
|
$res = $client->_get(
|
|
'/',
|
|
query => 'url=aHR0cHM6Ly90LmV4YW1wbGUuY29tLw==',
|
|
cookie => "lemonldap=$id",
|
|
accept => 'text/html'
|
|
),
|
|
'Auth request with bad url'
|
|
);
|
|
count(1);
|
|
expectOK($res);
|
|
expectAuthenticatedAs( $res, 'dwho' );
|
|
|
|
require 't/test-psgi.pm';
|
|
|
|
ok( $res = mirror( cookie => "lemonldap=$id" ), 'PSGI test' );
|
|
count(1);
|
|
expectOK($res);
|
|
expectAuthenticatedAs( $res, 'dwho' );
|
|
|
|
# Test logout
|
|
$client->logout($id);
|
|
|
|
#print STDERR Dumper($res);
|
|
|
|
clean_sessions();
|
|
|
|
done_testing( count() );
|
|
|