Bug 17603: Remove itemtype-related Borrower_Discharge.t warnings
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 9 Nov 2016 19:45:38 +0000 (16:45 -0300)
committerKyle M Hall <kyle@bywatersolutions.com>
Sat, 12 Nov 2016 02:38:19 +0000 (02:38 +0000)
This patch makes t/db_dependent/Patron/Borrower_Discharge.t create
good sample data for its tests. It does so by creating a random
itemtype.

To test:
- Run
  $ prove t/db_dependent/Patron/Borrower_Discharge.t
=> FAIL: lots of warnings about "item-level_itypes set but no itemtype
set for item"
- Apply the patch
- Run:
  $ prove t/db_dependent/Patron/Borrower_Discharge.t
=> SUCCESS: Tests are green, and no warnings.
- Sign off :-D

Sponsored-by: ByWater Solutions
Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
t/db_dependent/Patron/Borrower_Discharge.t

index d256f94..dbdd7af 100644 (file)
@@ -38,12 +38,9 @@ my $builder = t::lib::TestBuilder->new;
 my $dbh = C4::Context->dbh;
 $dbh->do(q|DELETE FROM discharges|);
 
-my $library = $builder->build({
-    source => 'Branch',
-});
-my $another_library = $builder->build({
-    source => 'Branch',
-});
+my $library         = $builder->build({ source => 'Branch' });
+my $another_library = $builder->build({ source => 'Branch' });
+my $itemtype        = $builder->build({ source => 'Itemtype' })->{itemtype};
 
 C4::Context->_new_userenv('xxx');
 C4::Context->set_userenv(0, 0, 0, 'firstname', 'surname', $library->{branchcode}, $library->{branchcode}, '', '', '', '', '');
@@ -69,7 +66,15 @@ my $patron3 = $builder->build({
 # Discharge not possible with issues
 my ( $biblionumber ) = AddBiblio( MARC::Record->new, '');
 my $barcode = 'BARCODE42';
-my ( undef, undef, $itemnumber ) = AddItem({ homebranch => $library->{branchcode}, holdingbranch => $library->{branchcode}, barcode => $barcode }, $biblionumber);
+my ( undef, undef, $itemnumber ) = AddItem(
+    {   homebranch    => $library->{branchcode},
+        holdingbranch => $library->{branchcode},
+        barcode       => $barcode,
+        itype         => $itemtype
+    },
+    $biblionumber
+);
+
 AddIssue( $patron, $barcode );
 is( Koha::Patron::Discharge::can_be_discharged({ borrowernumber => $patron->{borrowernumber} }), 0, 'A patron with issues cannot be discharged' );