Bug 5327: Added unit test for C4/SIP/ILS/Transaction/RenewAll.pm
authorDuncan Tyler <duncan@catalyst.net.nz>
Wed, 14 Dec 2011 03:42:30 +0000 (16:42 +1300)
committerPaul Poulain <paul.poulain@biblibre.com>
Thu, 15 Dec 2011 12:52:50 +0000 (13:52 +0100)
http://bugs.koha-community.org/show_bug.cgi?id=5327
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Test requires a database installed using the sample data.
All tests pass.

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
t/SIP_ILS.t

index 4a3ee70..32ec7d4 100755 (executable)
@@ -6,11 +6,24 @@
 use strict;
 use warnings;
 
-use Test::More tests => 1;
+use Test::More tests => 4;
 
 BEGIN {
         use FindBin;
         use lib "$FindBin::Bin/../C4/SIP";
         use_ok('C4::SIP::ILS');
-}
+};
 
+my $transaction = ILS::Transaction::RenewAll->new();
+
+$transaction->patron(my $patron = ILS::Patron->new(23529000120056));
+
+ok(defined $patron, "patron code: 23529000120056 is valid");
+
+my $transaction2 = ILS::Transaction::RenewAll->new();
+$transaction2->patron(my $patron2 = ILS::Patron->new("ABCDE12345"));
+
+#This test assumes that the patron code ABCDE12345 is invalid
+ok(!defined $patron2, "patron code: ABCDE12345 is invalid");
+
+ok($transaction->do_renew_all(), "items renewed correctly");