/* * Copyright (c) 2005-2011 Grameen Foundation USA * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. * * See also http://www.apache.org/licenses/LICENSE-2.0.html for an * explanation of the license and how it is applied. */ package org.mifos.accounts.savings; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import static org.mockito.Matchers.any; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.util.Arrays; import java.util.Date; import java.util.List; import org.joda.time.DateTime; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import org.mifos.accounts.business.AccountPaymentEntity; import org.mifos.accounts.business.AccountStateEntity; import org.mifos.accounts.business.AccountTrxnEntity; import org.mifos.accounts.productdefinition.util.helpers.SavingsType; import org.mifos.accounts.savings.business.SavingsBO; import org.mifos.accounts.savings.business.SavingsPaymentStrategy; import org.mifos.accounts.savings.business.SavingsPaymentStrategyImpl; import org.mifos.accounts.savings.business.SavingsScheduleEntity; import org.mifos.accounts.savings.business.SavingsTransactionActivityHelper; import org.mifos.accounts.savings.business.SavingsTrxnDetailEntity; import org.mifos.accounts.util.helpers.AccountState; import org.mifos.application.master.business.MifosCurrency; import org.mifos.customers.business.CustomerBO; import org.mifos.domain.builders.SavingsScheduleBuilder; import org.mifos.framework.TestUtils; import org.mifos.framework.util.helpers.Money; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; /** * I test {@link SavingsPaymentStrategyImpl}. */ @RunWith(MockitoJUnitRunner.class) public class SavingsPaymentStrategyForMandatorySavingsAccountsTest { private static MifosCurrency defaultCurrency; private static AccountStateEntity savingsAccountState; // class under test private SavingsPaymentStrategy paymentStrategy; // collaborators @Mock private SavingsTransactionActivityHelper savingsTransactionActivityHelper; @Mock private AccountPaymentEntity accountPayment; @Mock private CustomerBO payingCustomer; @Mock private SavingsBO savingsAccount; @Mock private SavingsTrxnDetailEntity savingsTrxnDetail; @BeforeClass public static void setupMifosLoggerDueToUseOfStaticClientRules() { defaultCurrency = TestUtils.RUPEE; Money.setDefaultCurrency(defaultCurrency); savingsAccountState = new AccountStateEntity(AccountState.SAVINGS_ACTIVE); } @Before public void setupForEachTest() { paymentStrategy = new SavingsPaymentStrategyImpl(savingsTransactionActivityHelper); when(accountPayment.getAccount()).thenReturn(savingsAccount); when(savingsAccount.getCurrency()).thenReturn(defaultCurrency); when(savingsAccount.getAccountState()).thenReturn(savingsAccountState); } @Test public void whenNoUnpaidScheduledInstallmentsExistNoPaymentsAreMade() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "100.0"); final Date dateOfDeposit = new DateTime().toDate(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification verify(accountPayment, times(0)).addAccountTrxn(any(AccountTrxnEntity.class)); } @Test public void whenNoUnpaidScheduledInstallmentsExistTheFullAmountOfTheDepositIsReturned() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "100.0"); final Date dateOfDeposit = new DateTime().toDate(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test final Money remainingAmount = paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification assertThat(remainingAmount, is(fullDepositAmount)); } @Test public void whenUnpaidScheduledInstallmentsExistEarliestDueInstallmentsArePaidOffFirst() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "10.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "10.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "50.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification assertThat(unpaidSaving1.isPaid(), is(true)); assertThat(unpaidSaving2.isPaid(), is(false)); } @Test public void whenDepositAmountIsNotEnoughToPayOffAllScheduledPaymentsThenPayAsMuchAsPossibleOfEarliestScheduledPayments() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "30.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "10.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "50.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification assertThat(unpaidSaving1.isPaid(), is(true)); assertThat(unpaidSaving2.isPaid(), is(false)); assertThat(unpaidSaving2.getDepositPaid(), is(new Money(TestUtils.RUPEE, "20.0"))); } @Test public void whenDepositAmountIsInExcessOfTotalDepositDueAllScheduledPaymentsShouldBeMarkedAsPaid() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "80.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "10.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "50.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification assertThat(unpaidSaving1.isPaid(), is(true)); assertThat(unpaidSaving2.isPaid(), is(true)); } @Test public void whenDepositAmountIsInExcessOfTotalDepositDueTheExcessAmountIsReturnedInRemainingAmount() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "80.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "10.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "50.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test final Money remainingAmount = paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification assertThat(remainingAmount, is(new Money(TestUtils.RUPEE, "20.0"))); } @Test public void whenSomeDepositAmountIsPaidScheduledInstallmentsHaveTheirDateUpdated() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "100.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "10.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "10.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification assertThat(unpaidSaving2.getPaymentDate(), is(dateOfDeposit)); assertThat(unpaidSaving2.getPaymentDate(), is(dateOfDeposit)); } @Test public void whenAllDepositIsPaidOnInstallmentASavingsTrxnDetailIsCreatedWithLatestBalance() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "70.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "25.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "36.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification verify(savingsTransactionActivityHelper, times(1)).createSavingsTrxnForDeposit(accountPayment, new Money(TestUtils.RUPEE, "25.0"), payingCustomer, unpaidSaving1, balanceBeforeDeposit.add(new Money(TestUtils.RUPEE, "25.0"))); verify(savingsTransactionActivityHelper, times(1)).createSavingsTrxnForDeposit(accountPayment, new Money(TestUtils.RUPEE, "36.0"), payingCustomer, unpaidSaving2, balanceBeforeDeposit.add(new Money(TestUtils.RUPEE, "61.0"))); } @Test public void whenSomeDepositIsPaidOnInstallmentASavingsTrxnDetailIsCreatedWithLatestBalance() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "60.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "25.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "36.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification verify(savingsTransactionActivityHelper, times(1)).createSavingsTrxnForDeposit(accountPayment, new Money(TestUtils.RUPEE, "25.0"), payingCustomer, unpaidSaving1, balanceBeforeDeposit.add(new Money(TestUtils.RUPEE, "25.0"))); verify(savingsTransactionActivityHelper, times(1)).createSavingsTrxnForDeposit(accountPayment, new Money(TestUtils.RUPEE, "35.0"), payingCustomer, unpaidSaving2, balanceBeforeDeposit.add(new Money(TestUtils.RUPEE, "60.0"))); } @Test public void whenSomeDepositIsPaidOnInstallmentTheSavingsTrxnDetailCreatedIsAddedToAccountPaymentTrxnss() { // setup final Money balanceBeforeDeposit = new Money(TestUtils.RUPEE, "0.0"); final Money fullDepositAmount = new Money(TestUtils.RUPEE, "65.0"); final Date dateOfDeposit = new DateTime().toDate(); final SavingsScheduleEntity unpaidSaving1 = new SavingsScheduleBuilder().withInstallmentNumber(1).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "25.0")).build(); final SavingsScheduleEntity unpaidSaving2 = new SavingsScheduleBuilder().withInstallmentNumber(2).withAccount( savingsAccount).withCustomer(payingCustomer).withDepositDue(new Money(TestUtils.RUPEE, "40.0")).build(); final List<SavingsScheduleEntity> unpaidDepositsForPayingCustomer = Arrays.asList(unpaidSaving1, unpaidSaving2); // stubbing when(accountPayment.getAmount()).thenReturn(fullDepositAmount); when(accountPayment.getPaymentDate()).thenReturn(dateOfDeposit); when( savingsTransactionActivityHelper.createSavingsTrxnForDeposit(accountPayment, new Money(TestUtils.RUPEE, "25.0"), payingCustomer, unpaidSaving1, balanceBeforeDeposit.add(new Money(TestUtils.RUPEE, "25.0")))) .thenReturn(savingsTrxnDetail); when( savingsTransactionActivityHelper.createSavingsTrxnForDeposit(accountPayment, new Money(TestUtils.RUPEE, "40.0"), payingCustomer, unpaidSaving2, balanceBeforeDeposit.add(new Money(TestUtils.RUPEE, "65.0")))) .thenReturn(savingsTrxnDetail); // exercise test paymentStrategy.makeScheduledPayments(accountPayment, unpaidDepositsForPayingCustomer, payingCustomer, SavingsType.MANDATORY, balanceBeforeDeposit); // verification verify(accountPayment, times(2)).addAccountTrxn(savingsTrxnDetail); } }