1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
# Base library for tests
use strict;
use 5.10.0;
use POSIX 'strftime';
use Data::Dumper;
use Time::Fake;
use_ok('Lemonldap::NG::Common::PSGI::Cli::Lib');
our $client;
our $count = 1;
no warnings 'redefine';
my $module;
our $sessionId =
'f5eec18ebb9bc96352595e2d8ce962e8ecf7af7c9a98cb9a43f9cd181cf4b545';
our $file = "t/sessions/$sessionId";
sub init {
my ( $arg, $prms ) = @_;
if ($arg) {
$module = $arg;
use_ok($module);
}
$prms ||= {};
%$prms = (
configStorage => { type => 'File', dirName => 't' },
localSessionStorage => '',
logLevel => 'error',
cookieName => 'lemonldap',
securedCookie => 0,
https => 0,
hiddenAttributes => 'mail cn',
logger => 'Lemonldap::NG::Common::Logger::Std',
%$prms
);
ok(
$client =
Lemonldap::NG::Handler::PSGI::Cli::Lib->new( { ini => $prms } ),
'Client object'
);
ok( $client->app, 'App object' ) or explain( $client, '->app...' );
count(3);
my $now = time;
my $ts = strftime "%Y%m%d%H%M%S", localtime;
my $sessionData = {
'_timezone' => '1',
'groups' => 'users; timelords',
'uid' => 'dwho',
'_loginHistory' => {
'successLogin' => [ {
'_utime' => $now,
'ipAddr' => '127.0.0.1'
}
]
},
'cn' => 'Doctor Who',
'_lastAuthnUTime' => $now,
'_whatToTrace' => 'dwho',
'_issuerDB' => 'Null',
'_startTime' => "$ts",
'_user' => 'dwho',
'_updateTime' => "$ts",
'_userDB' => 'Demo',
'hGroups' => {
'users' => {},
'timelords' => {}
},
'ipAddr' => '127.0.0.1',
'mail' => 'dwho@badwolf.org',
'authenticationLevel' => 1,
'_utime' => $now,
'_passwordDB' => 'Demo',
'_auth' => 'Demo',
'UA' =>
'Mozilla/5.0 (X11; VAX4000; rv:43.0) Gecko/20100101 Firefox/143.0 Iceweasel/143.0.1'
};
my $as = Lemonldap::NG::Common::Session->new( {
hashStore => $ENV{LLNG_HASHED_SESSION_STORE},
storageModule => 'Apache::Session::File',
storageModuleOptions => { Directory => 't/sessions' },
id => $sessionId,
force => 1,
kind => 'SSO',
info => $sessionData,
}
);
}
sub client {
return $client;
}
sub module {
if ( my $arg = shift ) {
$module = $arg;
}
return $module;
}
sub count {
my $c = shift;
$count += $c if ($c);
return $count;
}
sub explain {
my ( $get, $ref ) = @_;
$get = Dumper($get) if ( ref $get );
print STDERR "Expect $ref, get $get\n";
}
sub clean {
unlink glob 't/sessions/*';
unlink glob 't/sessions/lock/*';
}
package Lemonldap::NG::Handler::PSGI::Cli::Lib;
use Mouse;
extends 'Lemonldap::NG::Common::PSGI::Cli::Lib';
has ini => ( is => 'rw' );
has app => (
is => 'ro',
isa => 'CodeRef',
builder => sub {
return $module->run( $_[0]->{ini} );
}
);
sub _get {
my ( $self, $path, $query, $host, $cookie, %custom ) = @_;
$query //= '';
$host ||= 'test1.example.com';
return $self->app->( {
'HTTP_ACCEPT' => 'text/html',
'SCRIPT_NAME' => 'lmAuth',
'SERVER_NAME' => '127.0.0.1',
'QUERY_STRING' => $query,
'HTTP_CACHE_CONTROL' => 'max-age=0',
'HTTP_ACCEPT_LANGUAGE' => 'fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3',
'PATH_INFO' => $path,
'REQUEST_METHOD' => 'GET',
'HTTP_X_FORWARDED_URI' => '/lmauth',
'X_ORIGINAL_URI' => $path . ( $query ? "?$query" : '' ),
'SERVER_PORT' => '80',
'SERVER_PROTOCOL' => 'HTTP/1.1',
'HTTP_USER_AGENT' =>
'Mozilla/5.0 (VAX-4000; rv:36.0) Gecko/20350101 Firefox',
'REMOTE_ADDR' => '127.0.0.1',
'HTTP_X_FORWARDED_HOST' => $host,
( $cookie ? ( HTTP_COOKIE => $cookie ) : ( HTTP_COOKIE => '' ) ),
%custom,
}
);
}
1;
|