HHH-11101 : Minor correction to test to work for 5.0

This commit is contained in:
Gail Badner 2016-09-16 01:28:44 -07:00
parent 33b649e369
commit 5ae4c85d2a
1 changed files with 5 additions and 4 deletions

View File

@ -9,7 +9,6 @@ package org.hibernate.test.schemaupdate.uniqueconstraint;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.nio.file.Files; import java.nio.file.Files;
import java.util.EnumSet;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
@ -19,9 +18,10 @@ import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.boot.spi.MetadataImplementor; import org.hibernate.boot.spi.MetadataImplementor;
import org.hibernate.cfg.Environment; import org.hibernate.cfg.Environment;
import org.hibernate.tool.hbm2ddl.SchemaExport; import org.hibernate.tool.hbm2ddl.SchemaExport;
import org.hibernate.tool.schema.TargetType;
import org.hibernate.testing.TestForIssue; import org.hibernate.testing.TestForIssue;
import org.hibernate.tool.hbm2ddl.Target;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
@ -43,6 +43,7 @@ public class UniqueConstraintGenerationTest {
output.deleteOnExit(); output.deleteOnExit();
ssr = new StandardServiceRegistryBuilder() ssr = new StandardServiceRegistryBuilder()
.applySetting( Environment.HBM2DDL_AUTO, "none" ) .applySetting( Environment.HBM2DDL_AUTO, "none" )
.applySetting( Environment.FORMAT_SQL, "false" )
.build(); .build();
metadata = (MetadataImplementor) new MetadataSources( ssr ) metadata = (MetadataImplementor) new MetadataSources( ssr )
.addResource( "org/hibernate/test/schemaupdate/uniqueconstraint/TestEntity.hbm.xml" ) .addResource( "org/hibernate/test/schemaupdate/uniqueconstraint/TestEntity.hbm.xml" )
@ -58,9 +59,9 @@ public class UniqueConstraintGenerationTest {
@Test @Test
@TestForIssue(jiraKey = "HHH-11101") @TestForIssue(jiraKey = "HHH-11101")
public void testUniqueConstraintIsGenerated() throws Exception { public void testUniqueConstraintIsGenerated() throws Exception {
new SchemaExport() new SchemaExport( metadata )
.setOutputFile( output.getAbsolutePath() ) .setOutputFile( output.getAbsolutePath() )
.create( EnumSet.of( TargetType.SCRIPT ), metadata ); .create( Target.SCRIPT );
assertThat( assertThat(
"The test_entity_item table unique constraint has not been generated", "The test_entity_item table unique constraint has not been generated",