886534a29fdd8ac722f4cdd90d08ef5db44a4fe4
[srvgit] / t / db_dependent / Circulation / transferbook.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use Test::More tests => 2;
21 use t::lib::TestBuilder;
22 use t::lib::Mocks;
23
24 use C4::Circulation;
25 use Koha::DateUtils qw( dt_from_string );
26
27 my $builder = t::lib::TestBuilder->new;
28
29 my $library = $builder->build( { source => 'Branch' } );
30 my @got;
31 my @wanted;
32
33 #Transfert on unknown barcode
34 my $badbc = 'wherethehelldoyoucomefrom';
35 @got = C4::Circulation::transferbook( $library->{branchcode}, $badbc );
36 @wanted = ( 0, { 'BadBarcode' => $badbc } );
37 is_deeply( \@got , \@wanted, 'bad barcode case');
38
39 subtest 'transfer an issued item' => sub {
40     plan tests => 1;
41
42     my $library = $builder->build_object( { class => 'Koha::Libraries' } )->store;
43     t::lib::Mocks::mock_userenv( { branchcode => $library->branchcode } );
44
45     my $patron = $builder->build_object(
46         {
47             class => 'Koha::Patrons',
48             value => { branchcode => $library->branchcode }
49         }
50     );
51
52     my $item = $builder->build_sample_item(
53         {
54             library => $library->branchcode,
55         }
56     );
57
58     my $dt_to = dt_from_string();
59     my $issue = AddIssue( $patron->unblessed, $item->barcode, $dt_to );
60
61     # We are making sure there is no regression, feel free to change the behavior if needed.
62     # * WasReturned does not seem like a variable that should contain a borrowernumber
63     # * Should we return even if the transfer did not happen? (same branches)
64     my @got = transferbook( $library->branchcode, $item->barcode );
65     is( $got[1]->{WasReturned}, $patron->borrowernumber, 'transferbook should have return a WasReturned flag is the item was issued before the transferbook call');
66 };