Bug 12461 - Add patron clubs feature
[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 => 9;
19 use C4::Context;
20
21 use C4::Biblio;
22 use C4::Members;
23 use C4::Circulation;
24 use C4::Items;
25 use C4::Context;
26
27 use Koha::DateUtils qw( dt_from_string );
28 use Koha::Database;
29
30 use t::lib::TestBuilder;
31 use t::lib::Mocks;
32
33 my $schema = Koha::Database->new->schema;
34 $schema->storage->txn_begin;
35
36 our $dbh = C4::Context->dbh;
37
38 $dbh->do(q|DELETE FROM branch_item_rules|);
39 $dbh->do(q|DELETE FROM issues|);
40 $dbh->do(q|DELETE FROM branch_borrower_circ_rules|);
41 $dbh->do(q|DELETE FROM default_branch_circ_rules|);
42 $dbh->do(q|DELETE FROM default_circ_rules|);
43 $dbh->do(q|DELETE FROM default_branch_item_rules|);
44 $dbh->do(q|DELETE FROM issuingrules|);
45
46 my $builder = t::lib::TestBuilder->new();
47
48 my $branch = $builder->build({
49     source => 'Branch',
50 });
51
52 my $patron = $builder->build({
53     source => 'Borrower',
54     value => {
55         branchcode => $branch->{branchcode},
56     },
57 });
58
59 my $biblio = $builder->build({
60     source => 'Biblio',
61     value => {
62         branchcode => $branch->{branchcode},
63     },
64 });
65 my $item = $builder->build({
66     source => 'Item',
67     value => {
68         biblionumber => $biblio->{biblionumber},
69         homebranch => $branch->{branchcode},
70         holdingbranch => $branch->{branchcode},
71     },
72 });
73
74 my $issuingrule = $builder->build({
75     source => 'Issuingrule',
76     value => {
77         branchcode         => $branch->{branchcode},
78         categorycode       => '*',
79         itemtype           => '*',
80         maxissueqty        => 2,
81         maxonsiteissueqty  => 1,
82         lengthunit         => 'days',
83         issuelength        => 5,
84     },
85 });
86
87 C4::Context->_new_userenv ('DUMMY_SESSION_ID');
88 C4::Context->set_userenv($patron->{borrowernumber}, $patron->{userid}, 'usercnum', 'First name', 'Surname', $branch->{branchcode}, 'My Library', 0);
89
90 # Add onsite checkout
91 C4::Circulation::AddIssue( $patron, $item->{barcode}, dt_from_string, undef, dt_from_string, undef, { onsite_checkout => 1 } );
92
93 my ( $impossible, $messages );
94 t::lib::Mocks::mock_preference('SwitchOnSiteCheckouts', 0);
95 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $item->{barcode} );
96 is( $impossible->{NO_RENEWAL_FOR_ONSITE_CHECKOUTS}, 1, 'Do not renew on-site checkouts' );
97
98 t::lib::Mocks::mock_preference('SwitchOnSiteCheckouts', 1);
99 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $item->{barcode} );
100 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'If SwitchOnSiteCheckouts, switch the on-site checkout' );
101 is( exists $impossible->{TOO_MANY}, '', 'If SwitchOnSiteCheckouts, switch the on-site checkout' );
102 C4::Circulation::AddIssue( $patron, $item->{barcode}, undef, undef, undef, undef, { switch_onsite_checkout => 1 } );
103 my $issue = C4::Circulation::GetItemIssue( $item->{itemnumber} );
104 is( $issue->{onsite_checkout}, 0, 'The issue should have been switched to a regular checkout' );
105 my $five_days_after = dt_from_string->add( days => 5 )->set( hour => 23, minute => 59, second => 0 );
106 is( $issue->{date_due}, $five_days_after, 'The date_due should have been set depending on the circ rules when the on-site checkout has been switched' );
107
108 # Specific case
109 t::lib::Mocks::mock_preference('ConsiderOnSiteCheckoutsAsNormalCheckouts', 1);
110 my $another_item = $builder->build({
111     source => 'Item',
112     value => {
113         biblionumber => $biblio->{biblionumber},
114         homebranch => $branch->{branchcode},
115         holdingbranch => $branch->{branchcode},
116     },
117 });
118
119 C4::Circulation::AddIssue( $patron, $another_item->{barcode}, dt_from_string, undef, dt_from_string, undef, { onsite_checkout => 1 } );
120 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $another_item->{barcode} );
121 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'Specific case 1 - Switch is allowed' );
122 is( exists $impossible->{TOO_MANY}, '', 'Specific case 1 - Switch is allowed' );
123
124 $dbh->do(q|DELETE FROM issuingrules|);
125 my $borrower_circ_rule = $builder->build({
126     source => 'DefaultCircRule',
127     value => {
128         branchcode         => $branch->{branchcode},
129         categorycode       => '*',
130         maxissueqty        => 2,
131         maxonsiteissueqty  => 1,
132     },
133 });
134 ( $impossible, undef, undef, $messages ) = C4::Circulation::CanBookBeIssued( $patron, $another_item->{barcode} );
135 is( $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}, 1, 'Specific case 2 - Switch is allowed' );
136 is( exists $impossible->{TOO_MANY}, '', 'Specific case 2 - Switch is allowed' );
137
138 $schema->storage->txn_rollback;
139
140 1;