Bug 14826: Unit Tests

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Kyle Hall 2016-07-21 18:32:05 +00:00 committed by Jonathan Druart
parent 0dccc8ec5b
commit c0aa6740d3
3 changed files with 35 additions and 3 deletions

View file

@ -27,6 +27,7 @@ use t::lib::TestBuilder;
use Koha::Account;
use Koha::Account::Lines;
use Koha::Account::Line;
use Koha::Account::Offsets;
BEGIN {
use_ok('C4::Accounts');
@ -346,7 +347,7 @@ subtest "Koha::Account::pay writeoff tests" => sub {
subtest "More Koha::Account::pay tests" => sub {
plan tests => 6;
plan tests => 8;
# Create a borrower
my $category = $builder->build({ source => 'Category' })->{ categorycode };
@ -376,6 +377,10 @@ subtest "More Koha::Account::pay tests" => sub {
# make the full payment
$account->pay({ lines => [$line], amount => $amount, library_id => $branch, note => 'A payment note' });
my $offset = Koha::Account::Offsets->search({ debit_id => $accountline->{accountlines_id} })->next();
is( $offset->amount(), '-100.000000', 'Offset amount is -100.00' );
is( $offset->type(), 'Payment', 'Offset type is Payment' );
my $stat = $schema->resultset('Statistic')->search({
branch => $branch,
type => 'payment'
@ -395,7 +400,7 @@ subtest "More Koha::Account::pay tests" => sub {
subtest "Even more Koha::Account::pay tests" => sub {
plan tests => 6;
plan tests => 8;
# Create a borrower
my $category = $builder->build({ source => 'Category' })->{ categorycode };
@ -426,6 +431,10 @@ subtest "Even more Koha::Account::pay tests" => sub {
# make the full payment
$account->pay({ lines => [$line], amount => $partialamount, library_id => $branch, note => 'A payment note' });
my $offset = Koha::Account::Offsets->search( { debit_id => $accountline->{ accountlines_id } } )->next();
is( $offset->amount, '-60.000000', 'Offset amount is -60.00' );
is( $offset->type, 'Payment', 'Offset type is payment' );
my $stat = $schema->resultset('Statistic')->search({
branch => $branch,
type => 'payment'

View file

@ -37,6 +37,8 @@ use Koha::IssuingRules;
use Koha::Checkouts;
use Koha::Patrons;
use Koha::Subscriptions;
use Koha::Account::Lines;
use Koha::Account::Offsets;
my $schema = Koha::Database->schema;
$schema->storage->txn_begin;
@ -767,6 +769,17 @@ C4::Context->dbh->do("DELETE FROM accountlines");
}
);
my $line = Koha::Account::Lines->search({ borrowernumber => $renewing_borrower->{borrowernumber} })->next();
is( $line->accounttype, 'FU', 'Account line type is FU' );
is( $line->lastincrement, '15.000000', 'Account line last increment is 15.00' );
is( $line->amountoutstanding, '15.000000', 'Account line amount outstanding is 15.00' );
is( $line->amount, '15.000000', 'Account line amount is 15.00' );
is( $line->issue_id, $issue->id, 'Account line issue id matches' );
my $offset = Koha::Account::Offsets->search({ debit_id => $line->id })->next();
is( $offset->type, 'Fine', 'Account offset type is Fine' );
is( $offset->amount, '15.000000', 'Account offset amount is 15.00' );
LostItem( $itemnumber, 1 );
my $item = Koha::Database->new()->schema()->resultset('Item')->find($itemnumber);

View file

@ -17,13 +17,15 @@
use Modern::Perl;
use Test::More tests => 2;
use Test::More tests => 6;
use t::lib::TestBuilder;
use t::lib::Mocks;
use C4::Accounts qw( manualinvoice );
use C4::Circulation qw( CanBookBeIssued );
use Koha::Account::Lines;
use Koha::Account::Offsets;
my $schema = Koha::Database->new->schema;
$schema->storage->txn_begin;
@ -64,5 +66,13 @@ manualinvoice( $guarantee->{borrowernumber}, undef, undef, 'L', 10.00 );
( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->{barcode} );
is( $issuingimpossible->{DEBT_GUARANTEES} + 0, '10.00' + 0, "Patron cannot check out item due to debt for guarantee" );
my $accountline = Koha::Account::Lines->search({ borrowernumber => $guarantee->{borrowernumber} })->next();
is( $accountline->amountoutstanding, "10.000000", "Found 10.00 amount outstanding" );
is( $accountline->accounttype, "L", "Account type is L" );
my $offset = Koha::Account::Offsets->search({ debit_id => $accountline->id })->next();
is( $offset->type, 'Manual Debit', 'Got correct offset type' );
is( $offset->amount, '10.000000', 'Got amount of $10.00' );
$schema->storage->txn_rollback;