Bugzilla – Attachment 76319 Details for
Bug 20978
Add Koha::Account::add_credit
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20978: Unit tests
Bug-20978-Unit-tests.patch (text/plain), 3.41 KB, created by
Tomás Cohen Arazi (tcohen)
on 2018-06-23 08:55:36 UTC
(
hide
)
Description:
Bug 20978: Unit tests
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2018-06-23 08:55:36 UTC
Size:
3.41 KB
patch
obsolete
>From cba58c78155e8777e862a4b936cabf69e2519d80 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Thu, 21 Jun 2018 13:03:13 -0300 >Subject: [PATCH] Bug 20978: Unit tests > >This patch adds unit tests for Koha::Account::add_credit. >--- > t/db_dependent/Koha/Account.t | 67 ++++++++++++++++++++++++++++++++++- > 1 file changed, 66 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Koha/Account.t b/t/db_dependent/Koha/Account.t >index bf0e0b677d..85b773c6de 100755 >--- a/t/db_dependent/Koha/Account.t >+++ b/t/db_dependent/Koha/Account.t >@@ -19,11 +19,13 @@ > > use Modern::Perl; > >-use Test::More tests => 1; >+use Test::More tests => 2; > > use Koha::Account; > use Koha::Account::Lines; >+use Koha::Account::Offsets; > >+use t::lib::Mocks; > use t::lib::TestBuilder; > > my $schema = Koha::Database->new->schema; >@@ -57,3 +59,66 @@ subtest 'outstanding_debits() tests' => sub { > > $schema->storage->txn_rollback; > }; >+ >+subtest 'add_credit() tests' => sub { >+ >+ plan tests => 13; >+ >+ $schema->storage->txn_begin; >+ >+ # delete logs and statistics >+ $schema->resultset('ActionLog')->search()->delete(); >+ $schema->resultset('Statistic')->search()->delete(); >+ >+ my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); >+ my $account = Koha::Account->new( { patron_id => $patron->borrowernumber } ); >+ >+ is( $account->balance, 0, 'Patron has no balance' ); >+ >+ # Disable logs >+ t::lib::Mocks::mock_preference( 'FinesLog', 0 ); >+ >+ my $line_1 = $account->add_credit( >+ { amount => 25, >+ description => 'Payment of 25', >+ library_id => $patron->branchcode, >+ note => 'not really important', >+ user_id => $patron->id >+ } >+ ); >+ >+ is( $account->balance, -25, 'Patron has a balance of -25' ); >+ is( $schema->resultset('ActionLog')->count(), 0, 'No log was added' ); >+ is( $schema->resultset('Statistic')->count(), 1, 'Action added to statistics' ); >+ is( $line_1->accounttype, $Koha::Account::account_type->{'payment'}, 'Account type is correctly set' ); >+ >+ # Enable logs >+ t::lib::Mocks::mock_preference( 'FinesLog', 1 ); >+ >+ my $sip_code = "1"; >+ my $line_2 = $account->add_credit( >+ { amount => 37, >+ description => 'Payment of 37', >+ library_id => $patron->branchcode, >+ note => 'not really important', >+ user_id => $patron->id, >+ sip => $sip_code >+ } >+ ); >+ >+ is( $account->balance, -62, 'Patron has a balance of -25' ); >+ is( $schema->resultset('ActionLog')->count(), 1, 'Log was added' ); >+ is( $schema->resultset('Statistic')->count(), 2, 'Action added to statistics' ); >+ is( $line_2->accounttype, $Koha::Account::account_type->{'payment'} . $sip_code, 'Account type is correctly set' ); >+ >+ # offsets have the credit_id set to accountlines_id, and debit_id is undef >+ my $offset_1 = Koha::Account::Offsets->search({ credit_id => $line_1->id })->next; >+ my $offset_2 = Koha::Account::Offsets->search({ credit_id => $line_2->id })->next; >+ >+ is( $offset_1->credit_id, $line_1->id, 'No debit_id is set for credits' ); >+ is( $offset_1->debit_id, undef, 'No debit_id is set for credits' ); >+ is( $offset_2->credit_id, $line_2->id, 'No debit_id is set for credits' ); >+ is( $offset_2->debit_id, undef, 'No debit_id is set for credits' ); >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.18.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 20978
:
76240
|
76241
|
76242
|
76243
|
76244
|
76245
|
76278
|
76279
|
76280
|
76319
|
76320
|
76321
|
76396
|
76397
|
76398
|
76439
|
76440
|
76441
|
76515
|
76633
|
76634
|
76635
|
76636
|
76726
|
76727
|
76733