Bugzilla – Attachment 109438 Details for
Bug 21284
ILS-DI: Allow GetPatronInfo to tell if a checked out item is on hold for someone else
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21284: Unit tests
Bug-21284-Unit-tests.patch (text/plain), 5.58 KB, created by
Fridolin Somers
on 2020-09-01 14:18:03 UTC
(
hide
)
Description:
Bug 21284: Unit tests
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2020-09-01 14:18:03 UTC
Size:
5.58 KB
patch
obsolete
>From f051192415ce39a064e627fdd34487fee7f0bc51 Mon Sep 17 00:00:00 2001 >From: Matthias Meusburger <matthias.meusburger@biblibre.com> >Date: Tue, 31 Jul 2018 11:26:29 +0200 >Subject: [PATCH] Bug 21284: Unit tests > >--- > t/db_dependent/ILSDI_Services.t | 121 +++++++++++++++++++++++++++++++- > 1 file changed, 120 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/ILSDI_Services.t b/t/db_dependent/ILSDI_Services.t >index 3b599b67f0..d355a597d3 100644 >--- a/t/db_dependent/ILSDI_Services.t >+++ b/t/db_dependent/ILSDI_Services.t >@@ -19,10 +19,12 @@ use Modern::Perl; > > use CGI qw ( -utf8 ); > >-use Test::More tests => 10; >+use Test::More tests => 11; > use Test::MockModule; > use t::lib::Mocks; > use t::lib::TestBuilder; >+use C4::Circulation; >+use C4::Reserves; > > use C4::Items qw( ModItemTransfer ); > use C4::Circulation; >@@ -37,6 +39,16 @@ my $schema = Koha::Database->schema; > my $dbh = C4::Context->dbh; > my $builder = t::lib::TestBuilder->new; > >+# Mock userenv >+local $SIG{__WARN__} = sub { warn $_[0] unless $_[0] =~ /redefined/ }; >+my $userenv; >+*C4::Context::userenv = \&Mock_userenv; >+ >+# C4::Context->userenv >+sub Mock_userenv { >+ return $userenv; >+} >+ > subtest 'AuthenticatePatron test' => sub { > > plan tests => 14; >@@ -103,6 +115,113 @@ subtest 'AuthenticatePatron test' => sub { > $schema->storage->txn_rollback; > }; > >+subtest 'GetPatronInfo test for holds' => sub { >+ plan tests => 8; >+ >+ $schema->storage->txn_begin; >+ $schema->resultset( 'Issue' )->delete_all; >+ $schema->resultset( 'Reserve' )->delete_all; >+ $schema->resultset( 'Borrower' )->delete_all; >+ $schema->resultset( 'Category' )->delete_all; >+ $schema->resultset( 'Item' )->delete_all; # 'Branch' deps. on this >+ $schema->resultset( 'Branch' )->delete_all; >+ >+ # Configure Koha to enable ILS-DI server >+ t::lib::Mocks::mock_preference( 'ILS-DI', 1 ); >+ >+ # Set up a library/branch for our user to belong to: >+ my $branchcode = 'T_ILSDI'; >+ my $lib = $builder->build( { >+ source => 'Branch', >+ value => { >+ branchcode => $branchcode, >+ } >+ } ); >+ >+ # Create a new category for user to belong to: >+ my $cat = $builder->build( { >+ source => 'Category', >+ value => { >+ category_type => 'A', >+ BlockExpiredPatronOpacActions => -1, >+ } >+ } ); >+ >+ # Create new users: >+ my $brwr = $builder->build( { >+ source => 'Borrower', >+ value => { >+ categorycode => $cat->{'categorycode'}, >+ branchcode => $lib->{'branchcode'}, >+ } >+ } ); >+ my $brwr2 = $builder->build( { >+ source => 'Borrower', >+ value => { >+ categorycode => $cat->{'categorycode'}, >+ branchcode => $lib->{'branchcode'}, >+ } >+ } ); >+ my $brwr3 = $builder->build( { >+ source => 'Borrower', >+ value => { >+ categorycode => $cat->{'categorycode'}, >+ branchcode => $lib->{'branchcode'}, >+ } >+ } ); >+ >+ >+ # Place a loan >+ my $biblio = $builder->build( { source => 'Biblio', } ); >+ my $item = $builder->build( { source => 'Item', value => { biblionumber => $biblio->{biblionumber}, barcode => "mybarcode"} } ); >+ my $biblioitem = $builder->build( { source => 'Biblioitem', value => { biblionumber => $biblio->{biblionumber} } } ); >+ $userenv = { flags => 1, id => $brwr->{borrowernumber}, branch => 'T_ILSDI' }; >+ my $issue = AddIssue($brwr, $item->{barcode}); >+ >+ # Prepare and send web request for IL-SDI server: >+ my $query = new CGI; >+ $query->param( 'service', 'GetPatronInfo' ); >+ $query->param( 'patron_id', $brwr->{'borrowernumber'} ); >+ $query->param( 'show_attributes', '0' ); >+ $query->param( 'show_loans', '1' ); >+ my $reply = C4::ILSDI::Services::GetPatronInfo( $query ); >+ >+ # Check that this loan is not on hold >+ is ( $reply->{loans}->{loan}[0]->{recordonhold}, "0", "Record is not on hold"); >+ is ( $reply->{loans}->{loan}[0]->{itemonhold}, "0", "Item is not on hold"); >+ >+ # Add a hold on the biblio >+ my $biblioreserve = AddReserve($branchcode, $brwr2->{'borrowernumber'}, $biblio->{biblionumber}); >+ >+ # Check that it is on hold on biblio level >+ $reply = C4::ILSDI::Services::GetPatronInfo( $query ); >+ is ( $reply->{loans}->{loan}[0]->{recordonhold}, "1", "Record is on hold"); >+ is ( $reply->{loans}->{loan}[0]->{itemonhold}, "0", "Item is on hold"); >+ >+ # Delete holds >+ $schema->resultset( 'Reserve' )->delete_all; >+ >+ # Add a hold on the item >+ my $itemreserve = AddReserve($branchcode, $brwr2->{'borrowernumber'}, $biblio->{biblionumber}, >+ [$biblio->{biblionumber}], undef, undef, undef, undef, undef, $item->{itemnumber}); >+ >+ # When a specific item has a reserve, the item is on hold as well as the record >+ $reply = C4::ILSDI::Services::GetPatronInfo( $query ); >+ is ( $reply->{loans}->{loan}[0]->{recordonhold}, "1", "Record is on hold"); >+ is ( $reply->{loans}->{loan}[0]->{itemonhold}, "1", "Item is on hold"); >+ >+ # Add another hold on the biblio >+ $biblioreserve = AddReserve($branchcode, $brwr3->{'borrowernumber'}, $biblio->{biblionumber}); >+ >+ # Check that there are 2 holds on the biblio and 1 on this specific item >+ $reply = C4::ILSDI::Services::GetPatronInfo( $query ); >+ is ( $reply->{loans}->{loan}[0]->{recordonhold}, "2", "Record is on hold twice"); >+ is ( $reply->{loans}->{loan}[0]->{itemonhold}, "1", "Item is on hold"); >+ >+ # Cleanup >+ $schema->storage->txn_rollback; >+ >+}; > > subtest 'GetPatronInfo/GetBorrowerAttributes test for extended patron attributes' => sub { > >-- >2.27.0
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 21284
:
78268
|
78269
|
90326
|
109438
|
109439
|
157648
|
157727
|
157728
|
158351
|
158352
|
158353
|
158899