/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.test.util.dtd; import org.hibernate.boot.MetadataSources; import org.hibernate.boot.registry.BootstrapServiceRegistry; import org.hibernate.boot.registry.BootstrapServiceRegistryBuilder; import org.hibernate.service.ServiceRegistry; import org.hibernate.testing.junit4.BaseUnitTestCase; import org.junit.Test; /** * @author Steve Ebersole */ public class EntityResolverTest extends BaseUnitTestCase { @Test public void testEntityIncludeResolution() { // Parent.hbm.xml contains the following entity include: // <!ENTITY child SYSTEM "classpath://org/hibernate/test/util/dtd/child.xml"> // which we are expecting the Hibernate custom entity resolver to be able to resolve // locally via classpath lookup. final MetadataSources metadataSources = new MetadataSources() .addResource( "org/hibernate/test/util/dtd/Parent.hbm.xml" ); try { metadataSources.buildMetadata(); } finally { ServiceRegistry metaServiceRegistry = metadataSources.getServiceRegistry(); if(metaServiceRegistry instanceof BootstrapServiceRegistry ) { BootstrapServiceRegistryBuilder.destroy( metaServiceRegistry ); } } } }