Bug 23463: Fix failing tests
[koha.git] / t / db_dependent / Circulation / SwitchOnSiteCheckouts.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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, see <http://www.gnu.org/licenses>.
16
17 use Modern::Perl;
18 use Test::More tests => 10;
19 use C4::Context;
20
21 use C4::Circulation;
22 use C4::Biblio;
23 use C4::Items;
24 use C4::Members;
25 use C4::Context;
26
27 use Koha::DateUtils qw( dt_from_string );
28 use Koha::Database;
29 use Koha::Checkouts;
30 use Koha::CirculationRules;
31
32 use t::lib::TestBuilder;
33 use t::lib::Mocks;
34
35 my $schema = Koha::Database->new->schema;
36 $schema->storage->txn_begin;
37
38 our $dbh = C4::Context->dbh;
39
40 $dbh->do(q|DELETE FROM issues|);
41 $dbh->do(q|DELETE FROM circulation_rules|);
42
43 my $builder = t::lib::TestBuilder->new();
44
45 my $branch = $builder->build({
46     source => 'Branch',
47 });
48
49 my $patron_category = $builder->build({ source => 'Category', value => { categorycode => 'NOT_X', category_type => 'P', enrolmentfee => 0 } });
50 my $patron = $builder->build_object({
51     class => 'Koha::Patrons',
52     value => {
53         branchcode => $branch->{branchcode},
54         debarred => undef,
55         categorycode => $patron_category->{categorycode},
56     },
57 });
58 my $patron_unblessed = $patron->unblessed;
59
60 my $biblio = $builder->build({
61     source => 'Biblio',
62     value => {
63         branchcode => $branch->{branchcode},
64     },
65 });
66 $builder->build(
67     {
68         source => 'Biblioitem',
69         value  => { biblionumber => $biblio->{biblionumber} }
70     }
71 );
72 my $item = $builder->build({
73     source => 'Item',
74     value => {
75         biblionumber => $biblio->{biblionumber},
76         homebranch => $branch->{branchcode},
77         holdingbranch => $branch->{branchcode},
78         notforloan => 0,
79         withdrawn => 0,
80         lost => 0,
81     },
82 });
83
84 Koha::CirculationRules->search()->delete();
85 Koha::CirculationRules->set_rules(
86     {
87         branchcode   => $branch->{branchcode},
88         categorycode => undef,
89         itemtype     => undef,
90         rules        => {
91             maxissueqty       => 2,
92             maxonsiteissueqty => 1,
93             lengthunit        => 'days',
94             issuelength       => 5,
95             hardduedate        => undef,
96             hardduedatecompare => 0,
97         }
98     }
99 );
100
101 t::lib::Mocks::mock_userenv({ patron => $patron });
102
103 t::lib::Mocks::mock_preference('AllowTooManyOverride', 0);
104
105 # Add onsite checkout
106 C4::Circulation::AddIssue( $patron_unblessed, $item->{barcode}, dt_from_string, undef, dt_from_string, undef, { onsite_checkout => 1 } );
107
108 my ( $impossible, $messages );
109 t::lib::Mocks::mock_preference('SwitchOnSiteCheckouts', 0);
110 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $item->{barcode} );
111 is( $impossible->{NO_RENEWAL_FOR_ONSITE_CHECKOUTS}, 1, 'Do not renew on-site checkouts' );
112
113 t::lib::Mocks::mock_preference('SwitchOnSiteCheckouts', 1);
114 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $item->{barcode} );
115 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'If SwitchOnSiteCheckouts, switch the on-site checkout' );
116 is( exists $impossible->{TOO_MANY}, '', 'If SwitchOnSiteCheckouts, switch the on-site checkout' );
117 C4::Circulation::AddIssue( $patron_unblessed, $item->{barcode}, undef, undef, undef, undef, { switch_onsite_checkout => 1 } );
118 my $issue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
119 is( $issue->onsite_checkout, 0, 'The issue should have been switched to a regular checkout' );
120 my $five_days_after = dt_from_string->add( days => 5 )->set( hour => 23, minute => 59, second => 0 );
121 is( dt_from_string($issue->date_due, 'sql'), $five_days_after, 'The date_due should have been set depending on the circ rules when the on-site checkout has been switched' );
122
123 # Specific case
124 t::lib::Mocks::mock_preference('ConsiderOnSiteCheckoutsAsNormalCheckouts', 1);
125 my $another_item = $builder->build({
126     source => 'Item',
127     value => {
128         biblionumber => $biblio->{biblionumber},
129         homebranch => $branch->{branchcode},
130         holdingbranch => $branch->{branchcode},
131         notforloan => 0,
132         withdrawn => 0,
133         lost => 0,
134     },
135 });
136
137 C4::Circulation::AddIssue( $patron_unblessed, $another_item->{barcode}, dt_from_string, undef, dt_from_string, undef, { onsite_checkout => 1 } );
138 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $another_item->{barcode} );
139 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'Specific case 1 - Switch is allowed' );
140 is( exists $impossible->{TOO_MANY}, '', 'Specific case 1 - Switch is allowed' );
141
142 my $yet_another_item = $builder->build({
143     source => 'Item',
144     value => {
145         biblionumber => $biblio->{biblionumber},
146         homebranch => $branch->{branchcode},
147         holdingbranch => $branch->{branchcode},
148         notforloan => 0,
149         withdrawn => 0,
150         lost => 0,
151     },
152 });
153 ( $impossible, undef, undef, undef ) = C4::Circulation::CanBookBeIssued( $patron, $yet_another_item->{barcode} );
154 is( $impossible->{TOO_MANY}, 'TOO_MANY_CHECKOUTS', 'Not a specific case, $delta should not be incremented' );
155
156 Koha::CirculationRules->search()->delete();
157 Koha::CirculationRules->set_rules(
158     {
159         branchcode   => $branch->{branchcode},
160         categorycode => undef,
161         itemtype     => undef,
162         rules        => {
163             maxissueqty       => 2,
164             maxonsiteissueqty => 1,
165         }
166     }
167 );
168 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $another_item->{barcode} );
169 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'Specific case 2 - Switch is allowed' );
170 is( exists $impossible->{TOO_MANY}, '', 'Specific case 2 - Switch is allowed' );
171
172 $schema->storage->txn_rollback;
173