Search in sources :

Example 11 with SetRefEdEntity

use of org.hibernate.envers.test.entities.onetomany.SetRefEdEntity in project hibernate-orm by hibernate.

the class BasicSetWithNullsDelete method testHistoryOfEdIng1.

@Test
public void testHistoryOfEdIng1() {
    SetRefEdEntity ed1 = new SetRefEdEntity(1, "data_ed_1");
    SetRefIngEntity rev1 = getAuditReader().find(SetRefIngEntity.class, ing1_id, 1);
    SetRefIngEntity rev2 = getAuditReader().find(SetRefIngEntity.class, ing1_id, 2);
    SetRefIngEntity rev3 = getAuditReader().find(SetRefIngEntity.class, ing1_id, 3);
    SetRefIngEntity rev4 = getAuditReader().find(SetRefIngEntity.class, ing1_id, 4);
    SetRefIngEntity rev5 = getAuditReader().find(SetRefIngEntity.class, ing1_id, 5);
    assert rev1.getReference().equals(ed1);
    assert rev2.getReference() == null;
    assert rev3.getReference() == null;
    assert rev4.getReference() == null;
    assert rev5.getReference() == null;
}
Also used : SetRefIngEntity(org.hibernate.envers.test.entities.onetomany.SetRefIngEntity) SetRefEdEntity(org.hibernate.envers.test.entities.onetomany.SetRefEdEntity) Test(org.junit.Test)

Example 12 with SetRefEdEntity

use of org.hibernate.envers.test.entities.onetomany.SetRefEdEntity in project hibernate-orm by hibernate.

the class OneToManyJtaSessionClosedBeforeCommitTest method initData.

@Test
@Priority(10)
public void initData() throws Exception {
    TestingJtaPlatformImpl.INSTANCE.getTransactionManager().begin();
    EntityManager entityManager = getEntityManager();
    try {
        SetRefEdEntity edEntity = new SetRefEdEntity(2, "edEntity");
        entityManager.persist(edEntity);
        SetRefIngEntity ingEntity = new SetRefIngEntity(1, "ingEntity");
        Set<SetRefIngEntity> sries = new HashSet<>();
        sries.add(ingEntity);
        ingEntity.setReference(edEntity);
        edEntity.setReffering(sries);
        entityManager.persist(ingEntity);
        entityId = ingEntity.getId();
        // simulates spring JtaTransactionManager.triggerBeforeCompletion()
        // this closes the entity manager prior to the JTA transaction.
        entityManager.close();
    } finally {
        TestingJtaPlatformImpl.tryCommit();
    }
}
Also used : EntityManager(javax.persistence.EntityManager) SetRefIngEntity(org.hibernate.envers.test.entities.onetomany.SetRefIngEntity) SetRefEdEntity(org.hibernate.envers.test.entities.onetomany.SetRefEdEntity) HashSet(java.util.HashSet) Test(org.junit.Test) Priority(org.hibernate.envers.test.Priority)

Example 13 with SetRefEdEntity

use of org.hibernate.envers.test.entities.onetomany.SetRefEdEntity in project hibernate-orm by hibernate.

the class EvictAuditDataAfterCommitTest method testSessionCacheCollectionClear.

@Test
@TestForIssue(jiraKey = "HHH-6614")
public void testSessionCacheCollectionClear() {
    final String[] auditEntityNames = new String[] { "org.hibernate.envers.test.entities.onetomany.SetRefEdEntity_AUD", "org.hibernate.envers.test.entities.onetomany.SetRefIngEntity_AUD" };
    SetRefEdEntity ed1 = new SetRefEdEntity(1, "data_ed_1");
    SetRefEdEntity ed2 = new SetRefEdEntity(2, "data_ed_2");
    SetRefIngEntity ing1 = new SetRefIngEntity(3, "data_ing_1");
    SetRefIngEntity ing2 = new SetRefIngEntity(4, "data_ing_2");
    Session session = openSession();
    session.getTransaction().begin();
    session.persist(ed1);
    session.persist(ed2);
    session.persist(ing1);
    session.persist(ing2);
    session.getTransaction().commit();
    checkEmptyAuditSessionCache(session, auditEntityNames);
    session.getTransaction().begin();
    ed1 = (SetRefEdEntity) session.load(SetRefEdEntity.class, ed1.getId());
    ing1.setReference(ed1);
    ing2.setReference(ed1);
    session.getTransaction().commit();
    checkEmptyAuditSessionCache(session, auditEntityNames);
    session.getTransaction().begin();
    ed2 = (SetRefEdEntity) session.load(SetRefEdEntity.class, ed2.getId());
    Set<SetRefIngEntity> reffering = new HashSet<SetRefIngEntity>();
    reffering.add(ing1);
    reffering.add(ing2);
    ed2.setReffering(reffering);
    session.getTransaction().commit();
    checkEmptyAuditSessionCache(session, auditEntityNames);
    session.getTransaction().begin();
    ed2 = (SetRefEdEntity) session.load(SetRefEdEntity.class, ed2.getId());
    ed2.getReffering().remove(ing1);
    session.getTransaction().commit();
    checkEmptyAuditSessionCache(session, auditEntityNames);
    session.getTransaction().begin();
    ed2 = (SetRefEdEntity) session.load(SetRefEdEntity.class, ed2.getId());
    ed2.getReffering().iterator().next().setData("mod_data_ing_2");
    session.getTransaction().commit();
    checkEmptyAuditSessionCache(session, auditEntityNames);
    session.close();
}
Also used : SetRefIngEntity(org.hibernate.envers.test.entities.onetomany.SetRefIngEntity) SetRefEdEntity(org.hibernate.envers.test.entities.onetomany.SetRefEdEntity) Session(org.hibernate.Session) HashSet(java.util.HashSet) Test(org.junit.Test) TestForIssue(org.hibernate.testing.TestForIssue)

Example 14 with SetRefEdEntity

use of org.hibernate.envers.test.entities.onetomany.SetRefEdEntity in project hibernate-orm by hibernate.

the class RemovedObjectQueryTest method testReferringOneToManySameRevision.

@Test
public void testReferringOneToManySameRevision() {
    List queryResult = getAuditReader().createQuery().forRevisionsOfEntity(SetRefEdEntity.class, false, true).add(AuditEntity.id().eq(1)).add(AuditEntity.revisionType().eq(RevisionType.DEL)).getResultList();
    Object[] objArray = (Object[]) queryResult.get(0);
    Assert.assertEquals(2, getRevisionNumber(objArray[1]));
    SetRefEdEntity refEdEntity = (SetRefEdEntity) objArray[0];
    Assert.assertEquals("Demo Data 1", refEdEntity.getData());
    Hibernate.initialize(refEdEntity.getReffering());
    Assert.assertEquals(TestTools.makeSet(new SetRefIngEntity(2, "Example Data 1")), refEdEntity.getReffering());
}
Also used : SetRefIngEntity(org.hibernate.envers.test.entities.onetomany.SetRefIngEntity) SetRefEdEntity(org.hibernate.envers.test.entities.onetomany.SetRefEdEntity) ArrayList(java.util.ArrayList) List(java.util.List) Test(org.junit.Test)

Example 15 with SetRefEdEntity

use of org.hibernate.envers.test.entities.onetomany.SetRefEdEntity in project hibernate-orm by hibernate.

the class RemovedObjectQueryTest method initData.

@Test
@Priority(10)
public void initData() {
    EntityManager em = getEntityManager();
    SetRefEdEntity refEdEntity1 = new SetRefEdEntity(1, "Demo Data 1");
    SetRefIngEntity refIngEntity1 = new SetRefIngEntity(2, "Example Data 1", refEdEntity1);
    // Revision 1
    em.getTransaction().begin();
    em.persist(refEdEntity1);
    em.persist(refIngEntity1);
    em.getTransaction().commit();
    // Revision 2 - removing both object in the same revision
    em.getTransaction().begin();
    refEdEntity1 = em.find(SetRefEdEntity.class, 1);
    refIngEntity1 = em.find(SetRefIngEntity.class, 2);
    em.remove(refIngEntity1);
    em.remove(refEdEntity1);
    em.getTransaction().commit();
    SetRefEdEntity refEdEntity2 = new SetRefEdEntity(3, "Demo Data 2");
    SetRefIngEntity refIngEntity2 = new SetRefIngEntity(4, "Example Data 2", refEdEntity2);
    // Revision 3
    em.getTransaction().begin();
    em.persist(refEdEntity2);
    em.persist(refIngEntity2);
    em.getTransaction().commit();
    // Revision 4 - removing child object
    em.getTransaction().begin();
    refIngEntity2 = em.find(SetRefIngEntity.class, 4);
    em.remove(refIngEntity2);
    em.getTransaction().commit();
    // Revision 5 - removing parent object
    em.getTransaction().begin();
    refEdEntity2 = em.find(SetRefEdEntity.class, 3);
    em.remove(refEdEntity2);
    em.getTransaction().commit();
    SetOwningEntity setOwningEntity1 = new SetOwningEntity(5, "Demo Data 1");
    SetOwnedEntity setOwnedEntity1 = new SetOwnedEntity(6, "Example Data 1");
    Set<SetOwningEntity> owning = new HashSet<SetOwningEntity>();
    Set<SetOwnedEntity> owned = new HashSet<SetOwnedEntity>();
    owning.add(setOwningEntity1);
    owned.add(setOwnedEntity1);
    setOwningEntity1.setReferences(owned);
    setOwnedEntity1.setReferencing(owning);
    // Revision 6
    em.getTransaction().begin();
    em.persist(setOwnedEntity1);
    em.persist(setOwningEntity1);
    em.getTransaction().commit();
    // Revision 7 - removing both object in the same revision
    em.getTransaction().begin();
    setOwnedEntity1 = em.find(SetOwnedEntity.class, 6);
    setOwningEntity1 = em.find(SetOwningEntity.class, 5);
    em.remove(setOwningEntity1);
    em.remove(setOwnedEntity1);
    em.getTransaction().commit();
    SetOwningEntity setOwningEntity2 = new SetOwningEntity(7, "Demo Data 2");
    SetOwnedEntity setOwnedEntity2 = new SetOwnedEntity(8, "Example Data 2");
    owning = new HashSet<SetOwningEntity>();
    owned = new HashSet<SetOwnedEntity>();
    owning.add(setOwningEntity2);
    owned.add(setOwnedEntity2);
    setOwningEntity2.setReferences(owned);
    setOwnedEntity2.setReferencing(owning);
    // Revision 8
    em.getTransaction().begin();
    em.persist(setOwnedEntity2);
    em.persist(setOwningEntity2);
    em.getTransaction().commit();
    // Revision 9 - removing first object
    em.getTransaction().begin();
    setOwningEntity2 = em.find(SetOwningEntity.class, 7);
    em.remove(setOwningEntity2);
    em.getTransaction().commit();
    // Revision 10 - removing second object
    em.getTransaction().begin();
    setOwnedEntity2 = em.find(SetOwnedEntity.class, 8);
    em.remove(setOwnedEntity2);
    em.getTransaction().commit();
    StringSetEntity stringSetEntity = new StringSetEntity();
    stringSetEntity.getStrings().add("string 1");
    stringSetEntity.getStrings().add("string 2");
    // Revision 11
    em.getTransaction().begin();
    em.persist(stringSetEntity);
    em.getTransaction().commit();
    stringSetId = stringSetEntity.getId();
    // Revision 12 - removing element collection
    em.getTransaction().begin();
    stringSetEntity = em.find(StringSetEntity.class, stringSetEntity.getId());
    em.remove(stringSetEntity);
    em.getTransaction().commit();
    // Revision 13
    em.getTransaction().begin();
    unversionedEntity1 = new UnversionedStrTestEntity("string 1");
    unversionedEntity2 = new UnversionedStrTestEntity("string 2");
    M2MIndexedListTargetNotAuditedEntity relationNotAuditedEntity = new M2MIndexedListTargetNotAuditedEntity(1, "Parent");
    relationNotAuditedEntity.getReferences().add(unversionedEntity1);
    relationNotAuditedEntity.getReferences().add(unversionedEntity2);
    em.persist(unversionedEntity1);
    em.persist(unversionedEntity2);
    em.persist(relationNotAuditedEntity);
    em.getTransaction().commit();
    // Revision 14 - removing entity with unversioned relation
    em.getTransaction().begin();
    relationNotAuditedEntity = em.find(M2MIndexedListTargetNotAuditedEntity.class, relationNotAuditedEntity.getId());
    em.remove(relationNotAuditedEntity);
    em.getTransaction().commit();
    stringEntity1 = new StrTestPrivSeqEntity("Value 1");
    stringEntity2 = new StrTestPrivSeqEntity("Value 2");
    intEntity1 = new IntTestPrivSeqEntity(1);
    intEntity2 = new IntTestPrivSeqEntity(2);
    TernaryMapEntity mapEntity = new TernaryMapEntity();
    mapEntity.getMap().put(intEntity1, stringEntity1);
    mapEntity.getMap().put(intEntity2, stringEntity2);
    // Revision 15
    em.getTransaction().begin();
    em.persist(stringEntity1);
    em.persist(stringEntity2);
    em.persist(intEntity1);
    em.persist(intEntity2);
    em.persist(mapEntity);
    em.getTransaction().commit();
    ternaryMapId = mapEntity.getId();
    // Revision 16 - updating ternary map
    em.getTransaction().begin();
    intEntity2 = em.find(IntTestPrivSeqEntity.class, intEntity2.getId());
    intEntity2.setNumber(3);
    intEntity2 = em.merge(intEntity2);
    stringEntity2 = em.find(StrTestPrivSeqEntity.class, stringEntity2.getId());
    stringEntity2.setStr("Value 3");
    stringEntity2 = em.merge(stringEntity2);
    em.getTransaction().commit();
    // Revision 17 - removing ternary map
    em.getTransaction().begin();
    mapEntity = em.find(TernaryMapEntity.class, mapEntity.getId());
    em.remove(mapEntity);
    em.getTransaction().commit();
    CollectionRefEdEntity collEd1 = new CollectionRefEdEntity(1, "data_ed_1");
    CollectionRefIngEntity collIng1 = new CollectionRefIngEntity(2, "data_ing_1", collEd1);
    collEd1.setReffering(new ArrayList<CollectionRefIngEntity>());
    collEd1.getReffering().add(collIng1);
    // Revision 18 - testing one-to-many collection
    em.getTransaction().begin();
    em.persist(collEd1);
    em.persist(collIng1);
    em.getTransaction().commit();
    // Revision 19
    em.getTransaction().begin();
    collIng1 = em.find(CollectionRefIngEntity.class, collIng1.getId());
    collIng1.setData("modified data_ing_1");
    collIng1 = em.merge(collIng1);
    em.getTransaction().commit();
    // Revision 20
    em.getTransaction().begin();
    collEd1 = em.find(CollectionRefEdEntity.class, collEd1.getId());
    collIng1 = em.find(CollectionRefIngEntity.class, collIng1.getId());
    em.remove(collIng1);
    em.remove(collEd1);
    em.getTransaction().commit();
    ListOwnedEntity listEd1 = new ListOwnedEntity(1, "data_ed_1");
    ListOwningEntity listIng1 = new ListOwningEntity(2, "data_ing_1");
    listEd1.setReferencing(new ArrayList<ListOwningEntity>());
    listIng1.setReferences(new ArrayList<ListOwnedEntity>());
    listEd1.getReferencing().add(listIng1);
    listIng1.getReferences().add(listEd1);
    // Revision 21 - testing many-to-many collection
    em.getTransaction().begin();
    em.persist(listEd1);
    em.persist(listIng1);
    em.getTransaction().commit();
    // Revision 22
    em.getTransaction().begin();
    listIng1 = em.find(ListOwningEntity.class, listIng1.getId());
    listIng1.setData("modified data_ing_1");
    listIng1 = em.merge(listIng1);
    em.getTransaction().commit();
    // Revision 23
    em.getTransaction().begin();
    listIng1 = em.find(ListOwningEntity.class, listIng1.getId());
    listEd1 = em.find(ListOwnedEntity.class, listEd1.getId());
    em.remove(listIng1);
    em.remove(listEd1);
    em.getTransaction().commit();
    em.close();
}
Also used : TernaryMapEntity(org.hibernate.envers.test.integration.manytomany.ternary.TernaryMapEntity) SetRefIngEntity(org.hibernate.envers.test.entities.onetomany.SetRefIngEntity) CollectionRefIngEntity(org.hibernate.envers.test.entities.onetomany.CollectionRefIngEntity) SetRefEdEntity(org.hibernate.envers.test.entities.onetomany.SetRefEdEntity) ListOwningEntity(org.hibernate.envers.test.entities.manytomany.ListOwningEntity) SetOwningEntity(org.hibernate.envers.test.entities.manytomany.SetOwningEntity) StrTestPrivSeqEntity(org.hibernate.envers.test.entities.StrTestPrivSeqEntity) CollectionRefEdEntity(org.hibernate.envers.test.entities.onetomany.CollectionRefEdEntity) EntityManager(javax.persistence.EntityManager) StringSetEntity(org.hibernate.envers.test.entities.collection.StringSetEntity) M2MIndexedListTargetNotAuditedEntity(org.hibernate.envers.test.entities.manytomany.unidirectional.M2MIndexedListTargetNotAuditedEntity) ListOwnedEntity(org.hibernate.envers.test.entities.manytomany.ListOwnedEntity) SetOwnedEntity(org.hibernate.envers.test.entities.manytomany.SetOwnedEntity) UnversionedStrTestEntity(org.hibernate.envers.test.entities.UnversionedStrTestEntity) IntTestPrivSeqEntity(org.hibernate.envers.test.entities.IntTestPrivSeqEntity) HashSet(java.util.HashSet) Test(org.junit.Test) Priority(org.hibernate.envers.test.Priority)

Aggregations

SetRefEdEntity (org.hibernate.envers.test.entities.onetomany.SetRefEdEntity)21 Test (org.junit.Test)21 SetRefIngEntity (org.hibernate.envers.test.entities.onetomany.SetRefIngEntity)20 EntityManager (javax.persistence.EntityManager)6 Priority (org.hibernate.envers.test.Priority)6 HashSet (java.util.HashSet)3 ArrayList (java.util.ArrayList)2 List (java.util.List)2 Session (org.hibernate.Session)1 IntTestPrivSeqEntity (org.hibernate.envers.test.entities.IntTestPrivSeqEntity)1 StrTestPrivSeqEntity (org.hibernate.envers.test.entities.StrTestPrivSeqEntity)1 UnversionedStrTestEntity (org.hibernate.envers.test.entities.UnversionedStrTestEntity)1 StringSetEntity (org.hibernate.envers.test.entities.collection.StringSetEntity)1 ListOwnedEntity (org.hibernate.envers.test.entities.manytomany.ListOwnedEntity)1 ListOwningEntity (org.hibernate.envers.test.entities.manytomany.ListOwningEntity)1 SetOwnedEntity (org.hibernate.envers.test.entities.manytomany.SetOwnedEntity)1 SetOwningEntity (org.hibernate.envers.test.entities.manytomany.SetOwningEntity)1 M2MIndexedListTargetNotAuditedEntity (org.hibernate.envers.test.entities.manytomany.unidirectional.M2MIndexedListTargetNotAuditedEntity)1 CollectionRefEdEntity (org.hibernate.envers.test.entities.onetomany.CollectionRefEdEntity)1 CollectionRefIngEntity (org.hibernate.envers.test.entities.onetomany.CollectionRefIngEntity)1