dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #02894
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 950: Added tests for batchhandlers.
------------------------------------------------------------
revno: 950
committer: Lars Helge Oeverland larshelge@xxxxxxxxx
branch nick: trunk
timestamp: Sun 2009-11-01 21:30:56 +0100
message:
Added tests for batchhandlers.
added:
dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/DataElementGroupSetBatchHandlerTest.java
dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/IndicatorGroupSetBatchHandlerTest.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription.
=== added file 'dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/DataElementGroupSetBatchHandlerTest.java'
--- dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/DataElementGroupSetBatchHandlerTest.java 1970-01-01 00:00:00 +0000
+++ dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/DataElementGroupSetBatchHandlerTest.java 2009-11-01 20:30:56 +0000
@@ -0,0 +1,157 @@
+package org.hisp.dhis.jdbc.batchhandler;
+
+/*
+ * Copyright (c) 2004-2007, University of Oslo
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ * * Neither the name of the HISP project nor the names of its contributors may
+ * be used to endorse or promote products derived from this software without
+ * specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+import static junit.framework.Assert.assertEquals;
+import static junit.framework.Assert.assertFalse;
+import static junit.framework.Assert.assertNotNull;
+import static junit.framework.Assert.assertTrue;
+
+import java.util.Collection;
+
+import org.amplecode.quick.BatchHandler;
+import org.amplecode.quick.BatchHandlerFactory;
+import org.hisp.dhis.DhisTest;
+import org.hisp.dhis.dataelement.DataElementGroupSet;
+import org.hisp.dhis.dataelement.DataElementService;
+import org.junit.Test;
+
+/**
+ * @author Lars Helge Overland
+ * @version $Id$
+ */
+public class DataElementGroupSetBatchHandlerTest
+ extends DhisTest
+{
+ private BatchHandlerFactory batchHandlerFactory;
+
+ private DataElementService dataElementService;
+
+ private BatchHandler<DataElementGroupSet> batchHandler;
+
+ private DataElementGroupSet groupSetA;
+ private DataElementGroupSet groupSetB;
+ private DataElementGroupSet groupSetC;
+
+ // -------------------------------------------------------------------------
+ // Fixture
+ // -------------------------------------------------------------------------
+
+ @Override
+ public void setUpTest()
+ {
+ dataElementService = (DataElementService) getBean( DataElementService.ID );
+
+ batchHandlerFactory = (BatchHandlerFactory) getBean( "batchHandlerFactory" );
+
+ batchHandler = batchHandlerFactory.createBatchHandler( DataElementGroupSetBatchHandler.class );
+
+ batchHandler.init();
+
+ groupSetA = createDataElementGroupSet( 'A' );
+ groupSetB = createDataElementGroupSet( 'B' );
+ groupSetC = createDataElementGroupSet( 'C' );
+ }
+
+ @Override
+ public void tearDownTest()
+ {
+ batchHandler.flush();
+ }
+
+ @Override
+ public boolean emptyDatabaseAfterTest()
+ {
+ return true;
+ }
+
+ // -------------------------------------------------------------------------
+ // Tests
+ // -------------------------------------------------------------------------
+
+ @Test
+ public void testAddObject()
+ {
+ batchHandler.addObject( groupSetA );
+ batchHandler.addObject( groupSetB );
+ batchHandler.addObject( groupSetC );
+
+ batchHandler.flush();
+
+ Collection<DataElementGroupSet> groupsSets = dataElementService.getAllDataElementGroupSets();
+
+ assertTrue( groupsSets.contains( groupSetA ) );
+ assertTrue( groupsSets.contains( groupSetB ) );
+ assertTrue( groupsSets.contains( groupSetC ) );
+ }
+
+ @Test
+ public void testInsertObject()
+ {
+ int idA = batchHandler.insertObject( groupSetA, true );
+ int idB = batchHandler.insertObject( groupSetB, true );
+ int idC = batchHandler.insertObject( groupSetC, true );
+
+ assertNotNull( dataElementService.getDataElementGroupSet( idA ) );
+ assertNotNull( dataElementService.getDataElementGroupSet( idB ) );
+ assertNotNull( dataElementService.getDataElementGroupSet( idC ) );
+ }
+
+ @Test
+ public void testUpdateObject()
+ {
+ int id = batchHandler.insertObject( groupSetA, true );
+
+ groupSetA.setId( id );
+ groupSetA.setName( "UpdatedName" );
+
+ batchHandler.updateObject( groupSetA );
+
+ assertEquals( "UpdatedName", dataElementService.getDataElementGroupSet( id ).getName() );
+ }
+
+ @Test
+ public void testGetObjectIdentifier()
+ {
+ int referenceId = dataElementService.addDataElementGroupSet( groupSetA );
+
+ int retrievedId = batchHandler.getObjectIdentifier( "DataElementGroupSetA" );
+
+ assertEquals( referenceId, retrievedId );
+ }
+
+ @Test
+ public void testObjectExists()
+ {
+ dataElementService.addDataElementGroupSet( groupSetA );
+
+ assertTrue( batchHandler.objectExists( groupSetA ) );
+
+ assertFalse( batchHandler.objectExists( groupSetB ) );
+ }
+}
=== added file 'dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/IndicatorGroupSetBatchHandlerTest.java'
--- dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/IndicatorGroupSetBatchHandlerTest.java 1970-01-01 00:00:00 +0000
+++ dhis-2/dhis-services/dhis-service-jdbc-test/src/test/java/org/hisp/dhis/jdbc/batchhandler/IndicatorGroupSetBatchHandlerTest.java 2009-11-01 20:30:56 +0000
@@ -0,0 +1,155 @@
+package org.hisp.dhis.jdbc.batchhandler;
+
+/*
+ * Copyright (c) 2004-2007, University of Oslo
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ * * Neither the name of the HISP project nor the names of its contributors may
+ * be used to endorse or promote products derived from this software without
+ * specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+import static junit.framework.Assert.assertEquals;
+import static junit.framework.Assert.assertFalse;
+import static junit.framework.Assert.assertNotNull;
+import static junit.framework.Assert.assertTrue;
+
+import java.util.Collection;
+
+import org.amplecode.quick.BatchHandler;
+import org.amplecode.quick.BatchHandlerFactory;
+import org.hisp.dhis.DhisTest;
+import org.hisp.dhis.indicator.IndicatorGroupSet;
+import org.hisp.dhis.indicator.IndicatorService;
+import org.junit.Test;
+
+/**
+ * @author Lars Helge Overland
+ * @version $Id$
+ */
+public class IndicatorGroupSetBatchHandlerTest
+ extends DhisTest
+{
+ private BatchHandlerFactory batchHandlerFactory;
+
+ private BatchHandler<IndicatorGroupSet> batchHandler;
+
+ private IndicatorGroupSet groupSetA;
+ private IndicatorGroupSet groupSetB;
+ private IndicatorGroupSet groupSetC;
+
+ // -------------------------------------------------------------------------
+ // Fixture
+ // -------------------------------------------------------------------------
+
+ @Override
+ public void setUpTest()
+ {
+ indicatorService = (IndicatorService) getBean( IndicatorService.ID );
+
+ batchHandlerFactory = (BatchHandlerFactory) getBean( "batchHandlerFactory" );
+
+ batchHandler = batchHandlerFactory.createBatchHandler( IndicatorGroupSetBatchHandler.class );
+
+ batchHandler.init();
+
+ groupSetA = createIndicatorGroupSet( 'A' );
+ groupSetB = createIndicatorGroupSet( 'B' );
+ groupSetC = createIndicatorGroupSet( 'C' );
+ }
+
+ @Override
+ public void tearDownTest()
+ {
+ batchHandler.flush();
+ }
+
+ @Override
+ public boolean emptyDatabaseAfterTest()
+ {
+ return true;
+ }
+
+ // -------------------------------------------------------------------------
+ // Tests
+ // -------------------------------------------------------------------------
+
+ @Test
+ public void testAddObject()
+ {
+ batchHandler.addObject( groupSetA );
+ batchHandler.addObject( groupSetB );
+ batchHandler.addObject( groupSetC );
+
+ batchHandler.flush();
+
+ Collection<IndicatorGroupSet> groupSets = indicatorService.getAllIndicatorGroupSets();
+
+ assertTrue( groupSets.contains( groupSetA ) );
+ assertTrue( groupSets.contains( groupSetB ) );
+ assertTrue( groupSets.contains( groupSetC ) );
+ }
+
+ @Test
+ public void testInsertObject()
+ {
+ int idA = batchHandler.insertObject( groupSetA, true );
+ int idB = batchHandler.insertObject( groupSetB, true );
+ int idC = batchHandler.insertObject( groupSetC, true );
+
+ assertNotNull( indicatorService.getIndicatorGroupSet( idA ) );
+ assertNotNull( indicatorService.getIndicatorGroupSet( idB ) );
+ assertNotNull( indicatorService.getIndicatorGroupSet( idC ) );
+ }
+
+ @Test
+ public void testUpdateObject()
+ {
+ int id = batchHandler.insertObject( groupSetA, true );
+
+ groupSetA.setId( id );
+ groupSetA.setName( "UpdatedName" );
+
+ batchHandler.updateObject( groupSetA );
+
+ assertEquals( "UpdatedName", indicatorService.getIndicatorGroupSet( id ).getName() );
+ }
+
+ @Test
+ public void testGetObjectIdentifier()
+ {
+ int referenceId = indicatorService.addIndicatorGroupSet( groupSetA );
+
+ int retrievedId = batchHandler.getObjectIdentifier( "IndicatorGroupSetA" );
+
+ assertEquals( referenceId, retrievedId );
+ }
+
+ @Test
+ public void testObjectExists()
+ {
+ indicatorService.addIndicatorGroupSet( groupSetA );
+
+ assertTrue( batchHandler.objectExists( groupSetA ) );
+
+ assertFalse( batchHandler.objectExists( groupSetB ) );
+ }
+}