sayhaed commented on code in PR #4885:
URL: https://github.com/apache/fineract/pull/4885#discussion_r2274386009


##########
integration-tests/src/test/java/org/apache/fineract/integrationtests/SavingsAccrualAccountingIntegrationTest.java:
##########
@@ -0,0 +1,221 @@
+/**
+ * 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 io.restassured.builder.RequestSpecBuilder;
+import io.restassured.builder.ResponseSpecBuilder;
+import io.restassured.http.ContentType;
+import io.restassured.specification.RequestSpecification;
+import io.restassured.specification.ResponseSpecification;
+import java.math.BigDecimal;
+import java.time.LocalDate;
+import java.time.format.DateTimeFormatter;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Locale;
+import java.util.Map;
+import org.apache.fineract.integrationtests.common.ClientHelper;
+import org.apache.fineract.integrationtests.common.CommonConstants;
+import org.apache.fineract.integrationtests.common.SchedulerJobHelper;
+import org.apache.fineract.integrationtests.common.Utils;
+import org.apache.fineract.integrationtests.common.accounting.Account;
+import org.apache.fineract.integrationtests.common.accounting.AccountHelper;
+import 
org.apache.fineract.integrationtests.common.accounting.JournalEntryHelper;
+import 
org.apache.fineract.integrationtests.common.savings.SavingsAccountHelper;
+import 
org.apache.fineract.integrationtests.common.savings.SavingsProductHelper;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class SavingsAccrualAccountingIntegrationTest {
+
+    private static final Logger LOG = 
LoggerFactory.getLogger(SavingsAccrualAccountingIntegrationTest.class);
+    private ResponseSpecification responseSpec;
+    private RequestSpecification requestSpec;
+    private SavingsAccountHelper savingsAccountHelper;
+    private SchedulerJobHelper schedulerJobHelper;
+    private JournalEntryHelper journalEntryHelper;
+    private AccountHelper accountHelper;
+
+    @BeforeEach
+    public void setup() {
+        Utils.initializeRESTAssured();
+        this.requestSpec = new 
RequestSpecBuilder().setContentType(ContentType.JSON).build();
+        this.requestSpec.header("Authorization", "Basic " + 
Utils.loginIntoServerAndGetBase64EncodedAuthenticationKey());
+        this.responseSpec = new 
ResponseSpecBuilder().expectStatusCode(200).build();
+        this.savingsAccountHelper = new SavingsAccountHelper(this.requestSpec, 
this.responseSpec);
+        this.schedulerJobHelper = new SchedulerJobHelper(this.requestSpec);
+        this.journalEntryHelper = new JournalEntryHelper(this.requestSpec, 
this.responseSpec);
+        this.accountHelper = new AccountHelper(this.requestSpec, 
this.responseSpec);
+    }
+
+    @Test
+    public void testPositiveAccrualPostsCorrectJournalEntries() {
+        // --- ARRANGE ---
+        LOG.info("------------------------- INITIATING POSITIVE ACCRUAL 
ACCOUNTING TEST -------------------------");
+        final int daysToSubtract = 10;
+
+        final Account savingsReferenceAccount = 
this.accountHelper.createAssetAccount("Savings Reference");
+        final Account interestOnSavingsAccount = 
this.accountHelper.createExpenseAccount("Interest on Savings (Expense)");
+        final Account savingsControlAccount = 
this.accountHelper.createLiabilityAccount("Savings Control");
+        final Account interestPayableAccount = 
this.accountHelper.createLiabilityAccount("Interest Payable (Liability)");
+        final Account incomeFromFeesAccount = 
this.accountHelper.createIncomeAccount("Income from Fees");
+        final Account[] accountList = { savingsReferenceAccount, 
savingsControlAccount, interestOnSavingsAccount, interestPayableAccount,
+                incomeFromFeesAccount };
+
+        final SavingsProductHelper productHelper = new 
SavingsProductHelper().withNominalAnnualInterestRate(new BigDecimal("10.0"))
+                .withAccountingRuleAsAccrualBased(accountList)
+                
.withSavingsReferenceAccountId(savingsReferenceAccount.getAccountID().toString())
+                
.withSavingsControlAccountId(savingsControlAccount.getAccountID().toString())
+                
.withInterestOnSavingsAccountId(interestOnSavingsAccount.getAccountID().toString())
+                
.withInterestPayableAccountId(interestPayableAccount.getAccountID().toString())
+                
.withIncomeFromFeeAccountId(incomeFromFeesAccount.getAccountID().toString());
+
+        final Integer savingsProductId = 
SavingsProductHelper.createSavingsProduct(productHelper.build(), 
this.requestSpec,
+                this.responseSpec);
+        Assertions.assertNotNull(savingsProductId, "Failed to create savings 
product.");
+
+        final Integer clientId = ClientHelper.createClient(this.requestSpec, 
this.responseSpec, "01 January 2020");
+        final LocalDate startDate = 
LocalDate.now(Utils.getZoneIdOfTenant()).minusDays(daysToSubtract);
+        final String startDateString = DateTimeFormatter.ofPattern("dd MMMM 
yyyy", Locale.US).format(startDate);
+        final Integer savingsAccountId = 
this.savingsAccountHelper.applyForSavingsApplicationOnDate(clientId, 
savingsProductId,
+                SavingsAccountHelper.ACCOUNT_TYPE_INDIVIDUAL, startDateString);
+        this.savingsAccountHelper.approveSavingsOnDate(savingsAccountId, 
startDateString);
+        this.savingsAccountHelper.activateSavings(savingsAccountId, 
startDateString);
+        this.savingsAccountHelper.depositToSavingsAccount(savingsAccountId, 
"1000", startDateString, CommonConstants.RESPONSE_RESOURCE_ID);
+
+        // --- ACT ---
+        try {

Review Comment:
   Sure, I will remove it 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@fineract.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to