/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.fp.document.validation.impl; import static org.kuali.kfs.sys.KFSConstants.GL_CREDIT_CODE; import static org.kuali.kfs.sys.KFSConstants.GL_DEBIT_CODE; import static org.kuali.kfs.sys.document.validation.impl.AccountingDocumentRuleTestUtils.testAddAccountingLineRule_ProcessAddAccountingLineBusinessRules; import static org.kuali.kfs.sys.document.validation.impl.AccountingDocumentRuleTestUtils.testGenerateGeneralLedgerPendingEntriesRule_ProcessGenerateGeneralLedgerPendingEntries; import static org.kuali.kfs.sys.document.validation.impl.AccountingDocumentRuleTestUtils.testRouteDocumentRule_processRouteDocument; import static org.kuali.kfs.sys.document.validation.impl.AccountingDocumentRuleTestUtils.testSaveDocumentRule_ProcessSaveDocument; import static org.kuali.kfs.sys.fixture.AccountingLineFixture.ACCRUED_INCOME_LINE; import static org.kuali.kfs.sys.fixture.AccountingLineFixture.ACCRUED_SICK_PAY_LINE; import static org.kuali.kfs.sys.fixture.AccountingLineFixture.EXPENSE_GEC_LINE; import static org.kuali.kfs.sys.fixture.AccountingLineFixture.EXPENSE_LINE; import static org.kuali.kfs.sys.fixture.AccountingLineFixture.FUND_BALANCE_LINE; import static org.kuali.kfs.sys.fixture.AccountingLineFixture.LINE15; import static org.kuali.kfs.sys.fixture.AccountingLineFixture.LINE8; import static org.kuali.kfs.sys.fixture.GeneralLedgerPendingEntryFixture.EXPECTED_AV_EXPLICIT_SOURCE_PENDING_ENTRY; import static org.kuali.kfs.sys.fixture.GeneralLedgerPendingEntryFixture.EXPECTED_AV_EXPLICIT_SOURCE_PENDING_ENTRY_FOR_EXPENSE; import static org.kuali.kfs.sys.fixture.GeneralLedgerPendingEntryFixture.EXPECTED_AV_EXPLICIT_TARGET_PENDING_ENTRY; import static org.kuali.kfs.sys.fixture.GeneralLedgerPendingEntryFixture.EXPECTED_AV_EXPLICIT_TARGET_PENDING_ENTRY_FOR_EXPENSE; import static org.kuali.kfs.sys.fixture.UserNameFixture.khuntley; import java.util.ArrayList; import java.util.List; import org.kuali.kfs.coa.businessobject.AccountingPeriod; import org.kuali.kfs.coa.service.AccountingPeriodService; import org.kuali.kfs.fp.document.AuxiliaryVoucherDocument; import org.kuali.kfs.sys.ConfigureContext; import org.kuali.kfs.sys.DocumentTestUtils; import org.kuali.kfs.sys.KFSConstants; import org.kuali.kfs.sys.businessobject.AccountingLine; import org.kuali.kfs.sys.businessobject.SourceAccountingLine; import org.kuali.kfs.sys.businessobject.TargetAccountingLine; import org.kuali.kfs.sys.context.KualiTestBase; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.kfs.sys.context.TestUtils; import org.kuali.kfs.sys.document.AccountingDocument; import org.kuali.kfs.sys.document.validation.Validation; import org.kuali.kfs.sys.document.validation.impl.AccountingLineValueAllowedValidation; import org.kuali.kfs.sys.fixture.AccountingLineFixture; import org.kuali.kfs.sys.service.IsDebitTestUtils; import org.kuali.rice.kns.service.DataDictionaryService; import org.kuali.rice.krad.service.DocumentService; @ConfigureContext(session = khuntley) public class AuxiliaryVoucherDocumentRuleTest extends KualiTestBase { public static final Class<AuxiliaryVoucherDocument> DOCUMENT_CLASS = AuxiliaryVoucherDocument.class; public void testIsDebit_debitCode() throws Exception { AccountingDocument accountingDocument = IsDebitTestUtils.getDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); AccountingLine accountingLine = (AccountingLine) accountingDocument.getSourceAccountingLineClass().newInstance(); accountingLine.setDebitCreditCode(GL_DEBIT_CODE); assertTrue(IsDebitTestUtils.isDebit(SpringContext.getBean(DataDictionaryService.class), SpringContext.getBean(DataDictionaryService.class), accountingDocument, accountingLine)); } public void testIsDebit_creditCode() throws Exception { AccountingDocument accountingDocument = IsDebitTestUtils.getDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); AccountingLine accountingLine = (AccountingLine) accountingDocument.getSourceAccountingLineClass().newInstance(); accountingLine.setDebitCreditCode(GL_CREDIT_CODE); assertFalse(IsDebitTestUtils.isDebit(SpringContext.getBean(DataDictionaryService.class), SpringContext.getBean(DataDictionaryService.class), accountingDocument, accountingLine)); } public void testIsDebit_blankValue() throws Exception { AccountingDocument accountingDocument = IsDebitTestUtils.getDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); AccountingLine accountingLine = (AccountingLine) accountingDocument.getSourceAccountingLineClass().newInstance(); accountingLine.setDebitCreditCode(" "); assertTrue(IsDebitTestUtils.isDebitIllegalStateException(SpringContext.getBean(DataDictionaryService.class), SpringContext.getBean(DataDictionaryService.class), accountingDocument, accountingLine)); } public void testIsDebit_errorCorrection_debitCode() throws Exception { AccountingDocument accountingDocument = IsDebitTestUtils.getErrorCorrectionDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); AccountingLine accountingLine = (AccountingLine) accountingDocument.getSourceAccountingLineClass().newInstance(); accountingLine.setDebitCreditCode(GL_DEBIT_CODE); assertTrue(IsDebitTestUtils.isDebit(SpringContext.getBean(DataDictionaryService.class), SpringContext.getBean(DataDictionaryService.class), accountingDocument, accountingLine)); } public void testIsDebit_errorCorrection_creditCode() throws Exception { AccountingDocument accountingDocument = IsDebitTestUtils.getErrorCorrectionDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); AccountingLine accountingLine = (AccountingLine) accountingDocument.getSourceAccountingLineClass().newInstance(); accountingLine.setDebitCreditCode(GL_CREDIT_CODE); assertFalse(IsDebitTestUtils.isDebit(SpringContext.getBean(DataDictionaryService.class), SpringContext.getBean(DataDictionaryService.class), accountingDocument, accountingLine)); } public void testIsDebit_errorCorrection_blankValue() throws Exception { AccountingDocument accountingDocument = IsDebitTestUtils.getErrorCorrectionDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); AccountingLine accountingLine = (AccountingLine) accountingDocument.getSourceAccountingLineClass().newInstance(); accountingLine.setDebitCreditCode(" "); assertTrue(IsDebitTestUtils.isDebitIllegalStateException(SpringContext.getBean(DataDictionaryService.class), SpringContext.getBean(DataDictionaryService.class), accountingDocument, accountingLine)); } public void testIsObjectTypeAllowed_InvalidObjectType() throws Exception { testAddAccountingLineRule_IsObjectTypeAllowed(getInvalidObjectTypeSourceLine(), false); } public void testIsObjectTypeAllowed_Valid() throws Exception { testAddAccountingLineRule_IsObjectTypeAllowed(getValidObjectTypeSourceLine(), true); } public void testIsObjectCodeAllowed_Valid() throws Exception { boolean result = true; AuxiliaryVoucherDocument document = createDocument(); AccountingLineValueAllowedValidation validation = (AccountingLineValueAllowedValidation)SpringContext.getBean(Validation.class,"AccountingDocument-IsObjectCodeAllowed-DefaultValidation"); if (validation == null) throw new IllegalStateException("No object code value allowed validation"); validation.setAccountingDocumentForValidation(document); validation.setAccountingLineForValidation(getValidObjectCodeSourceLine()); result = validation.validate(null); assertEquals(true, result); } public void testAddAccountingLine_InvalidObjectSubType() throws Exception { AccountingDocument doc = createDocumentWithInvalidObjectSubType(); testAddAccountingLineRule_ProcessAddAccountingLineBusinessRules(doc, false); } public void testAddAccountingLine_Valid() throws Exception { AccountingDocument doc = createDocumentWithValidObjectSubType(); testAddAccountingLineRule_ProcessAddAccountingLineBusinessRules(doc, true); } public void testIsObjectSubTypeAllowed_InvalidSubType() throws Exception { testAddAccountingLine_IsObjectSubTypeAllowed(AccountingLineFixture.LINE17.createSourceAccountingLine(), false); } public void testIsObjectSubTypeAllowed_ValidSubType() throws Exception { testAddAccountingLine_IsObjectSubTypeAllowed(AccountingLineFixture.LINE2.createTargetAccountingLine(), true); } public void testProcessSaveDocument_Valid() throws Exception { testSaveDocumentRule_ProcessSaveDocument(createDocument(), true); } public void testProcessSaveDocument_Invalid() throws Exception { testSaveDocumentRule_ProcessSaveDocument(createDocumentInvalidForSave(), false); } public void testProcessSaveDocument_Invalid1() throws Exception { try { testSaveDocumentRule_ProcessSaveDocument(null, false); fail("validated null doc"); } catch (Exception e) { assertTrue(true); } } public void testProcessRouteDocument_Valid() throws Exception { testRouteDocumentRule_processRouteDocument(createDocumentValidForRouting(), true); } public void testProcessRouteDocument_Invalid() throws Exception { testRouteDocumentRule_processRouteDocument(createDocument(), false); } public void testProcessRouteDocument_NoAccountingLines() throws Exception { testRouteDocumentRule_processRouteDocument(createDocument(), false); } public void testProcessRouteDocument_Unbalanced() throws Exception { testRouteDocumentRule_processRouteDocument(createDocumentUnbalanced(), false); } public void testProcessGenerateGeneralLedgerPendingEntries_validTargetExpense() throws Exception { testGenerateGeneralLedgerPendingEntriesRule_ProcessGenerateGeneralLedgerPendingEntries(createDocument(), getExpenseTargetLine(), EXPECTED_AV_EXPLICIT_TARGET_PENDING_ENTRY_FOR_EXPENSE, null); } public void testProcessGenerateGeneralLedgerPendingEntries_validSourceExpense() throws Exception { testGenerateGeneralLedgerPendingEntriesRule_ProcessGenerateGeneralLedgerPendingEntries(createDocument(), getExpenseSourceLine(), EXPECTED_AV_EXPLICIT_SOURCE_PENDING_ENTRY_FOR_EXPENSE, null); } public void testProcessGenerateGeneralLedgerPendingEntries_validSourceAsset() throws Exception { testGenerateGeneralLedgerPendingEntriesRule_ProcessGenerateGeneralLedgerPendingEntries(createDocument(), getAssetSourceLine(), EXPECTED_AV_EXPLICIT_SOURCE_PENDING_ENTRY, null); } public void testProcessGenerateGeneralLedgerPendingEntries_validTargetAsset() throws Exception { testGenerateGeneralLedgerPendingEntriesRule_ProcessGenerateGeneralLedgerPendingEntries(createDocument(), getAssetTargetLine(), EXPECTED_AV_EXPLICIT_TARGET_PENDING_ENTRY, null); } private AuxiliaryVoucherDocument createDocument() throws Exception { // AV document has a restriction on accounting period cannot be more than 2 periods behind current return DocumentTestUtils.createDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); } private AuxiliaryVoucherDocument createDocumentValidForRouting() throws Exception { return createDocumentWithValidObjectSubType(); } private AuxiliaryVoucherDocument createDocumentInvalidForSave() throws Exception { return createDocumentInvalidDescription(); } private AuxiliaryVoucherDocument createDocumentInvalidDescription() throws Exception { AuxiliaryVoucherDocument document = DocumentTestUtils.createDocument(SpringContext.getBean(DocumentService.class), AuxiliaryVoucherDocument.class); document.getDocumentHeader().setDocumentDescription(null); return document; } private AuxiliaryVoucherDocument createDocumentWithValidObjectSubType() throws Exception { AuxiliaryVoucherDocument retval = createDocument(); retval.setSourceAccountingLines(getValidObjectSubTypeSourceLines()); return retval; } private SourceAccountingLine getExpenseSourceLine() throws Exception { return EXPENSE_GEC_LINE.createAccountingLine(SourceAccountingLine.class, KFSConstants.GL_DEBIT_CODE); } private TargetAccountingLine getExpenseTargetLine() throws Exception { return EXPENSE_LINE.createTargetAccountingLine(); } private TargetAccountingLine getAssetTargetLine() throws Exception { return ACCRUED_INCOME_LINE.createAccountingLine(TargetAccountingLine.class, KFSConstants.GL_DEBIT_CODE); } private TargetAccountingLine getValidObjectSubTypeTargetLine() throws Exception { return new TargetAccountingLine(); } private List<SourceAccountingLine> getValidObjectSubTypeSourceLines() throws Exception { List<SourceAccountingLine> retval = new ArrayList<SourceAccountingLine>(); retval.add(LINE15.createAccountingLine(SourceAccountingLine.class, KFSConstants.GL_CREDIT_CODE)); retval.add(LINE15.createAccountingLine(SourceAccountingLine.class, KFSConstants.GL_DEBIT_CODE)); return retval; } private List<SourceAccountingLine> getInvalidObjectSubTypeSourceLines() throws Exception { List<SourceAccountingLine> retval = new ArrayList<SourceAccountingLine>(); retval.add(getAccruedSickPaySourceLineParameter()); retval.add(getAccruedSickPaySourceLineParameter()); return retval; } private SourceAccountingLine getValidObjectTypeSourceLine() throws Exception { return LINE8.createSourceAccountingLine(); } private SourceAccountingLine getInvalidObjectTypeSourceLine() throws Exception { return FUND_BALANCE_LINE.createSourceAccountingLine(); } private SourceAccountingLine getValidObjectCodeSourceLine() throws Exception { return getAccruedIncomeSourceLineParameter(); } private SourceAccountingLine getAssetSourceLine() throws Exception { return getAccruedIncomeSourceLineParameter(); } private AuxiliaryVoucherDocument createDocumentWithInvalidObjectSubType() throws Exception { AuxiliaryVoucherDocument retval = createDocument(); retval.setSourceAccountingLines(getInvalidObjectSubTypeSourceLines()); return retval; } private AuxiliaryVoucherDocument createDocumentUnbalanced() throws Exception { AuxiliaryVoucherDocument retval = createDocument(); retval.setSourceAccountingLines(getInvalidObjectSubTypeSourceLines()); return retval; } private SourceAccountingLine getAccruedIncomeSourceLineParameter() throws Exception { return ACCRUED_INCOME_LINE.createAccountingLine(SourceAccountingLine.class, KFSConstants.GL_DEBIT_CODE); } private SourceAccountingLine getAccruedSickPaySourceLineParameter() throws Exception { return ACCRUED_SICK_PAY_LINE.createAccountingLine(SourceAccountingLine.class, KFSConstants.GL_DEBIT_CODE); } /** * This tests that the rules are calculating if dates are within accounting period grace periods correctly. */ public void testWithinGracePeriod() { final Integer currentFiscalYear = TestUtils.getFiscalYearForTesting(); final Integer pastFiscalYear = new Integer(currentFiscalYear.intValue() - 1); AccountingPeriod firstPeriod = SpringContext.getBean(AccountingPeriodService.class).getByPeriod("10", new Integer(currentFiscalYear)); assertNotNull( "Unable to find accounting period " + currentFiscalYear + "-10", firstPeriod); java.util.Calendar firstPeriodInside = new java.util.GregorianCalendar(currentFiscalYear, java.util.Calendar.MAY, 8); java.util.Calendar firstPeriodOutside = new java.util.GregorianCalendar(currentFiscalYear, java.util.Calendar.MAY, 23); final AuxiliaryVoucherDocument avDoc = new AuxiliaryVoucherDocument(); assertTrue(avDoc.calculateIfWithinGracePeriod(new java.sql.Date(firstPeriodInside.getTimeInMillis()), firstPeriod)); assertFalse(avDoc.calculateIfWithinGracePeriod(new java.sql.Date(firstPeriodOutside.getTimeInMillis()), firstPeriod)); AccountingPeriod secondPeriod = SpringContext.getBean(AccountingPeriodService.class).getByPeriod("13", new Integer(pastFiscalYear)); assertNotNull( "Unable to find accounting period " + pastFiscalYear + "-13", secondPeriod); java.util.Calendar secondPeriodInside = new java.util.GregorianCalendar(pastFiscalYear, java.util.Calendar.JUNE, 20); java.util.Calendar secondPeriodOutside = new java.util.GregorianCalendar(currentFiscalYear, java.util.Calendar.JULY, 21); assertTrue(avDoc.calculateIfWithinGracePeriod(new java.sql.Date(secondPeriodInside.getTimeInMillis()), secondPeriod)); assertFalse(avDoc.calculateIfWithinGracePeriod(new java.sql.Date(secondPeriodOutside.getTimeInMillis()), secondPeriod)); } /** * This tests that comparable dates are being calculated correctly. */ public void testComparableDateForm() { final AuxiliaryVoucherDocument avDoc = new AuxiliaryVoucherDocument(); java.util.Calendar firstDate = new java.util.GregorianCalendar(2007, java.util.Calendar.MAY, 8); assertEquals(new Integer(avDoc.comparableDateForm(new java.sql.Date(firstDate.getTimeInMillis()))), new Integer(732683)); java.util.Calendar secondDate = new java.util.GregorianCalendar(1776, java.util.Calendar.JULY, 4); assertEquals(new Integer(avDoc.comparableDateForm(new java.sql.Date(secondDate.getTimeInMillis()))), new Integer(648426)); java.util.Calendar thirdDate = new java.util.GregorianCalendar(2007, java.util.Calendar.MAY, 7); assertEquals(new Integer(avDoc.comparableDateForm(new java.sql.Date(thirdDate.getTimeInMillis()))), new Integer(732682)); } /** * This tests that the first day of months are being correctly calculated. */ public void testCalculateFirstDayOfMonth() { java.util.Calendar cal = new java.util.GregorianCalendar(); cal.set(java.util.Calendar.MONTH, java.util.Calendar.APRIL); cal.set(java.util.Calendar.DAY_OF_MONTH, 15); doFirstDayOfMonthTest(cal); cal.set(java.util.Calendar.DAY_OF_MONTH, 30); doFirstDayOfMonthTest(cal); cal.set(java.util.Calendar.DAY_OF_MONTH, 1); doFirstDayOfMonthTest(cal); cal.set(java.util.Calendar.MONTH, java.util.Calendar.MARCH); cal.set(java.util.Calendar.DAY_OF_MONTH, 31); doFirstDayOfMonthTest(cal); } /** * This method tests if the given calendar date is the first day of the month, after the rule converts it. * * @param cal the calendar to check */ private void doFirstDayOfMonthTest(java.util.Calendar cal) { final AuxiliaryVoucherDocument avDoc = new AuxiliaryVoucherDocument(); java.sql.Date firstOfMonth = avDoc.calculateFirstDayOfMonth(new java.sql.Date(cal.getTimeInMillis())); java.util.Calendar testCal = new java.util.GregorianCalendar(); testCal.setTime(firstOfMonth); assertEquals(new Integer(1), new Integer(testCal.get(java.util.Calendar.DAY_OF_MONTH))); } private void testAddAccountingLineRule_IsObjectTypeAllowed(AccountingLine accountingLine, boolean expected) throws Exception { boolean result = true; AuxiliaryVoucherDocument document = createDocument(); AccountingLineValueAllowedValidation validation = (AccountingLineValueAllowedValidation)SpringContext.getBean(Validation.class,"AccountingDocument-IsObjectTypeAllowed-DefaultValidation"); if (validation == null) throw new IllegalStateException("No object type value allowed validation"); validation.setAccountingDocumentForValidation(document); validation.setAccountingLineForValidation(accountingLine); result = validation.validate(null); assertEquals(expected, result); } private void testAddAccountingLine_IsObjectSubTypeAllowed(AccountingLine accountingLine, boolean expected) throws Exception { boolean result = true; AuxiliaryVoucherDocument document = createDocument(); AccountingLineValueAllowedValidation validation = (AccountingLineValueAllowedValidation)SpringContext.getBean(Validation.class,"AccountingDocument-IsObjectSubTypeAllowed-DefaultValidation"); if (validation == null) throw new IllegalStateException("No object sub type value allowed validation"); validation.setAccountingDocumentForValidation(document); validation.setAccountingLineForValidation(accountingLine); result = validation.validate(null); assertEquals(expected, result); } }