Bugzilla – Attachment 20140 Details for
Bug 10663
Holds never block renewals
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10663 - Unit tests for CanBookBeRenewed
Bug-10663---Unit-tests-for-CanBookBeRenewed.patch (text/plain), 5.64 KB, created by
Tomás Cohen Arazi (tcohen)
on 2013-08-06 21:51:27 UTC
(
hide
)
Description:
Bug 10663 - Unit tests for CanBookBeRenewed
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2013-08-06 21:51:27 UTC
Size:
5.64 KB
patch
obsolete
>From 74920920e5d4ee76bcf042f2dd03d32619714c1f Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >Date: Mon, 5 Aug 2013 15:26:56 -0300 >Subject: [PATCH] Bug 10663 - Unit tests for CanBookBeRenewed >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Initial work on unit tests for CanBookBeRenewed. More scenarios are needed. >Also made Circulation.t use autocommit=0. > >Sponsored-by: Universidad Nacional de Córdoba >--- > t/db_dependent/Circulation.t | 129 ++++++++++++++++++++++++++++++++++++++++--- > 1 file changed, 122 insertions(+), 7 deletions(-) > >diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t >index 31e5960..b1b4b11 100755 >--- a/t/db_dependent/Circulation.t >+++ b/t/db_dependent/Circulation.t >@@ -1,21 +1,36 @@ > #!/usr/bin/perl > >-use Test::More tests => 16; >+use Modern::Perl; >+ >+use DateTime; >+use C4::Biblio; >+use C4::Branch; >+use C4::Items; >+use C4::Members; >+use C4::Reserves; >+ >+use Test::More tests => 20; > > BEGIN { > use_ok('C4::Circulation'); > } > >+my $dbh = C4::Context->dbh; >+ >+# Start transaction >+$dbh->{AutoCommit} = 0; >+$dbh->{RaiseError} = 1; >+ > my $CircControl = C4::Context->preference('CircControl'); > my $HomeOrHoldingBranch = C4::Context->preference('HomeOrHoldingBranch'); > > my $item = { >- homebranch => 'ItemHomeBranch', >- holdingbranch => 'ItemHoldingBranch' >+ homebranch => 'MPL', >+ holdingbranch => 'MPL' > }; > > my $borrower = { >- branchcode => 'BorrowerBranch' >+ branchcode => 'MPL' > }; > > # No userenv, PickupLibrary >@@ -59,8 +74,8 @@ is( > > diag('Now, set a userenv'); > C4::Context->_new_userenv('xxx'); >-C4::Context::set_userenv(0,0,0,'firstname','surname', 'CurrentBranch', 'CurrentBranchName', '', '', ''); >-is(C4::Context->userenv->{branch}, 'CurrentBranch', 'userenv set'); >+C4::Context::set_userenv(0,0,0,'firstname','surname', 'MPL', 'Midway Public Library', '', '', ''); >+is(C4::Context->userenv->{branch}, 'MPL', 'userenv set'); > > # Userenv set, PickupLibrary > C4::Context->set_preference('CircControl', 'PickupLibrary'); >@@ -71,7 +86,7 @@ is( > ); > is( > C4::Circulation::_GetCircControlBranch($item, $borrower), >- 'CurrentBranch', >+ 'MPL', > '_GetCircControlBranch returned current branch' > ); > >@@ -125,3 +140,103 @@ ok( $new_count == $original_count + 1, 'ProcessOfflinePayment makes payment cor > > C4::Context->dbh->do("DELETE FROM accountlines WHERE borrowernumber IN ( SELECT borrowernumber FROM borrowers WHERE cardnumber = '99999999999' )"); > C4::Context->dbh->do("DELETE FROM borrowers WHERE cardnumber = '99999999999'"); >+ >+{ >+ # CanBookBeRenewed tests >+ >+ # Generate test biblio >+ my $biblio = MARC::Record->new(); >+ my $title = 'Silence in the library'; >+ $biblio->append_fields( >+ MARC::Field->new('100', ' ', ' ', a => 'Moffat, Steven'), >+ MARC::Field->new('245', ' ', ' ', a => $title), >+ ); >+ >+ my ($biblionumber, $biblioitemnumber); >+ ($biblionumber, $biblioitemnumber) = AddBiblio($biblio, ''); >+ >+ my $barcode = 'R00000342'; >+ my $branch = 'MPL'; >+ >+ my ($item_bibnum, $item_bibitemnum, $itemnumber) = >+ AddItem({ homebranch => $branch, >+ holdingbranch => $branch, >+ barcode => $barcode } , $biblionumber); >+ >+ # Create a borrower >+ my %renewing_borrower_data = ( >+ firstname => 'Renewal', >+ surname => 'John', >+ categorycode => 'S', >+ branchcode => $branch, >+ ); >+ >+ my %reserving_borrower_data = ( >+ firstname => 'Reservation', >+ surname => 'Katrin', >+ categorycode => 'S', >+ branchcode => $branch, >+ ); >+ >+ my $renewing_borrowernumber = AddMember(%renewing_borrower_data); >+ my $reserving_borrowernumber = AddMember(%reserving_borrower_data); >+ >+ my $renewing_borrower = GetMember( borrowernumber => $renewing_borrowernumber ); >+ >+ my $constraint = 'a'; >+ my $bibitems = ''; >+ my $priority = '1'; >+ my $resdate = undef; >+ my $expdate = undef; >+ my $notes = ''; >+ my $checkitem = undef; >+ my $found = undef; >+ >+ my $now = DateTime->now(); >+ my $cancelreserve = 1; >+ >+ AddIssue( $renewing_borrower, $barcode, $now, $cancelreserve, $now ); >+ >+# my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber); >+# is( $renewokay, 1, 'Can renew, book not reserved'); >+ >+ diag("Biblio-level reserve, renewal test"); >+ AddReserve( >+ $branch, $reserving_borrowernumber, $biblionumber, >+ $constraint, $bibitems, $priority, $resdate, $expdate, $notes, >+ $title, $checkitem, $found >+ ); >+ >+ my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber); >+ >+ is( $renewokay, 0, '(Bug 10663) Cannot renew, item reserved'); >+ is( $error, 'on_reserve', '(Bug 10663) Cannot renew, item reserved (returned error is on_reserve'); >+ >+ CancelReserve({ >+ biblionumber => $biblionumber, >+ borrowernumber => $reserving_borrowernumber, >+ }); >+ >+ >+ diag("Item-level reserve, renewal test"); >+ AddReserve( >+ $branch, $reserving_borrowernumber, $biblionumber, >+ $constraint, $bibitems, $priority, $resdate, $expdate, $notes, >+ $title, $itemnumber, $found >+ ); >+ >+ ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber); >+ >+ is( $renewokay, 0, '(Bug 10663) Cannot renew, item reserved'); >+ is( $error, 'on_reserve', '(Bug 10663) Cannot renew, item reserved (returned error is on_reserve'); >+ >+ CancelReserve({ >+ biblionumber => $biblionumber, >+ borrowernumber => $reserving_borrowernumber, >+ itemnumber => $itemnumber >+ }); >+ >+} >+ >+ >+$dbh->rollback; >-- >1.8.1.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 10663
:
19987
|
20129
|
20139
|
20140
|
20148
|
20149
|
20150
|
20151
|
20152
|
20153
|
20154
|
20155
|
20156
|
20362
|
20363
|
20364
|
22913