Marcel de Rooy
a4e4c97521
Test plan: Run t/Token.t Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
58 lines
2.1 KiB
Perl
58 lines
2.1 KiB
Perl
#!/usr/bin/perl
|
|
|
|
# tests for Koha::Token
|
|
|
|
# Copyright 2016 Rijksmuseum
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with Koha; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
use Modern::Perl;
|
|
use Test::More tests => 8;
|
|
use Time::HiRes qw|usleep|;
|
|
use Koha::Token;
|
|
|
|
my $tokenizer = Koha::Token->new;
|
|
is( length( $tokenizer->generate ), 1, "Generate without parameters" );
|
|
my $token = $tokenizer->generate({ length => 20 });
|
|
is( length($token), 20, "Token $token has 20 chars" );
|
|
|
|
my $id = $tokenizer->generate({ length => 8 });
|
|
my $secr = $tokenizer->generate({ length => 32 });
|
|
my $csrftoken = $tokenizer->generate_csrf({ id => $id, secret => $secr });
|
|
isnt( length($csrftoken), 0, "Token $csrftoken should not be empty" );
|
|
|
|
is( $tokenizer->check, undef, "Check without any parameters" );
|
|
my $result = $tokenizer->check_csrf({
|
|
id => $id, secret => $secr, token => $csrftoken,
|
|
});
|
|
is( $result, 1, "CSRF token verified" );
|
|
|
|
$result = $tokenizer->check({
|
|
type => 'CSRF', id => $id, secret => $secr, token => $token,
|
|
});
|
|
isnt( $result, 1, "This token is no CSRF token" );
|
|
|
|
# Test MaxAge parameter
|
|
my $age = 1; # 1 second
|
|
$result = $tokenizer->check_csrf({
|
|
id => $id, secret => $secr, token => $csrftoken, MaxAge => $age,
|
|
});
|
|
is( $result, 1, "CSRF token still valid within one second" );
|
|
usleep $age * 1000000 * 2; # micro (millionth) seconds + 100%
|
|
$result = $tokenizer->check_csrf({
|
|
id => $id, secret => $secr, token => $csrftoken, MaxAge => $age,
|
|
});
|
|
isnt( $result, 1, "CSRF token expired after one second" );
|