Bugzilla – Attachment 162158 Details for
Bug 36092
sessionID not passed to the template on auth.tt
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36092: Add test
Bug-36092-Add-test.patch (text/plain), 2.01 KB, created by
Kyle M Hall (khall)
on 2024-02-14 16:59:13 UTC
(
hide
)
Description:
Bug 36092: Add test
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2024-02-14 16:59:13 UTC
Size:
2.01 KB
patch
obsolete
>From 5feb7785a89d647caab1704eb0bd7a9574b1fbc1 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 14 Feb 2024 10:56:17 +0100 >Subject: [PATCH] Bug 36092: Add test > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > t/db_dependent/Auth.t | 30 +++++++++++++++++++++++++++--- > 1 file changed, 27 insertions(+), 3 deletions(-) > >diff --git a/t/db_dependent/Auth.t b/t/db_dependent/Auth.t >index 974538598ba..0a641600f03 100755 >--- a/t/db_dependent/Auth.t >+++ b/t/db_dependent/Auth.t >@@ -42,7 +42,7 @@ $schema->storage->txn_begin; > > subtest 'checkauth() tests' => sub { > >- plan tests => 10; >+ plan tests => 11; > > my $patron = $builder->build_object({ class => 'Koha::Patrons', value => { flags => undef } }); > >@@ -138,11 +138,35 @@ subtest 'checkauth() tests' => sub { > > }; > >- subtest 'Template params tests (password_expired)' => sub { >+ subtest 'sessionID should be passed to the template for auth' => sub { > > plan tests => 1; > >- my $password_expired; >+ subtest 'hit auth.tt' => sub { >+ >+ plan tests => 1; >+ >+ my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { flags => 0 } } ); >+ >+ my $password = set_weak_password($patron); >+ >+ my $cgi_mock = Test::MockModule->new('CGI'); >+ $cgi_mock->mock( 'request_method', sub { return 'POST' } ); >+ my $cgi = CGI->new; >+ >+ # Simulating the login form submission >+ $cgi->param( 'userid', $patron->userid ); >+ $cgi->param( 'password', $password ); >+ >+ my ( $userid, $cookie, $sessionID, $flags, $template ) = >+ C4::Auth::checkauth( $cgi, 0, { catalogue => 1 }, 'intranet', undef, undef, { do_not_print => 1 } ); >+ ok( $template->{VARS}->{sessionID} ); >+ }; >+ }; >+ >+ subtest 'Template params tests (password_expired)' => sub { >+ >+ plan tests => 1; > > my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); > >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 36092
:
162139
|
162140
|
162141
|
162142
|
162143
|
162144
|
162158
|
162160
|
162161
|
162189
|
162190
|
162191