au.edu.uts.eng.remotelabs.schedserver.dataaccess.dao.tests.RigDaoTester.java Source code

Java tutorial

Introduction

Here is the source code for au.edu.uts.eng.remotelabs.schedserver.dataaccess.dao.tests.RigDaoTester.java

Source

/**
 * SAHARA Scheduling Server
 *
 * Schedules and assigns local laboratory rigs.
 *
 * @license See LICENSE in the top level directory for complete license terms.
 *
 * Copyright (c) 2010, University of Technology, Sydney
 * 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 University of Technology, Sydney 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 HOLDER 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.
 *
 * @author Michael Diponio (mdiponio)
 * @date 11th January 2010
 */
package au.edu.uts.eng.remotelabs.schedserver.dataaccess.dao.tests;

import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;

import junit.framework.TestCase;

import org.hibernate.Session;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import au.edu.uts.eng.remotelabs.schedserver.dataaccess.DataAccessActivator;
import au.edu.uts.eng.remotelabs.schedserver.dataaccess.dao.RigDao;
import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.Rig;
import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.RigCapabilities;
import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.RigType;
import au.edu.uts.eng.remotelabs.schedserver.dataaccess.testsetup.DataAccessTestSetup;

/**
 * Tests the {@link RigDao} class.
 */
public class RigDaoTester extends TestCase {
    /** Object of class under test. */
    private RigDao dao;

    @Before
    @Override
    public void setUp() throws Exception {
        DataAccessTestSetup.setup();
        this.dao = new RigDao();
        super.setUp();
    }

    @Override
    @After
    public void tearDown() throws Exception {
        this.dao.closeSession();
        super.tearDown();
    }

    /**
     * Test method for {@link au.edu.uts.eng.remotelabs.schedserver.dataaccess.dao.RigDao#findByName(java.lang.String)}.
     */
    @Test
    public void testFindByName() {
        /* Add a rig. */
        Session ses = DataAccessActivator.getNewSession();
        ses.beginTransaction();
        RigType type = new RigType();
        type.setName("rig_test");
        type.setLogoffGraceDuration(600);
        ses.save(type);

        RigCapabilities caps = new RigCapabilities("a,b,c,d,e,f");
        ses.save(caps);

        Rig rig = new Rig();
        rig.setName("rig_name_test");
        rig.setRigType(type);
        rig.setContactUrl("http://url");
        rig.setRigCapabilities(caps);
        Timestamp ts = new Timestamp(System.currentTimeMillis());
        ts.setNanos(0); // Need to trunc time as nanoseconds aren't stored in the DB.
        rig.setLastUpdateTimestamp(ts);
        rig.setManaged(false);
        rig.setMeta("iLabs");
        rig.setOfflineReason("Tomorrows problem");
        ses.save(rig);
        ses.getTransaction().commit();
        ses.close();

        /* Find the rig. */
        Rig fRig = this.dao.findByName("rig_name_test");
        assertNotNull(fRig);
        assertEquals(rig.getId(), fRig.getId());
        assertEquals(rig.getContactUrl(), fRig.getContactUrl());
        assertEquals(fRig.getLastUpdateTimestamp(), rig.getLastUpdateTimestamp());

        assertEquals(rig.getRigType().getName(), fRig.getRigType().getName());
        assertEquals(rig.getRigCapabilities().getCapabilities(), fRig.getRigCapabilities().getCapabilities());
        assertEquals(rig.isManaged(), fRig.isManaged());
        assertEquals(rig.getMeta(), fRig.getMeta());
        assertEquals(rig.getOfflineReason(), fRig.getOfflineReason());

        /* Delete all. */
        this.dao.delete(fRig);
        ses = this.dao.getSession();
        ses.beginTransaction();
        ses.delete(fRig.getRigCapabilities());
        ses.delete(fRig.getRigType());
        ses.getTransaction().commit();
    }

    /**
     * Test method for {@link au.edu.uts.eng.remotelabs.schedserver.dataaccess.dao.RigDao#findFreeinType(au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.RigType)}.
     */
    @Test
    public void testFindFreeinType() {
        /* Add a rig. */
        long ids[] = new long[5];
        Session ses = this.dao.getSession();
        ses.beginTransaction();
        RigType type = new RigType();
        type.setName("rig_test");
        type.setLogoffGraceDuration(600);
        ses.save(type);

        RigCapabilities caps = new RigCapabilities("a,b,c,d,e,f");
        ses.save(caps);
        ses.getTransaction().commit();

        Rig rig = new Rig();
        rig.setName("rig_name_test_1");
        rig.setRigType(type);
        rig.setContactUrl("http://url");
        rig.setRigCapabilities(caps);
        Timestamp ts = new Timestamp(System.currentTimeMillis());
        ts.setNanos(0); // Need to trunc time as nanoseconds aren't stored in the DB.
        rig.setLastUpdateTimestamp(ts);
        rig.setOnline(true);
        rig.setActive(true);
        rig.setManaged(true);
        this.dao.persist(rig);
        ids[0] = rig.getId();

        rig = new Rig();
        rig.setName("rig_name_test_2");
        rig.setRigType(type);
        rig.setContactUrl("http://url");
        rig.setRigCapabilities(caps);
        rig.setLastUpdateTimestamp(ts);
        rig.setOnline(true);
        rig.setActive(true);
        rig.setManaged(true);
        this.dao.persist(rig);
        ids[1] = rig.getId();

        rig = new Rig();
        rig.setName("rig_name_test_3");
        rig.setRigType(type);
        rig.setContactUrl("http://url");
        rig.setRigCapabilities(caps);
        rig.setLastUpdateTimestamp(ts);
        rig.setActive(true);
        rig.setOnline(true);
        rig.setInSession(true);
        this.dao.persist(rig);
        ids[2] = rig.getId();

        rig = new Rig();
        rig.setName("rig_name_test_4");
        rig.setRigType(type);
        rig.setContactUrl("http://url");
        rig.setRigCapabilities(caps);
        rig.setLastUpdateTimestamp(ts);
        rig.setOnline(true);
        rig.setInSession(true);
        this.dao.persist(rig);
        ids[3] = rig.getId();

        rig = new Rig();
        rig.setName("rig_name_test_5");
        rig.setRigType(type);
        rig.setContactUrl("http://url");
        rig.setRigCapabilities(caps);
        rig.setLastUpdateTimestamp(ts);
        rig.setActive(true);
        rig.setInSession(true);
        this.dao.persist(rig);
        ids[4] = rig.getId();

        this.dao.closeSession();
        this.dao = new RigDao();

        List<Rig> free = this.dao.findFreeinType(type);
        assertNotNull(free);
        assertEquals(2, free.size());
        Rig fr = free.get(0);
        assertTrue(fr.isActive());
        assertTrue(fr.isOnline());
        assertFalse(fr.isInSession());
        assertTrue(fr.isManaged());
        assertNull(fr.getMeta());
        fr = free.get(1);
        assertTrue(fr.isActive());
        assertTrue(fr.isOnline());
        assertFalse(fr.isInSession());
        assertTrue(fr.isManaged());
        assertNull(fr.getMeta());

        List<String> names = new ArrayList<String>(2);
        for (Rig r : free) {
            names.add(r.getName());
        }
        assertTrue(names.contains("rig_name_test_1"));
        assertTrue(names.contains("rig_name_test_2"));

        ses = this.dao.getSession();
        ses.beginTransaction();
        for (long i : ids) {
            ses.createSQLQuery("DELETE FROM rig WHERE id=" + i).executeUpdate();
        }
        ses.createSQLQuery("DELETE FROM rig_capabilities WHERE id=" + caps.getId()).executeUpdate();
        ses.createSQLQuery("DELETE FROM rig_type WHERE id=" + type.getId()).executeUpdate();
        ses.getTransaction().commit();
    }

}