/* * RHQ Management Platform * Copyright (C) 2005-2008 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 2 of the License. * * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.enterprise.server.content.metadata.test; import java.net.URL; import javax.persistence.NoResultException; import javax.persistence.Query; import javax.xml.bind.JAXBElement; import javax.xml.bind.Unmarshaller; import org.rhq.core.domain.content.ContentSourceType; import org.rhq.enterprise.server.content.metadata.ContentSourceMetadataManagerLocal; import org.rhq.enterprise.server.plugin.pc.content.metadata.ContentSourcePluginMetadataManager; import org.rhq.enterprise.server.test.AbstractEJB3Test; import org.rhq.enterprise.server.util.LookupUtil; import org.rhq.enterprise.server.xmlschema.ServerPluginDescriptorUtil; import org.rhq.enterprise.server.xmlschema.generated.serverplugin.content.ContentPluginDescriptorType; /** * Base class for content metadata tests. */ public class TestBase extends AbstractEJB3Test { protected ContentSourceMetadataManagerLocal metadataManager; @Override protected void beforeMethod() throws Exception { metadataManager = LookupUtil.getContentSourceMetadataManager(); } protected ContentSourceType getContentSourceType(String typeName) throws Exception { getTransactionManager().begin(); try { Query q = em.createNamedQuery(ContentSourceType.QUERY_FIND_BY_NAME_WITH_CONFIG_DEF); ContentSourceType type = (ContentSourceType) q.setParameter("name", typeName).getSingleResult(); return type; } catch (NoResultException nre) { return null; } finally { getTransactionManager().rollback(); } } protected void registerPlugin(String pathToDescriptor) throws Exception { ContentPluginDescriptorType descriptor = loadPluginDescriptor(pathToDescriptor); ContentSourcePluginMetadataManager mm = new ContentSourcePluginMetadataManager(); mm.loadPlugin(descriptor); metadataManager.registerTypes(mm.getAllContentSourceTypes()); } public ContentPluginDescriptorType loadPluginDescriptor(String descriptorFile) throws Exception { URL descriptorUrl = this.getClass().getClassLoader().getResource(descriptorFile); Unmarshaller unmarshaller = ServerPluginDescriptorUtil.getServerPluginDescriptorUnmarshaller(); return (ContentPluginDescriptorType) (((JAXBElement<?>) unmarshaller.unmarshal(descriptorUrl.openStream())) .getValue()); } }