use of org.jboss.tools.hibernate.runtime.spi.ISchemaExport in project jbosstools-hibernate by jbosstools.
the class FacadeFactoryTest method testCreateSchemaExport.
@Test
public void testCreateSchemaExport() {
Configuration configuration = new Configuration();
configuration.setProperty("hibernate.dialect", "org.hibernate.dialect.H2Dialect");
SchemaExport schemaExport = new SchemaExport(configuration);
ISchemaExport facade = facadeFactory.createSchemaExport(schemaExport);
Assert.assertSame(schemaExport, ((IFacade) facade).getTarget());
}
use of org.jboss.tools.hibernate.runtime.spi.ISchemaExport in project jbosstools-hibernate by jbosstools.
the class FacadeFactoryTest method testCreateSchemaExport.
@Test
public void testCreateSchemaExport() {
Configuration configuration = new Configuration();
configuration.setProperty("hibernate.dialect", "org.hibernate.dialect.H2Dialect");
SchemaExport schemaExport = new SchemaExport((MetadataImplementor) MetadataHelper.getMetadata(configuration));
ISchemaExport facade = facadeFactory.createSchemaExport(schemaExport);
Assert.assertSame(schemaExport, ((IFacade) facade).getTarget());
}
use of org.jboss.tools.hibernate.runtime.spi.ISchemaExport in project jbosstools-hibernate by jbosstools.
the class SchemaExportFacadeTest method testCreate.
@Test
public void testCreate() throws Exception {
String urlString = "jdbc:h2:mem:create_test";
Connection connection = DriverManager.getConnection(urlString);
configuration.setProperty(Environment.URL, urlString);
MetadataImplementor metadataImplementor = (MetadataImplementor) MetadataHelper.getMetadata(configuration);
ISchemaExport schemaExportFacade = FACADE_FACTORY.createSchemaExport(new SchemaExport(metadataImplementor));
Assert.assertFalse(connection.getMetaData().getTables(null, null, "FOO", null).next());
schemaExportFacade.create();
Assert.assertTrue(connection.getMetaData().getTables(null, null, "FOO", null).next());
}
use of org.jboss.tools.hibernate.runtime.spi.ISchemaExport in project jbosstools-hibernate by jbosstools.
the class ServiceImplTest method testNewSchemaExport.
@Test
public void testNewSchemaExport() {
IConfiguration configuration = service.newDefaultConfiguration();
configuration.setProperty("hibernate.dialect", "org.hibernate.dialect.H2Dialect");
ISchemaExport schemaExport = service.newSchemaExport(configuration);
Assert.assertNotNull(schemaExport);
}
use of org.jboss.tools.hibernate.runtime.spi.ISchemaExport in project jbosstools-hibernate by jbosstools.
the class FacadeFactoryTest method testCreateSchemaExport.
@Test
public void testCreateSchemaExport() {
Configuration configuration = new Configuration();
configuration.setProperty("hibernate.dialect", "org.hibernate.dialect.H2Dialect");
SchemaExport schemaExport = new SchemaExport(configuration);
ISchemaExport facade = facadeFactory.createSchemaExport(schemaExport);
Assert.assertSame(schemaExport, ((IFacade) facade).getTarget());
}
Aggregations