Search in sources :

Example 1 with CompositeCustomTypeEntity

use of org.hibernate.envers.test.entities.customtype.CompositeCustomTypeEntity in project hibernate-orm by hibernate.

the class CompositeCustom method initData.

@Test
@Priority(10)
public void initData() {
    EntityManager em = getEntityManager();
    CompositeCustomTypeEntity ccte = new CompositeCustomTypeEntity();
    // Revision 1 (persisting 1 entity)
    em.getTransaction().begin();
    ccte.setComponent(new Component("a", 1));
    em.persist(ccte);
    em.getTransaction().commit();
    // Revision 2 (changing the component)
    em.getTransaction().begin();
    ccte = em.find(CompositeCustomTypeEntity.class, ccte.getId());
    ccte.getComponent().setProp1("b");
    em.getTransaction().commit();
    // Revision 3 (replacing the component)
    em.getTransaction().begin();
    ccte = em.find(CompositeCustomTypeEntity.class, ccte.getId());
    ccte.setComponent(new Component("c", 3));
    em.getTransaction().commit();
    //
    ccte_id = ccte.getId();
}
Also used : EntityManager(javax.persistence.EntityManager) CompositeCustomTypeEntity(org.hibernate.envers.test.entities.customtype.CompositeCustomTypeEntity) Component(org.hibernate.envers.test.entities.customtype.Component) Test(org.junit.Test) Priority(org.hibernate.envers.test.Priority)

Example 2 with CompositeCustomTypeEntity

use of org.hibernate.envers.test.entities.customtype.CompositeCustomTypeEntity in project hibernate-orm by hibernate.

the class HasChangedCompositeCustom method initData.

@Test
@Priority(10)
public void initData() {
    EntityManager em = getEntityManager();
    CompositeCustomTypeEntity ccte = new CompositeCustomTypeEntity();
    // Revision 1 (persisting 1 entity)
    em.getTransaction().begin();
    ccte.setComponent(new Component("a", 1));
    em.persist(ccte);
    em.getTransaction().commit();
    // Revision 2 (changing the component)
    em.getTransaction().begin();
    ccte = em.find(CompositeCustomTypeEntity.class, ccte.getId());
    ccte.getComponent().setProp1("b");
    em.getTransaction().commit();
    // Revision 3 (replacing the component)
    em.getTransaction().begin();
    ccte = em.find(CompositeCustomTypeEntity.class, ccte.getId());
    ccte.setComponent(new Component("c", 3));
    em.getTransaction().commit();
    //
    ccte_id = ccte.getId();
}
Also used : EntityManager(javax.persistence.EntityManager) CompositeCustomTypeEntity(org.hibernate.envers.test.entities.customtype.CompositeCustomTypeEntity) Component(org.hibernate.envers.test.entities.customtype.Component) Test(org.junit.Test) Priority(org.hibernate.envers.test.Priority)

Example 3 with CompositeCustomTypeEntity

use of org.hibernate.envers.test.entities.customtype.CompositeCustomTypeEntity in project hibernate-orm by hibernate.

the class CompositeCustom method testHistoryOfCcte.

@Test
public void testHistoryOfCcte() {
    CompositeCustomTypeEntity rev1 = getAuditReader().find(CompositeCustomTypeEntity.class, ccte_id, 1);
    CompositeCustomTypeEntity rev2 = getAuditReader().find(CompositeCustomTypeEntity.class, ccte_id, 2);
    CompositeCustomTypeEntity rev3 = getAuditReader().find(CompositeCustomTypeEntity.class, ccte_id, 3);
    assert rev1.getComponent().equals(new Component("a", 1));
    assert rev2.getComponent().equals(new Component("b", 1));
    assert rev3.getComponent().equals(new Component("c", 3));
}
Also used : CompositeCustomTypeEntity(org.hibernate.envers.test.entities.customtype.CompositeCustomTypeEntity) Component(org.hibernate.envers.test.entities.customtype.Component) Test(org.junit.Test)

Aggregations

Component (org.hibernate.envers.test.entities.customtype.Component)3 CompositeCustomTypeEntity (org.hibernate.envers.test.entities.customtype.CompositeCustomTypeEntity)3 Test (org.junit.Test)3 EntityManager (javax.persistence.EntityManager)2 Priority (org.hibernate.envers.test.Priority)2