Bugzilla – Attachment 161541 Details for
Bug 35918
Incorrect library used when AutoLocation configured using the same IP
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35918: Add test
Bug-35918-Add-test.patch (text/plain), 1.27 KB, created by
Magnus Enger
on 2024-01-26 14:37:37 UTC
(
hide
)
Description:
Bug 35918: Add test
Filename:
MIME Type:
Creator:
Magnus Enger
Created:
2024-01-26 14:37:37 UTC
Size:
1.27 KB
patch
obsolete
>From fe43d792a93fc94061cd4b7305e5dffb7c890d8f Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 26 Jan 2024 08:57:03 +0100 >Subject: [PATCH] Bug 35918: Add test > >Signed-off-by: Magnus Enger <magnus@libriotech.no> >--- > t/db_dependent/Auth.t | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Auth.t b/t/db_dependent/Auth.t >index 673f61782c..85aad99bde 100755 >--- a/t/db_dependent/Auth.t >+++ b/t/db_dependent/Auth.t >@@ -1026,7 +1026,7 @@ subtest 'get_cataloguing_page_permissions() tests' => sub { > > subtest 'AutoLocation' => sub { > >- plan tests => 6; >+ plan tests => 7; > > $schema->storage->txn_begin; > >@@ -1071,6 +1071,13 @@ subtest 'AutoLocation' => sub { > is( $userid, $patron->userid ); > is( $template, undef ); > >+ my $other_library = $builder->build_object( { class => 'Koha::Libraries', value => { branchip => '127.0.0.1' } } ); >+ $patron->library->branchip('127.0.0.1')->store; >+ ( $userid, $cookie, $sessionID, $flags, $template ) = >+ C4::Auth::checkauth( $cgi, 0, { catalogue => 1 }, 'intranet' ); >+ my $session = C4::Auth::get_session($sessionID); >+ is( $session->param('branch'), $patron->branchcode ); >+ > $schema->storage->txn_rollback; > > }; >-- >2.34.1
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 35918
:
161481
|
161482
|
161541
|
161542
|
162155
|
162156