/* * 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.framework.components.fieldConfiguration.util.helpers; import java.util.List; import java.util.Map; import junit.framework.Assert; import org.junit.Test; import org.mifos.framework.MifosIntegrationTestCase; import org.mifos.framework.business.EntityMaster; import org.mifos.framework.components.fieldConfiguration.business.FieldConfigurationEntity; import org.mifos.framework.components.fieldConfiguration.persistence.LegacyFieldConfigurationDao; import org.mifos.framework.exceptions.ApplicationException; import org.mifos.framework.exceptions.HibernateProcessException; import org.mifos.framework.exceptions.PersistenceException; import org.mifos.framework.struts.plugin.helper.EntityMasterData; import org.springframework.beans.factory.annotation.Autowired; public class FieldConfigIntegrationTest extends MifosIntegrationTestCase { @Autowired private LegacyFieldConfigurationDao legacyFieldConfigurationDao; private FieldConfig fieldConfig = FieldConfig.getInstance(); @Test public void testIsFieldHidden() throws HibernateProcessException, PersistenceException { EntityMasterData.getInstance().init(); List<EntityMaster> entityMasterList = legacyFieldConfigurationDao.getEntityMasterList(); for (EntityMaster entityMaster : entityMasterList) { fieldConfig.getEntityFieldMap() .put(entityMaster.getId(), legacyFieldConfigurationDao.getListOfFields(entityMaster.getId())); } Assert.assertEquals(fieldConfig.isFieldHidden("Loan.PurposeOfLoan"), false); Assert.assertEquals(fieldConfig.isFieldHidden("Group.City"), true); fieldConfig.getEntityFieldMap().clear(); } @Test public void testIsFieldMandatory() throws HibernateProcessException, PersistenceException { EntityMasterData.getInstance().init(); List<EntityMaster> entityMasterList = legacyFieldConfigurationDao.getEntityMasterList(); for (EntityMaster entityMaster : entityMasterList) { fieldConfig.getEntityFieldMap() .put(entityMaster.getId(), legacyFieldConfigurationDao.getListOfFields(entityMaster.getId())); } Assert.assertEquals(fieldConfig.isFieldManadatory("Loan.PurposeOfLoan"), true); fieldConfig.getEntityFieldMap().clear(); } @Test public void testInit() throws HibernateProcessException, ApplicationException { EntityMasterData.getInstance().init(); fieldConfig.init(); Map<Short, List<FieldConfigurationEntity>> entityMandatoryMap = fieldConfig.getEntityMandatoryFieldMap(); Assert.assertEquals(22, entityMandatoryMap.size()); List<FieldConfigurationEntity> listOfMandatoryFields = entityMandatoryMap.get(Short.valueOf("22")); Assert.assertEquals(2, listOfMandatoryFields.size()); List<FieldConfigurationEntity> listOfFields = fieldConfig.getEntityFieldMap().get(Short.valueOf("22")); Assert.assertEquals(7, listOfFields.size()); for (FieldConfigurationEntity fieldConfigurationEntity : listOfMandatoryFields) { Assert.assertTrue("PurposeOfLoan".equals(fieldConfigurationEntity.getFieldName()) || "SourceOfFund".equals(fieldConfigurationEntity.getFieldName())); } Assert.assertEquals(fieldConfig.isFieldHidden("Loan.PurposeOfLoan"), false); Assert.assertEquals(fieldConfig.isFieldManadatory("Loan.PurposeOfLoan"), true); Assert.assertEquals(fieldConfig.isFieldHidden("Loan.SourceOfFund"), false); Assert.assertEquals(fieldConfig.isFieldManadatory("Loan.SourceOfFund"), true); fieldConfig.getEntityFieldMap().clear(); fieldConfig.getEntityMandatoryFieldMap().clear(); } }