Bug 14334: Remove AutoCommit from 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
31 use t::lib::TestBuilder;
32 use t::lib::Mocks;
33
34 my $schema = Koha::Database->new->schema;
35 $schema->storage->txn_begin;
36
37 our $dbh = C4::Context->dbh;
38
39 $dbh->do(q|DELETE FROM branch_item_rules|);
40 $dbh->do(q|DELETE FROM issues|);
41 $dbh->do(q|DELETE FROM branch_borrower_circ_rules|);
42 $dbh->do(q|DELETE FROM default_branch_circ_rules|);
43 $dbh->do(q|DELETE FROM default_circ_rules|);
44 $dbh->do(q|DELETE FROM default_branch_item_rules|);
45 $dbh->do(q|DELETE FROM issuingrules|);
46
47 my $builder = t::lib::TestBuilder->new();
48
49 my $branch = $builder->build({
50     source => 'Branch',
51 });
52
53 my $patron_category = $builder->build({ source => 'Category', value => { categorycode => 'NOT_X', category_type => 'P', enrolmentfee => 0 } });
54 my $patron = $builder->build_object({
55     class => 'Koha::Patrons',
56     value => {
57         branchcode => $branch->{branchcode},
58         debarred => undef,
59         categorycode => $patron_category->{categorycode},
60     },
61 });
62 my $patron_unblessed = $patron->unblessed;
63
64 my $biblio = $builder->build({
65     source => 'Biblio',
66     value => {
67         branchcode => $branch->{branchcode},
68     },
69 });
70 $builder->build(
71     {
72         source => 'Biblioitem',
73         value  => { biblionumber => $biblio->{biblionumber} }
74     }
75 );
76 my $item = $builder->build({
77     source => 'Item',
78     value => {
79         biblionumber => $biblio->{biblionumber},
80         homebranch => $branch->{branchcode},
81         holdingbranch => $branch->{branchcode},
82         notforloan => 0,
83         withdrawn => 0,
84         lost => 0,
85     },
86 });
87
88 my $issuingrule = $builder->build({
89     source => 'Issuingrule',
90     value => {
91         branchcode         => $branch->{branchcode},
92         categorycode       => '*',
93         itemtype           => '*',
94         maxissueqty        => 2,
95         maxonsiteissueqty  => 1,
96         lengthunit         => 'days',
97         issuelength        => 5,
98         hardduedate        => undef,
99         hardduedatecompare => 0,
100     },
101 });
102
103 C4::Context->_new_userenv ('DUMMY_SESSION_ID');
104 C4::Context->set_userenv($patron->borrowernumber, $patron->userid, 'usercnum', 'First name', 'Surname', $branch->{branchcode}, 'My Library', 0);
105
106 t::lib::Mocks::mock_preference('AllowTooManyOverride', 0);
107
108 # Add onsite checkout
109 C4::Circulation::AddIssue( $patron_unblessed, $item->{barcode}, dt_from_string, undef, dt_from_string, undef, { onsite_checkout => 1 } );
110
111 my ( $impossible, $messages );
112 t::lib::Mocks::mock_preference('SwitchOnSiteCheckouts', 0);
113 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $item->{barcode} );
114 is( $impossible->{NO_RENEWAL_FOR_ONSITE_CHECKOUTS}, 1, 'Do not renew on-site checkouts' );
115
116 t::lib::Mocks::mock_preference('SwitchOnSiteCheckouts', 1);
117 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $item->{barcode} );
118 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'If SwitchOnSiteCheckouts, switch the on-site checkout' );
119 is( exists $impossible->{TOO_MANY}, '', 'If SwitchOnSiteCheckouts, switch the on-site checkout' );
120 C4::Circulation::AddIssue( $patron_unblessed, $item->{barcode}, undef, undef, undef, undef, { switch_onsite_checkout => 1 } );
121 my $issue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
122 is( $issue->onsite_checkout, 0, 'The issue should have been switched to a regular checkout' );
123 my $five_days_after = dt_from_string->add( days => 5 )->set( hour => 23, minute => 59, second => 0 );
124 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' );
125
126 # Specific case
127 t::lib::Mocks::mock_preference('ConsiderOnSiteCheckoutsAsNormalCheckouts', 1);
128 my $another_item = $builder->build({
129     source => 'Item',
130     value => {
131         biblionumber => $biblio->{biblionumber},
132         homebranch => $branch->{branchcode},
133         holdingbranch => $branch->{branchcode},
134         notforloan => 0,
135         withdrawn => 0,
136         lost => 0,
137     },
138 });
139
140 C4::Circulation::AddIssue( $patron_unblessed, $another_item->{barcode}, dt_from_string, undef, dt_from_string, undef, { onsite_checkout => 1 } );
141 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $another_item->{barcode} );
142 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'Specific case 1 - Switch is allowed' );
143 is( exists $impossible->{TOO_MANY}, '', 'Specific case 1 - Switch is allowed' );
144
145 my $yet_another_item = $builder->build({
146     source => 'Item',
147     value => {
148         biblionumber => $biblio->{biblionumber},
149         homebranch => $branch->{branchcode},
150         holdingbranch => $branch->{branchcode},
151         notforloan => 0,
152         withdrawn => 0,
153         lost => 0,
154     },
155 });
156 ( $impossible, undef, undef, undef ) = C4::Circulation::CanBookBeIssued( $patron, $yet_another_item->{barcode} );
157 is( $impossible->{TOO_MANY}, 'TOO_MANY_CHECKOUTS', 'Not a specific case, $delta should not be incremented' );
158
159 $dbh->do(q|DELETE FROM issuingrules|);
160 my $borrower_circ_rule = $builder->build({
161     source => 'DefaultCircRule',
162     value => {
163         branchcode         => $branch->{branchcode},
164         categorycode       => '*',
165         maxissueqty        => 2,
166         maxonsiteissueqty  => 1,
167     },
168 });
169 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $another_item->{barcode} );
170 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'Specific case 2 - Switch is allowed' );
171 is( exists $impossible->{TOO_MANY}, '', 'Specific case 2 - Switch is allowed' );
172
173 $schema->storage->txn_rollback;
174