/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or any later version. * * Squale 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 General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ package org.squale.squalecommon.daolayer.config; import java.util.Collection; import org.squale.jraf.commons.exception.JrafDaoException; import org.squale.squalecommon.SqualeTestCase; import org.squale.squalecommon.daolayer.config.web.AbstractDisplayConfDAOImpl; import org.squale.squalecommon.enterpriselayer.businessobject.config.web.BubbleConfBO; import org.squale.squalecommon.enterpriselayer.businessobject.config.web.DisplayConfConstants; import org.squale.squalecommon.enterpriselayer.businessobject.config.web.VolumetryConfBO; /** * Test du DAO des configurations d'affichage */ public class AbstractDisplayConfDAOImplTest extends SqualeTestCase { /** * Teste la r�cup�ration des configurations en fonction du subclass * * @throws JrafDaoException si erreur */ public void testFindAllSubclass() throws JrafDaoException { getSession().beginTransaction(); // On cr�e deux configurations de type diff�rent AbstractDisplayConfDAOImpl dao = AbstractDisplayConfDAOImpl.getInstance(); // Un bubble BubbleConfBO bubble = new BubbleConfBO(); bubble.setXTre( "project.mccabe.evg" ); bubble.setYTre( "project.mccabe.vg" ); dao.create( getSession(), bubble ); // Une volum�trie VolumetryConfBO volumetry = new VolumetryConfBO(); volumetry.setComponentType( DisplayConfConstants.VOLUMETRY_APPLICATION_TYPE ); volumetry.addTre( "project.rsm.sloc" ); dao.create( getSession(), volumetry ); getSession().commitTransactionWithoutClose(); Collection all = dao.findAll( getSession() ); assertEquals( 2, all.size() ); // On veut r�cup�rer toutes les configurations des bubble Collection bubbles = dao.findAllSubclass( getSession(), BubbleConfBO.class ); assertEquals( 1, bubbles.size() ); } }