Bug 16534: Add tests for AddIssue
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Sun, 22 May 2016 09:03:11 +0000 (10:03 +0100)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 24 Jun 2016 11:45:00 +0000 (11:45 +0000)
Signed-off-by: Marc VĂ©ron <veron@veron.ch>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
t/db_dependent/Circulation.t

index 72436a0..f06e4d5 100755 (executable)
@@ -30,7 +30,7 @@ use Koha::Database;
 
 use t::lib::TestBuilder;
 
-use Test::More tests => 85;
+use Test::More tests => 86;
 
 BEGIN {
     use_ok('C4::Circulation');
@@ -998,6 +998,80 @@ subtest 'CanBookBeIssued & AllowReturnToBranch' => sub {
     # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
 };
 
+subtest 'AddIssue & AllowReturnToBranch' => sub {
+    plan tests => 9;
+
+    my $homebranch    = $builder->build( { source => 'Branch' } );
+    my $holdingbranch = $builder->build( { source => 'Branch' } );
+    my $otherbranch   = $builder->build( { source => 'Branch' } );
+    my $patron_1      = $builder->build( { source => 'Borrower' } );
+    my $patron_2      = $builder->build( { source => 'Borrower' } );
+
+    my $biblioitem = $builder->build( { source => 'Biblioitem' } );
+    my $item = $builder->build(
+        {   source => 'Item',
+            value  => {
+                homebranch    => $homebranch->{branchcode},
+                holdingbranch => $holdingbranch->{branchcode},
+                notforloan    => 0,
+                itemlost      => 0,
+                withdrawn     => 0,
+                biblionumber  => $biblioitem->{biblionumber}
+            }
+        }
+    );
+
+    set_userenv($holdingbranch);
+
+    my $ref_issue = 'Koha::Schema::Result::Issue'; # FIXME Should be Koha::Issue
+    my $issue = AddIssue( $patron_1, $item->{barcode} );
+
+    my ( $error, $question, $alerts );
+
+    # AllowReturnToBranch == homebranch
+    t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'anywhere' );
+    ## Can be issued from homebranch
+    set_userenv($homebranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
+    set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
+    ## Can be issued from holdinbranch
+    set_userenv($holdingbranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
+    set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
+    ## Can be issued from another branch
+    set_userenv($otherbranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
+    set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
+
+    # AllowReturnToBranch == holdinbranch
+    t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'holdingbranch' );
+    ## Cannot be issued from homebranch
+    set_userenv($homebranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
+    ## Can be issued from holdingbranch
+    set_userenv($holdingbranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
+    set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
+    ## Cannot be issued from another branch
+    set_userenv($otherbranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
+
+    # AllowReturnToBranch == homebranch
+    t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'homebranch' );
+    ## Can be issued from homebranch
+    set_userenv($homebranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
+    set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
+    ## Cannot be issued from holdinbranch
+    set_userenv($holdingbranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
+    ## Cannot be issued from another branch
+    set_userenv($otherbranch);
+    is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
+    # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
+};
+
+
 sub set_userenv {
     my ( $library ) = @_;
     C4::Context->set_userenv(0,0,0,'firstname','surname', $library->{branchcode}, $library->{branchname}, '', '', '');