Bugzilla – Attachment 137705 Details for
Bug 30447
pendingreserves.pl is checking too many transfers
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30447: Unit tests
Bug-30447-Unit-tests.patch (text/plain), 5.68 KB, created by
Martin Renvoize (ashimema)
on 2022-07-14 09:50:55 UTC
(
hide
)
Description:
Bug 30447: Unit tests
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-07-14 09:50:55 UTC
Size:
5.68 KB
patch
obsolete
>From 6cd474c295d396246f1d4ebf2825899dd9d40370 Mon Sep 17 00:00:00 2001 >From: Michal Urban <michalurban177@gmail.com> >Date: Wed, 15 Jun 2022 04:04:37 -0400 >Subject: [PATCH] Bug 30447: Unit tests > >Added tests to ensure that Koha::Holds->get_items_that_can_fill returns items with datecancelled and datearrived >Added test for correct number of items for each call of "get_items_that_fill" > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > t/db_dependent/Holds.t | 96 +++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 94 insertions(+), 2 deletions(-) > >diff --git a/t/db_dependent/Holds.t b/t/db_dependent/Holds.t >index 8a19f019bb..41e652c733 100755 >--- a/t/db_dependent/Holds.t >+++ b/t/db_dependent/Holds.t >@@ -7,7 +7,7 @@ use t::lib::TestBuilder; > > use C4::Context; > >-use Test::More tests => 74; >+use Test::More tests => 75; > use Test::Exception; > > use MARC::Record; >@@ -22,13 +22,15 @@ use Koha::Biblios; > use Koha::CirculationRules; > use Koha::Database; > use Koha::DateUtils qw( dt_from_string output_pref ); >-use Koha::Holds; >+use Koha::Holds qw( search ); > use Koha::Checkout; > use Koha::Item::Transfer::Limits; > use Koha::Items; > use Koha::Libraries; > use Koha::Library::Groups; > use Koha::Patrons; >+use Koha::Hold qw( get_items_that_can_fill ); >+use Koha::Item::Transfers; > > BEGIN { > use FindBin; >@@ -1702,3 +1704,93 @@ subtest 'ModReserve can only update expirationdate for found holds' => sub { > $schema->storage->txn_rollback; > > }; >+ >+subtest 'Koha::Holds->get_items_that_can_fill returns items with datecancelled or (inclusive) datearrived' => sub { >+ plan tests => 8; >+ # biblio item with date arrived and date cancelled >+ my $biblio1 = $builder->build_sample_biblio(); >+ my $item1 = $builder->build_sample_item({ biblionumber => $biblio1->biblionumber }); >+ >+ my $transfer1 = $builder->build_object({ class => "Koha::Item::Transfers", value => { >+ datecancelled => '2022-06-12', >+ itemnumber => $item1->itemnumber >+ }}); >+ >+ my $hold1 = $builder->build_object({ class => 'Koha::Holds', value => { >+ biblionumber => $biblio1->biblionumber, >+ itemnumber => undef, >+ itemtype => undef, >+ found => undef >+ }}); >+ >+ # biblio item with date arrived and NO date cancelled >+ my $biblio2 = $builder->build_sample_biblio(); >+ my $item2 = $builder->build_sample_item({ biblionumber => $biblio2->biblionumber }); >+ >+ my $transfer2 = $builder->build_object({ class => "Koha::Item::Transfers", value => { >+ datecancelled => undef, >+ itemnumber => $item2->itemnumber >+ }}); >+ >+ my $hold2 = $builder->build_object({ class => 'Koha::Holds', value => { >+ biblionumber => $biblio2->biblionumber, >+ itemnumber => undef, >+ itemtype => undef, >+ found => undef >+ }}); >+ >+ # biblio item with NO date arrived and date cancelled >+ my $biblio3 = $builder->build_sample_biblio(); >+ my $item3 = $builder->build_sample_item({ biblionumber => $biblio3->biblionumber }); >+ >+ my $transfer3 = $builder->build_object({ class => "Koha::Item::Transfers", value => { >+ datecancelled => '2022-06-12', >+ itemnumber => $item3->itemnumber, >+ datearrived => undef >+ }}); >+ >+ my $hold3 = $builder->build_object({ class => 'Koha::Holds', value => { >+ biblionumber => $biblio3->biblionumber, >+ itemnumber => undef, >+ itemtype => undef, >+ found => undef >+ }}); >+ >+ >+ # biblio item with NO date arrived and NO date cancelled >+ my $biblio4 = $builder->build_sample_biblio(); >+ my $item4 = $builder->build_sample_item({ biblionumber => $biblio4->biblionumber }); >+ >+ my $transfer4 = $builder->build_object({ class => "Koha::Item::Transfers", value => { >+ datecancelled => undef, >+ itemnumber => $item4->itemnumber, >+ datearrived => undef >+ }}); >+ >+ my $hold4 = $builder->build_object({ class => 'Koha::Holds', value => { >+ biblionumber => $biblio4->biblionumber, >+ itemnumber => undef, >+ itemtype => undef, >+ found => undef >+ }}); >+ >+ # create the holds which get_items_that_can_fill will be ran on >+ my $holds1 = Koha::Holds->search({reserve_id => $hold1->id}); >+ my $holds2 = Koha::Holds->search({reserve_id => $hold2->id}); >+ my $holds3 = Koha::Holds->search({reserve_id => $hold3->id}); >+ my $holds4 = Koha::Holds->search({reserve_id => $hold4->id}); >+ >+ my $items_that_can_fill1 = $holds1->get_items_that_can_fill; >+ my $items_that_can_fill2 = $holds2->get_items_that_can_fill; >+ my $items_that_can_fill3 = $holds3->get_items_that_can_fill; >+ my $items_that_can_fill4 = $holds4->get_items_that_can_fill; >+ >+ is($items_that_can_fill1->next->id, $item1->id, "Koha::Holds->get_items_that_can_fill returns item with defined datearrived and datecancelled"); >+ is($items_that_can_fill1->count, 1, "Koha::Holds->get_items_that_can_fill returns 1 item with correct parameters"); >+ is($items_that_can_fill2->next->id, $item2->id, "Koha::Holds->get_items_that_can_fill returns item with defined datearrived and undefined datecancelled"); >+ is($items_that_can_fill2->count, 1, "Koha::Holds->get_items_that_can_fill returns 1 item with correct parameters"); >+ is($items_that_can_fill3->next->id, $item3->id, "Koha::Holds->get_items_that_can_fill returns item with undefined datearrived and defined datecancelled"); >+ is($items_that_can_fill3->count, 1, "Koha::Holds->get_items_that_can_fill returns 1 item with correct parameters"); >+ is($items_that_can_fill4->next, undef, "Koha::Holds->get_items_that_can_fill doesn't return item with undefined datearrived and undefined datecancelled"); >+ is($items_that_can_fill4->count, 0, "Koha::Holds->get_items_that_can_fill returns 0 item"); >+} >-- >2.20.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 30447
:
132935
|
132941
|
136184
|
136185
|
136186
|
136187
|
136198
|
136199
|
136200
|
136201
|
137704
| 137705