-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4106 from kjozsa/feature/FINERACT-1981-enable-bac…
…kdated-repayment-for-progressive-loans FINERACT-1981: Progressive loan enable backdated transactions
- Loading branch information
Showing
3 changed files
with
115 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
108 changes: 108 additions & 0 deletions
108
...st/java/org/apache/fineract/integrationtests/LoanTransactionBackdatedProgressiveTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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. | ||
*/ | ||
package org.apache.fineract.integrationtests; | ||
|
||
import java.math.BigDecimal; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.apache.fineract.client.models.GetLoansLoanIdResponse; | ||
import org.apache.fineract.client.models.PostLoanProductsResponse; | ||
import org.apache.fineract.client.models.PostLoansLoanIdTransactionsRequest; | ||
import org.apache.fineract.client.models.PostLoansResponse; | ||
import org.apache.fineract.integrationtests.common.ClientHelper; | ||
import org.apache.fineract.integrationtests.common.loans.LoanTestLifecycleExtension; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
|
||
@Slf4j | ||
@ExtendWith({ LoanTestLifecycleExtension.class }) | ||
public class LoanTransactionBackdatedProgressiveTest extends BaseLoanIntegrationTest { | ||
|
||
private Long clientId; | ||
private Long loanId; | ||
|
||
@BeforeEach | ||
public void beforeEach() { | ||
runAt("01 July 2024", () -> { | ||
clientId = clientHelper.createClient(ClientHelper.defaultClientCreationRequest()).getClientId(); | ||
final PostLoanProductsResponse loanProductsResponse = loanProductHelper.createLoanProduct(create4IProgressive()); | ||
PostLoansResponse postLoansResponse = loanTransactionHelper.applyLoan( | ||
applyPin4ProgressiveLoanRequest(clientId, loanProductsResponse.getResourceId(), "01 June 2024", 1000.0, 10.0, 4, null)); | ||
loanId = postLoansResponse.getLoanId(); | ||
loanTransactionHelper.approveLoan(loanId, approveLoanRequest(1000.0, "01 June 2024")); | ||
disburseLoan(loanId, BigDecimal.valueOf(250.0), "01 June 2024"); | ||
addRepaymentForLoan(loanId, 100.0, "10 June 2024"); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testProgressiveBackdatedDisbursement() { | ||
runAt("01 July 2024", () -> { | ||
disburseLoan(loanId, BigDecimal.valueOf(250.0), "5 June 2024"); | ||
|
||
GetLoansLoanIdResponse loanDetails = loanTransactionHelper.getLoanDetails(loanId); | ||
Assertions.assertEquals(loanDetails.getDisbursementDetails().size(), 2); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testProgressiveBackdatedRepayment() { | ||
runAt("01 July 2024", () -> { | ||
addRepaymentForLoan(loanId, 100.0, "5 June 2024"); | ||
|
||
GetLoansLoanIdResponse loanDetails = loanTransactionHelper.getLoanDetails(loanId); | ||
Assertions.assertTrue(loanDetails.getTransactions().size() >= 2); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testProgressiveBackdatedMerchantIssuedRefund() { | ||
runAt("01 July 2024", () -> { | ||
loanTransactionHelper.makeMerchantIssuedRefund(loanId, new PostLoansLoanIdTransactionsRequest().dateFormat(DATETIME_PATTERN) | ||
.transactionDate("5 June 2024").locale("en").transactionAmount(100.0)); | ||
|
||
GetLoansLoanIdResponse loanDetails = loanTransactionHelper.getLoanDetails(loanId); | ||
Assertions.assertTrue(loanDetails.getTransactions().size() >= 2); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testProgressiveBackdatedPayoutRefund() { | ||
runAt("01 July 2024", () -> { | ||
loanTransactionHelper.makePayoutRefund(loanId, new PostLoansLoanIdTransactionsRequest().dateFormat(DATETIME_PATTERN) | ||
.transactionDate("5 June 2024").locale("en").transactionAmount(100.0)); | ||
|
||
GetLoansLoanIdResponse loanDetails = loanTransactionHelper.getLoanDetails(loanId); | ||
Assertions.assertTrue(loanDetails.getTransactions().size() >= 2); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testProgressiveBackdatedGoodwillCredit() { | ||
runAt("01 July 2024", () -> { | ||
loanTransactionHelper.makeGoodwillCredit(loanId, new PostLoansLoanIdTransactionsRequest().dateFormat(DATETIME_PATTERN) | ||
.transactionDate("5 June 2024").locale("en").transactionAmount(100.0)); | ||
|
||
GetLoansLoanIdResponse loanDetails = loanTransactionHelper.getLoanDetails(loanId); | ||
Assertions.assertTrue(loanDetails.getTransactions().size() >= 2); | ||
}); | ||
} | ||
|
||
} |