Bug 17776: (QA follow-up) Consistent regex for Plack detection
[koha.git] / t / db_dependent / Koha / Account.t
blob21f0e6219130b4d4d90cc0010be7edc47b53dfb7
1 #!/usr/bin/perl
3 # Copyright 2018 Koha Development team
5 # This file is part of Koha
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>
20 use Modern::Perl;
22 use Test::More tests => 3;
24 use Koha::Account;
25 use Koha::Account::Lines;
26 use Koha::Account::Offsets;
28 use t::lib::Mocks;
29 use t::lib::TestBuilder;
31 my $schema = Koha::Database->new->schema;
32 my $builder = t::lib::TestBuilder->new;
34 subtest 'outstanding_debits() tests' => sub {
36 plan tests => 12;
38 $schema->storage->txn_begin;
40 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
42 my @generated_lines;
43 push @generated_lines, Koha::Account::Line->new({ borrowernumber => $patron->id, amountoutstanding => 1 })->store;
44 push @generated_lines, Koha::Account::Line->new({ borrowernumber => $patron->id, amountoutstanding => 2 })->store;
45 push @generated_lines, Koha::Account::Line->new({ borrowernumber => $patron->id, amountoutstanding => 3 })->store;
46 push @generated_lines, Koha::Account::Line->new({ borrowernumber => $patron->id, amountoutstanding => 4 })->store;
48 my $account = $patron->account;
49 my $lines = $account->outstanding_debits();
51 is( $lines->total_outstanding, 10, 'Outstandig debits total is correctly calculated' );
53 my $i = 0;
54 foreach my $line ( @{ $lines->as_list } ) {
55 my $fetched_line = Koha::Account::Lines->find( $generated_lines[$i]->id );
56 is_deeply( $line->unblessed, $fetched_line->unblessed, "Fetched line matches the generated one ($i)" );
57 $i++;
60 my $patron_2 = $builder->build_object({ class => 'Koha::Patrons' });
61 Koha::Account::Line->new({ borrowernumber => $patron_2->id, amountoutstanding => -2 })->store;
62 my $just_one = Koha::Account::Line->new({ borrowernumber => $patron_2->id, amountoutstanding => 3 })->store;
63 Koha::Account::Line->new({ borrowernumber => $patron_2->id, amountoutstanding => -6 })->store;
64 $lines = $patron_2->account->outstanding_debits();
65 is( $lines->total_outstanding, 3, "Total if some outstanding debits and some credits is only debits" );
66 is( $lines->count, 1, "With 1 outstanding debits, we get back a Lines object with 1 lines" );
67 my $the_line = Koha::Account::Lines->find( $just_one->id );
68 is_deeply( $the_line->unblessed, $lines->next->unblessed, "We get back the one correct line");
70 my $patron_3 = $builder->build_object({ class => 'Koha::Patrons' });
71 Koha::Account::Line->new({ borrowernumber => $patron_2->id, amountoutstanding => -2 })->store;
72 Koha::Account::Line->new({ borrowernumber => $patron_2->id, amountoutstanding => -20 })->store;
73 Koha::Account::Line->new({ borrowernumber => $patron_2->id, amountoutstanding => -200 })->store;
74 $lines = $patron_3->account->outstanding_debits();
75 is( $lines->total_outstanding, 0, "Total if no outstanding debits total is 0" );
76 is( $lines->count, 0, "With 0 outstanding debits, we get back a Lines object with 0 lines" );
78 my $patron_4 = $builder->build_object({ class => 'Koha::Patrons' });
79 $lines = $patron_4->account->outstanding_debits();
80 is( $lines->total_outstanding, 0, "Total if no outstanding debits is 0" );
81 is( $lines->count, 0, "With no outstanding debits, we get back a Lines object with 0 lines" );
83 $schema->storage->txn_rollback;
86 subtest 'outstanding_credits() tests' => sub {
88 plan tests => 7;
90 $schema->storage->txn_begin;
92 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
93 my $account = $patron->account;
95 my @generated_lines;
96 push @generated_lines, $account->add_credit({ amount => 1 });
97 push @generated_lines, $account->add_credit({ amount => 2 });
98 push @generated_lines, $account->add_credit({ amount => 3 });
99 push @generated_lines, $account->add_credit({ amount => 4 });
101 my $lines = $account->outstanding_credits();
103 is( $lines->total_outstanding, -10, 'Outstandig credits total is correctly calculated' );
105 my $i = 0;
106 foreach my $line ( @{ $lines->as_list } ) {
107 my $fetched_line = Koha::Account::Lines->find( $generated_lines[$i]->id );
108 is_deeply( $line->unblessed, $fetched_line->unblessed, "Fetched line matches the generated one ($i)" );
109 $i++;
112 my $patron_2 = $builder->build_object({ class => 'Koha::Patrons' });
113 $lines = $patron_2->account->outstanding_credits();
114 is( $lines->total_outstanding, 0, "Total if no outstanding credits is 0" );
115 is( $lines->count, 0, "With no outstanding credits, we get back a Lines object with 0 lines" );
117 $schema->storage->txn_rollback;
120 subtest 'add_credit() tests' => sub {
122 plan tests => 15;
124 $schema->storage->txn_begin;
126 # delete logs and statistics
127 my $action_logs = $schema->resultset('ActionLog')->search()->count;
128 my $statistics = $schema->resultset('Statistic')->search()->count;
130 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
131 my $account = Koha::Account->new( { patron_id => $patron->borrowernumber } );
133 is( $account->balance, 0, 'Patron has no balance' );
135 # Disable logs
136 t::lib::Mocks::mock_preference( 'FinesLog', 0 );
138 my $line_1 = $account->add_credit(
139 { amount => 25,
140 description => 'Payment of 25',
141 library_id => $patron->branchcode,
142 note => 'not really important',
143 type => 'payment',
144 user_id => $patron->id
148 is( $account->balance, -25, 'Patron has a balance of -25' );
149 is( $schema->resultset('ActionLog')->count(), $action_logs + 0, 'No log was added' );
150 is( $schema->resultset('Statistic')->count(), $statistics + 1, 'Action added to statistics' );
151 is( $line_1->accounttype, $Koha::Account::account_type->{'payment'}, 'Account type is correctly set' );
153 # Enable logs
154 t::lib::Mocks::mock_preference( 'FinesLog', 1 );
156 my $sip_code = "1";
157 my $line_2 = $account->add_credit(
158 { amount => 37,
159 description => 'Payment of 37',
160 library_id => $patron->branchcode,
161 note => 'not really important',
162 user_id => $patron->id,
163 sip => $sip_code
167 is( $account->balance, -62, 'Patron has a balance of -25' );
168 is( $schema->resultset('ActionLog')->count(), $action_logs + 1, 'Log was added' );
169 is( $schema->resultset('Statistic')->count(), $statistics + 2, 'Action added to statistics' );
170 is( $line_2->accounttype, $Koha::Account::account_type->{'payment'} . $sip_code, 'Account type is correctly set' );
172 # offsets have the credit_id set to accountlines_id, and debit_id is undef
173 my $offset_1 = Koha::Account::Offsets->search({ credit_id => $line_1->id })->next;
174 my $offset_2 = Koha::Account::Offsets->search({ credit_id => $line_2->id })->next;
176 is( $offset_1->credit_id, $line_1->id, 'No debit_id is set for credits' );
177 is( $offset_1->debit_id, undef, 'No debit_id is set for credits' );
178 is( $offset_2->credit_id, $line_2->id, 'No debit_id is set for credits' );
179 is( $offset_2->debit_id, undef, 'No debit_id is set for credits' );
181 my $line_3 = $account->add_credit(
182 { amount => 20,
183 description => 'Manual credit applied',
184 library_id => $patron->branchcode,
185 user_id => $patron->id,
186 type => 'forgiven'
190 is( $schema->resultset('ActionLog')->count(), $action_logs + 2, 'Log was added' );
191 is( $schema->resultset('Statistic')->count(), $statistics + 2, 'No action added to statistics, because of credit type' );
193 $schema->storage->txn_rollback;