Refresh plugin (#2006)
parent
d01cfe94df
commit
5bb6f2fd3b
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,59 @@ |
||||
use Test::More; |
||||
use strict; |
||||
use IO::String; |
||||
|
||||
BEGIN { |
||||
require 't/test-lib.pm'; |
||||
} |
||||
|
||||
my $res; |
||||
|
||||
my $client = LLNG::Manager::Test->new( { |
||||
ini => { |
||||
logLevel => 'error', |
||||
authentication => 'Demo', |
||||
userDB => 'Same', |
||||
refreshSessions => 1, |
||||
restSessionServer => 1, |
||||
} |
||||
} |
||||
); |
||||
|
||||
my @ids; |
||||
foreach ( 1 .. 6 ) { |
||||
ok( |
||||
$res = $client->_post( |
||||
'/', |
||||
IO::String->new('user=dwho&password=dwho'), |
||||
length => 23, |
||||
), |
||||
"Auth query $_" |
||||
); |
||||
count(1); |
||||
push @ids, expectCookie($res); |
||||
} |
||||
|
||||
$Lemonldap::NG::Portal::UserDB::Demo::demoAccounts{dwho}->{uid} = 'Dr Who'; |
||||
|
||||
ok( |
||||
$res = $client->_post( |
||||
'/refreshsessions', IO::String->new('{"uid":"dwho"}'), |
||||
length => 14, |
||||
type => 'application/json', |
||||
), |
||||
'Call refresh' |
||||
); |
||||
count(1); |
||||
expectOK($res); |
||||
my $c = @ids; |
||||
ok( $res->[2]->[0] =~ /"updated":$c/, "Count is $c" ); |
||||
count(1); |
||||
|
||||
foreach (@ids) { |
||||
ok( $res = $client->_get("/sessions/global/$_"), 'Get session content' ); |
||||
ok( $res->[2]->[0] =~ /"uid":"Dr Who"/, ' Content is updated' ); |
||||
count(2); |
||||
} |
||||
|
||||
clean_sessions(); |
||||
done_testing( count() ); |
Loading…
Reference in new issue