/* * 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.schemaupdate; import java.util.EnumSet; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Index; import javax.persistence.Table; import org.hibernate.boot.MetadataSources; import org.hibernate.boot.registry.StandardServiceRegistryBuilder; import org.hibernate.boot.spi.MetadataImplementor; import org.hibernate.cfg.Environment; import org.hibernate.dialect.PostgreSQL81Dialect; import org.hibernate.service.ServiceRegistry; import org.hibernate.tool.hbm2ddl.SchemaExport; import org.hibernate.tool.schema.TargetType; import org.hibernate.testing.RequiresDialect; import org.hibernate.testing.TestForIssue; import org.hibernate.testing.junit4.CustomRunner; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import static org.hamcrest.core.Is.is; import static org.junit.Assert.assertThat; /** * @author Andrea Boriero */ @TestForIssue(jiraKey = "HHH-9866") @RunWith(CustomRunner.class) @RequiresDialect(PostgreSQL81Dialect.class) public class SchemaExportWithIndexAndDefaultSchema { protected ServiceRegistry serviceRegistry; protected MetadataImplementor metadata; @Test public void shouldCreateIndex() { SchemaExport schemaExport = new SchemaExport(); schemaExport.create( EnumSet.of( TargetType.DATABASE, TargetType.STDOUT ), metadata ); assertThat( schemaExport.getExceptions().size(), is( 0 ) ); } @Before public void setUp() { serviceRegistry = new StandardServiceRegistryBuilder() .applySetting( Environment.GLOBALLY_QUOTED_IDENTIFIERS, "true" ) .applySetting( Environment.DEFAULT_SCHEMA, "public" ) .build(); metadata = (MetadataImplementor) new MetadataSources( serviceRegistry ) .addAnnotatedClass( MyEntity.class ) .buildMetadata(); System.out.println( "********* Starting SchemaExport for START-UP *************************" ); new SchemaExport().create( EnumSet.of( TargetType.DATABASE, TargetType.STDOUT ), metadata ); System.out.println( "********* Completed SchemaExport for START-UP *************************" ); } @After public void tearDown() { System.out.println( "********* Starting SchemaExport (drop) for TEAR-DOWN *************************" ); new SchemaExport().drop( EnumSet.of( TargetType.DATABASE, TargetType.STDOUT ), metadata ); System.out.println( "********* Completed SchemaExport (drop) for TEAR-DOWN *************************" ); StandardServiceRegistryBuilder.destroy( serviceRegistry ); serviceRegistry = null; } @Entity @Table(name = "MyEntity", indexes = {@Index(columnList = "id", name = "user_id_hidx")}) public static class MyEntity { private int id; @Id public int getId() { return this.id; } public void setId(final int id) { this.id = id; } } }