Search in sources :

Example 71 with RootClass

use of org.hibernate.mapping.RootClass in project jbosstools-hibernate by jbosstools.

the class ValueFacadeTest method testGetComponentClassName.

@Test
public void testGetComponentClassName() {
    Component valueTarget = new Component(null, new RootClass(null));
    valueFacade = FACADE_FACTORY.createValue(valueTarget);
    assertNull(valueFacade.getComponentClassName());
    valueTarget.setComponentClassName("org.foo.Bar");
    assertEquals("org.foo.Bar", valueFacade.getComponentClassName());
}
Also used : RootClass(org.hibernate.mapping.RootClass) Component(org.hibernate.mapping.Component) Test(org.junit.jupiter.api.Test)

Example 72 with RootClass

use of org.hibernate.mapping.RootClass in project jbosstools-hibernate by jbosstools.

the class Cfg2HbmToolFacadeTest method testGetTagPersistentClass.

@Test
public void testGetTagPersistentClass() {
    PersistentClass target = new RootClass(null);
    IPersistentClass persistentClass = FACADE_FACTORY.createPersistentClass(target);
    assertEquals("class", cfg2HbmToolFacade.getTag(persistentClass));
}
Also used : RootClass(org.hibernate.mapping.RootClass) 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 73 with RootClass

use of org.hibernate.mapping.RootClass in project jbosstools-hibernate by jbosstools.

the class Cfg2HbmToolFacadeTest method testGetTagProperty.

@Test
public void testGetTagProperty() throws Exception {
    RootClass rc = new RootClass(null);
    Property p = new Property();
    Table t = new Table();
    SimpleValue sv = new SimpleValue(createMetadaBuildingContext(), t);
    sv.setTypeName("foobar");
    p.setValue(sv);
    p.setPersistentClass(rc);
    rc.setVersion(p);
    IProperty property = new AbstractPropertyFacade(FACADE_FACTORY, p) {
    };
    assertEquals("version", cfg2HbmToolFacade.getTag(property));
}
Also used : RootClass(org.hibernate.mapping.RootClass) Table(org.hibernate.mapping.Table) AbstractPropertyFacade(org.jboss.tools.hibernate.runtime.common.AbstractPropertyFacade) IProperty(org.jboss.tools.hibernate.runtime.spi.IProperty) Property(org.hibernate.mapping.Property) IProperty(org.jboss.tools.hibernate.runtime.spi.IProperty) SimpleValue(org.hibernate.mapping.SimpleValue) Test(org.junit.jupiter.api.Test)

Example 74 with RootClass

use of org.hibernate.mapping.RootClass in project jbosstools-hibernate by jbosstools.

the class PropertyFacadeTest method testSetPersistentClass.

@Test
public void testSetPersistentClass() throws Exception {
    Field field = AbstractPropertyFacade.class.getDeclaredField("persistentClass");
    field.setAccessible(true);
    assertNull(field.get(propertyFacade));
    assertNull(propertyTarget.getPersistentClass());
    PersistentClass persistentClassTarget = new RootClass(DummyMetadataBuildingContext.INSTANCE);
    IPersistentClass persistentClassFacade = FACADE_FACTORY.createPersistentClass(persistentClassTarget);
    propertyFacade.setPersistentClass(persistentClassFacade);
    assertSame(persistentClassFacade, field.get(propertyFacade));
    assertSame(persistentClassTarget, propertyTarget.getPersistentClass());
}
Also used : RootClass(org.hibernate.mapping.RootClass) Field(java.lang.reflect.Field) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) PersistentClass(org.hibernate.mapping.PersistentClass) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) Test(org.junit.jupiter.api.Test)

Example 75 with RootClass

use of org.hibernate.mapping.RootClass in project jbosstools-hibernate by jbosstools.

the class PropertyFacadeTest method testGetPersistentClass.

@Test
public void testGetPersistentClass() throws Exception {
    Field field = AbstractPropertyFacade.class.getDeclaredField("persistentClass");
    field.setAccessible(true);
    assertNull(field.get(propertyFacade));
    assertNull(propertyFacade.getPersistentClass());
    PersistentClass persistentClassTarget = new RootClass(DummyMetadataBuildingContext.INSTANCE);
    propertyTarget.setPersistentClass(persistentClassTarget);
    IPersistentClass persistentClassFacade = propertyFacade.getPersistentClass();
    assertNotNull(persistentClassFacade);
    assertSame(persistentClassFacade, field.get(propertyFacade));
    assertSame(persistentClassTarget, ((IFacade) persistentClassFacade).getTarget());
}
Also used : RootClass(org.hibernate.mapping.RootClass) Field(java.lang.reflect.Field) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) PersistentClass(org.hibernate.mapping.PersistentClass) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) Test(org.junit.jupiter.api.Test)

Aggregations

RootClass (org.hibernate.mapping.RootClass)609 Test (org.junit.jupiter.api.Test)471 PersistentClass (org.hibernate.mapping.PersistentClass)166 IPersistentClass (org.jboss.tools.hibernate.runtime.spi.IPersistentClass)162 Field (java.lang.reflect.Field)149 SimpleValue (org.hibernate.mapping.SimpleValue)142 Table (org.hibernate.mapping.Table)136 IProperty (org.jboss.tools.hibernate.runtime.spi.IProperty)130 Property (org.hibernate.mapping.Property)124 Component (org.hibernate.mapping.Component)109 Column (org.hibernate.mapping.Column)53 ArrayList (java.util.ArrayList)51 IFacade (org.jboss.tools.hibernate.runtime.common.IFacade)51 ITable (org.jboss.tools.hibernate.runtime.spi.ITable)44 StandardServiceRegistryBuilder (org.hibernate.boot.registry.StandardServiceRegistryBuilder)43 Configuration (org.hibernate.cfg.Configuration)37 OneToOne (org.hibernate.mapping.OneToOne)37 MetadataSources (org.hibernate.boot.MetadataSources)35 Test (org.junit.Test)35 SingleTableSubclass (org.hibernate.mapping.SingleTableSubclass)34