Search in sources :

Example 16 with ConfigurationFacadeImpl

use of org.jboss.tools.hibernate.runtime.v_6_0.internal.ConfigurationFacadeImpl in project jbosstools-hibernate by jbosstools.

the class ServiceImplTest method testNewHibernateMappingExporter.

@Test
public void testNewHibernateMappingExporter() {
    IConfiguration configuration = service.newDefaultConfiguration();
    configuration.setProperty(AvailableSettings.DIALECT, MockDialect.class.getName());
    configuration.setProperty(AvailableSettings.CONNECTION_PROVIDER, MockConnectionProvider.class.getName());
    File file = new File("");
    IHibernateMappingExporter hibernateMappingExporter = service.newHibernateMappingExporter(configuration, file);
    HibernateMappingExporterExtension hmee = (HibernateMappingExporterExtension) ((IFacade) hibernateMappingExporter).getTarget();
    assertSame(file, hmee.getProperties().get(ExporterConstants.OUTPUT_FILE_NAME));
    assertSame(((ConfigurationFacadeImpl) configuration).getMetadata(), hmee.getMetadata());
}
Also used : MockConnectionProvider(org.jboss.tools.hibernate.runtime.v_6_0.internal.util.MockConnectionProvider) IHibernateMappingExporter(org.jboss.tools.hibernate.runtime.spi.IHibernateMappingExporter) MockDialect(org.jboss.tools.hibernate.runtime.v_6_0.internal.util.MockDialect) IConfiguration(org.jboss.tools.hibernate.runtime.spi.IConfiguration) File(java.io.File) Test(org.junit.jupiter.api.Test)

Example 17 with ConfigurationFacadeImpl

use of org.jboss.tools.hibernate.runtime.v_6_0.internal.ConfigurationFacadeImpl in project jbosstools-hibernate by jbosstools.

the class SchemaExportFacadeTest method testSetConfiguration.

@Test
public void testSetConfiguration() {
    Configuration configurationTarget = new Configuration();
    configurationTarget.setProperty(AvailableSettings.DIALECT, MockDialect.class.getName());
    configurationTarget.setProperty(AvailableSettings.CONNECTION_PROVIDER, MockConnectionProvider.class.getName());
    ConfigurationFacadeImpl configuration = new ConfigurationFacadeImpl(FACADE_FACTORY, configurationTarget);
    Metadata metadata = configuration.getMetadata();
    assertNull(schemaExportFacade.metadata);
    schemaExportFacade.setConfiguration(configuration);
    assertSame(metadata, schemaExportFacade.metadata);
}
Also used : MockConnectionProvider(org.jboss.tools.hibernate.runtime.v_6_0.internal.util.MockConnectionProvider) Configuration(org.hibernate.cfg.Configuration) MockDialect(org.jboss.tools.hibernate.runtime.v_6_0.internal.util.MockDialect) Metadata(org.hibernate.boot.Metadata) Test(org.junit.jupiter.api.Test)

Example 18 with ConfigurationFacadeImpl

use of org.jboss.tools.hibernate.runtime.v_6_0.internal.ConfigurationFacadeImpl in project jbosstools-hibernate by jbosstools.

the class ConfigurationMetadataDescriptorTest method testCreateMetadata.

@Test
public void testCreateMetadata() {
    MetadataSources metadataSources = new MetadataSources();
    metadataSources.addInputStream(new ByteArrayInputStream(TEST_HBM_XML_STRING.getBytes()));
    Configuration configuration = new Configuration(metadataSources);
    configuration.setProperty(AvailableSettings.DIALECT, MockDialect.class.getName());
    configuration.setProperty(AvailableSettings.CONNECTION_PROVIDER, MockConnectionProvider.class.getName());
    configurationFacade = new ConfigurationFacadeImpl(FACADE_FACTORY, configuration);
    PersistentClass persistentClass = new RootClass(null);
    persistentClass.setEntityName("Bar");
    IPersistentClass persistentClassFacade = FACADE_FACTORY.createPersistentClass(persistentClass);
    configurationFacade.addClass(persistentClassFacade);
    configurationMetadataDescriptor = new ConfigurationMetadataDescriptor(configurationFacade);
    Metadata metadata = configurationMetadataDescriptor.createMetadata();
    assertNotNull(metadata.getEntityBinding(Foo.class.getName()));
    assertNotNull(metadata.getEntityBinding("Bar"));
}
Also used : RootClass(org.hibernate.mapping.RootClass) Configuration(org.hibernate.cfg.Configuration) ByteArrayInputStream(java.io.ByteArrayInputStream) MetadataSources(org.hibernate.boot.MetadataSources) Metadata(org.hibernate.boot.Metadata) ConfigurationFacadeImpl(org.jboss.tools.hibernate.runtime.v_5_6.internal.ConfigurationFacadeImpl) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) PersistentClass(org.hibernate.mapping.PersistentClass) Test(org.junit.jupiter.api.Test)

Example 19 with ConfigurationFacadeImpl

use of org.jboss.tools.hibernate.runtime.v_6_0.internal.ConfigurationFacadeImpl in project jbosstools-hibernate by jbosstools.

the class ConfigurationMetadataDescriptorTest method beforeEach.

@BeforeEach
public void beforeEach() {
    configurationTarget = new Configuration();
    configurationFacade = new ConfigurationFacadeImpl(FACADE_FACTORY, configurationTarget);
    configurationMetadataDescriptor = new ConfigurationMetadataDescriptor(configurationFacade);
}
Also used : Configuration(org.hibernate.cfg.Configuration) ConfigurationFacadeImpl(org.jboss.tools.hibernate.runtime.v_5_4.internal.ConfigurationFacadeImpl) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 20 with ConfigurationFacadeImpl

use of org.jboss.tools.hibernate.runtime.v_6_0.internal.ConfigurationFacadeImpl in project jbosstools-hibernate by jbosstools.

the class ConfigurationMetadataDescriptorTest method testCreateMetadata.

@Test
public void testCreateMetadata() {
    MetadataSources metadataSources = new MetadataSources();
    metadataSources.addInputStream(new ByteArrayInputStream(TEST_HBM_XML_STRING.getBytes()));
    Configuration configuration = new Configuration(metadataSources);
    configuration.setProperty(AvailableSettings.DIALECT, MockDialect.class.getName());
    configuration.setProperty(AvailableSettings.CONNECTION_PROVIDER, MockConnectionProvider.class.getName());
    configurationFacade = new ConfigurationFacadeImpl(FACADE_FACTORY, configuration);
    PersistentClass persistentClass = new RootClass(null);
    persistentClass.setEntityName("Bar");
    IPersistentClass persistentClassFacade = FACADE_FACTORY.createPersistentClass(persistentClass);
    configurationFacade.addClass(persistentClassFacade);
    configurationMetadataDescriptor = new ConfigurationMetadataDescriptor(configurationFacade);
    Metadata metadata = configurationMetadataDescriptor.createMetadata();
    assertNotNull(metadata.getEntityBinding(Foo.class.getName()));
    assertNotNull(metadata.getEntityBinding("Bar"));
}
Also used : RootClass(org.hibernate.mapping.RootClass) Configuration(org.hibernate.cfg.Configuration) ByteArrayInputStream(java.io.ByteArrayInputStream) MetadataSources(org.hibernate.boot.MetadataSources) Metadata(org.hibernate.boot.Metadata) ConfigurationFacadeImpl(org.jboss.tools.hibernate.runtime.v_5_4.internal.ConfigurationFacadeImpl) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) PersistentClass(org.hibernate.mapping.PersistentClass) Test(org.junit.jupiter.api.Test)

Aggregations

Test (org.junit.jupiter.api.Test)20 Configuration (org.hibernate.cfg.Configuration)13 PersistentClass (org.hibernate.mapping.PersistentClass)13 IPersistentClass (org.jboss.tools.hibernate.runtime.spi.IPersistentClass)13 MetadataHelperTest (org.jboss.tools.hibernate.runtime.v_6_0.internal.util.MetadataHelperTest)12 Metadata (org.hibernate.boot.Metadata)8 RootClass (org.hibernate.mapping.RootClass)8 BeforeEach (org.junit.jupiter.api.BeforeEach)6 ByteArrayInputStream (java.io.ByteArrayInputStream)5 Field (java.lang.reflect.Field)5 MetadataSources (org.hibernate.boot.MetadataSources)5 JdbcMetadataConfiguration (org.jboss.tools.hibernate.runtime.v_6_0.internal.util.JdbcMetadataConfiguration)5 HashMap (java.util.HashMap)4 MetadataImpl (org.hibernate.boot.internal.MetadataImpl)4 ConfigurationFacadeImpl (org.jboss.tools.hibernate.runtime.v_5_3.internal.ConfigurationFacadeImpl)3 ConfigurationFacadeImpl (org.jboss.tools.hibernate.runtime.v_5_4.internal.ConfigurationFacadeImpl)3 ConfigurationFacadeImpl (org.jboss.tools.hibernate.runtime.v_5_5.internal.ConfigurationFacadeImpl)3 ConfigurationFacadeImpl (org.jboss.tools.hibernate.runtime.v_5_6.internal.ConfigurationFacadeImpl)3 MockConnectionProvider (org.jboss.tools.hibernate.runtime.v_6_0.internal.util.MockConnectionProvider)3 MockDialect (org.jboss.tools.hibernate.runtime.v_6_0.internal.util.MockDialect)3