Search in sources :

Example 1 with ManyToOneComponentTestEntity

use of org.hibernate.envers.test.entities.components.relations.ManyToOneComponentTestEntity in project hibernate-orm by hibernate.

the class HasChangedManyToOneInComponent method initData.

@Test
@Priority(10)
public void initData() {
    // Revision 1
    EntityManager em = getEntityManager();
    em.getTransaction().begin();
    StrTestEntity ste1 = new StrTestEntity();
    ste1.setStr("str1");
    StrTestEntity ste2 = new StrTestEntity();
    ste2.setStr("str2");
    em.persist(ste1);
    em.persist(ste2);
    em.getTransaction().commit();
    // Revision 2
    em = getEntityManager();
    em.getTransaction().begin();
    ManyToOneComponentTestEntity mtocte1 = new ManyToOneComponentTestEntity(new ManyToOneComponent(ste1, "data1"));
    em.persist(mtocte1);
    em.getTransaction().commit();
    // Revision 3
    em = getEntityManager();
    em.getTransaction().begin();
    mtocte1 = em.find(ManyToOneComponentTestEntity.class, mtocte1.getId());
    mtocte1.getComp1().setEntity(ste2);
    em.getTransaction().commit();
    mtocte_id1 = mtocte1.getId();
}
Also used : StrTestEntity(org.hibernate.envers.test.entities.StrTestEntity) EntityManager(javax.persistence.EntityManager) ManyToOneComponentTestEntity(org.hibernate.envers.test.entities.components.relations.ManyToOneComponentTestEntity) ManyToOneComponent(org.hibernate.envers.test.entities.components.relations.ManyToOneComponent) Test(org.junit.Test) Priority(org.hibernate.envers.test.Priority)

Example 2 with ManyToOneComponentTestEntity

use of org.hibernate.envers.test.entities.components.relations.ManyToOneComponentTestEntity in project hibernate-orm by hibernate.

the class ManyToOneInComponent method initData.

@Test
@Priority(10)
public void initData() {
    // Revision 1
    EntityManager em = getEntityManager();
    em.getTransaction().begin();
    StrTestEntity ste1 = new StrTestEntity();
    ste1.setStr("str1");
    StrTestEntity ste2 = new StrTestEntity();
    ste2.setStr("str2");
    em.persist(ste1);
    em.persist(ste2);
    em.getTransaction().commit();
    // Revision 2
    em = getEntityManager();
    em.getTransaction().begin();
    ManyToOneComponentTestEntity mtocte1 = new ManyToOneComponentTestEntity(new ManyToOneComponent(ste1, "data1"));
    em.persist(mtocte1);
    em.getTransaction().commit();
    // Revision 3
    em = getEntityManager();
    em.getTransaction().begin();
    mtocte1 = em.find(ManyToOneComponentTestEntity.class, mtocte1.getId());
    mtocte1.getComp1().setEntity(ste2);
    em.getTransaction().commit();
    mtocte_id1 = mtocte1.getId();
    ste_id1 = ste1.getId();
    ste_id2 = ste2.getId();
}
Also used : StrTestEntity(org.hibernate.envers.test.entities.StrTestEntity) EntityManager(javax.persistence.EntityManager) ManyToOneComponentTestEntity(org.hibernate.envers.test.entities.components.relations.ManyToOneComponentTestEntity) ManyToOneComponent(org.hibernate.envers.test.entities.components.relations.ManyToOneComponent) Test(org.junit.Test) Priority(org.hibernate.envers.test.Priority)

Example 3 with ManyToOneComponentTestEntity

use of org.hibernate.envers.test.entities.components.relations.ManyToOneComponentTestEntity in project hibernate-orm by hibernate.

the class ManyToOneInComponent method testHistoryOfId1.

@Test
public void testHistoryOfId1() {
    StrTestEntity ste1 = getEntityManager().find(StrTestEntity.class, ste_id1);
    StrTestEntity ste2 = getEntityManager().find(StrTestEntity.class, ste_id2);
    ManyToOneComponentTestEntity ver2 = new ManyToOneComponentTestEntity(mtocte_id1, new ManyToOneComponent(ste1, "data1"));
    ManyToOneComponentTestEntity ver3 = new ManyToOneComponentTestEntity(mtocte_id1, new ManyToOneComponent(ste2, "data1"));
    assert getAuditReader().find(ManyToOneComponentTestEntity.class, mtocte_id1, 1) == null;
    assert getAuditReader().find(ManyToOneComponentTestEntity.class, mtocte_id1, 2).equals(ver2);
    assert getAuditReader().find(ManyToOneComponentTestEntity.class, mtocte_id1, 3).equals(ver3);
}
Also used : StrTestEntity(org.hibernate.envers.test.entities.StrTestEntity) ManyToOneComponentTestEntity(org.hibernate.envers.test.entities.components.relations.ManyToOneComponentTestEntity) ManyToOneComponent(org.hibernate.envers.test.entities.components.relations.ManyToOneComponent) Test(org.junit.Test)

Aggregations

StrTestEntity (org.hibernate.envers.test.entities.StrTestEntity)3 ManyToOneComponent (org.hibernate.envers.test.entities.components.relations.ManyToOneComponent)3 ManyToOneComponentTestEntity (org.hibernate.envers.test.entities.components.relations.ManyToOneComponentTestEntity)3 Test (org.junit.Test)3 EntityManager (javax.persistence.EntityManager)2 Priority (org.hibernate.envers.test.Priority)2