/* * 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.module.ld.batch.service.impl; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.Map; import java.util.Properties; import org.apache.commons.lang.StringUtils; import org.kuali.kfs.gl.batch.service.PostTransaction; import org.kuali.kfs.gl.businessobject.OriginEntryGroup; import org.kuali.kfs.module.ld.businessobject.LedgerBalance; import org.kuali.kfs.module.ld.service.LaborOriginEntryGroupService; import org.kuali.kfs.module.ld.testdata.LaborTestDataPropertyConstants; import org.kuali.kfs.sys.ConfigureContext; import org.kuali.kfs.sys.ObjectUtil; import org.kuali.kfs.sys.TestDataPreparator; import org.kuali.kfs.sys.context.KualiTestBase; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.rice.core.api.datetime.DateTimeService; import org.kuali.rice.krad.service.BusinessObjectService; @ConfigureContext public class LaborLedgerBalancePosterTest extends KualiTestBase { private Properties properties; private String fieldNames; private String deliminator; private List<String> keyFieldList; private Map fieldValues; private OriginEntryGroup group1; private Date today; private BusinessObjectService businessObjectService; private PostTransaction laborLedgerBalancePoster; private LaborOriginEntryGroupService originEntryGroupService; @Override public void setUp() throws Exception { super.setUp(); String messageFileName = LaborTestDataPropertyConstants.TEST_DATA_PACKAGE_NAME + "/message.properties"; String propertiesFileName = LaborTestDataPropertyConstants.TEST_DATA_PACKAGE_NAME + "/laborLedgerBalancePoster.properties"; properties = TestDataPreparator.loadPropertiesFromClassPath(propertiesFileName); fieldNames = properties.getProperty("fieldNames"); deliminator = properties.getProperty("deliminator"); keyFieldList = Arrays.asList(StringUtils.split(fieldNames, deliminator)); laborLedgerBalancePoster = SpringContext.getBean(PostTransaction.class,"laborLedgerBalancePoster"); businessObjectService = SpringContext.getBean(BusinessObjectService.class); originEntryGroupService = SpringContext.getBean(LaborOriginEntryGroupService.class); DateTimeService dateTimeService = SpringContext.getBean(DateTimeService.class); //TODO:- commented out //group1 = originEntryGroupService.createGroup(dateTimeService.getCurrentSqlDate(), LABOR_MAIN_POSTER_VALID, false, false, false); today = dateTimeService.getCurrentDate(); LedgerBalance cleanup = new LedgerBalance(); ObjectUtil.populateBusinessObject(cleanup, properties, "dataCleanup", fieldNames, deliminator); fieldValues = ObjectUtil.buildPropertyMap(cleanup, Arrays.asList(StringUtils.split(fieldNames, deliminator))); businessObjectService.deleteMatching(LedgerBalance.class, fieldValues); } public void testPost() throws Exception { //TODO:- need to change using file // int numberOfTestData = Integer.valueOf(properties.getProperty("post.numOfData")); // int expectedInsertion = Integer.valueOf(properties.getProperty("post.expectedInsertion")); // int expectedUpdate = Integer.valueOf(properties.getProperty("post.expectedUpdate")); // int expectedNumberOfRecords = Integer.valueOf(properties.getProperty("post.expectedNumberOfRecords")); // int expectedNumberOfOperation = Integer.valueOf(properties.getProperty("post.expectedNumberOfOperation")); // // List<LaborOriginEntry> transactionList = LaborTestDataPreparator.getLaborOriginEntryList(properties, "post.testData", numberOfTestData, group1); // Map<String, Integer> operationType = new HashMap<String, Integer>(); // // for (LaborOriginEntry transaction : transactionList) { // String operation = laborLedgerBalancePoster.post(transaction, 0, today); // Integer currentNumber = operationType.get(operation); // Integer numberOfOperation = currentNumber != null ? currentNumber + 1 : 1; // operationType.put(operation, numberOfOperation); // } // // Collection returnValues = businessObjectService.findMatching(LedgerBalance.class, fieldValues); // assertEquals(expectedNumberOfRecords, returnValues.size()); // // assertEquals(expectedNumberOfOperation, operationType.size()); // assertEquals(expectedInsertion, operationType.get(KFSConstants.OperationType.INSERT).intValue()); // assertEquals(expectedUpdate, operationType.get(KFSConstants.OperationType.UPDATE).intValue()); // // LedgerBalance expected1 = new LedgerBalance(); // ObjectUtil.populateBusinessObject(expected1, properties, "post.expected1", fieldNames, deliminator); } }