use of org.hibernate.envers.test.entities.IntTestPrivSeqEntity in project hibernate-orm by hibernate.
the class RemovedObjectQueryTest method testTernaryMap.
@Test
public void testTernaryMap() {
final TernaryMapEntity ternaryMap = new TernaryMapEntity();
ternaryMap.setId(ternaryMapId);
ternaryMap.getMap().put(intEntity1, stringEntity1);
ternaryMap.getMap().put(new IntTestPrivSeqEntity(2, intEntity2.getId()), new StrTestPrivSeqEntity("Value 2", stringEntity2.getId()));
TernaryMapEntity entity = getAuditReader().find(TernaryMapEntity.class, ternaryMapId, 15);
Assert.assertEquals(ternaryMap.getMap(), entity.getMap());
ternaryMap.getMap().clear();
ternaryMap.getMap().put(intEntity1, stringEntity1);
ternaryMap.getMap().put(intEntity2, stringEntity2);
entity = getAuditReader().find(TernaryMapEntity.class, ternaryMapId, 16);
Assert.assertEquals(ternaryMap.getMap(), entity.getMap());
List queryResult = getAuditReader().createQuery().forRevisionsOfEntity(TernaryMapEntity.class, false, true).add(AuditEntity.id().eq(ternaryMapId)).add(AuditEntity.revisionType().eq(RevisionType.DEL)).getResultList();
Object[] objArray = (Object[]) queryResult.get(0);
Assert.assertEquals(17, getRevisionNumber(objArray[1]));
entity = (TernaryMapEntity) objArray[0];
Assert.assertEquals(ternaryMap.getMap(), entity.getMap());
}
use of org.hibernate.envers.test.entities.IntTestPrivSeqEntity in project hibernate-orm by hibernate.
the class TernaryMap method testHistoryOfMap2.
@Test
public void testHistoryOfMap2() {
StrTestPrivSeqEntity str1 = getEntityManager().find(StrTestPrivSeqEntity.class, str1_id);
StrTestPrivSeqEntity str2 = getEntityManager().find(StrTestPrivSeqEntity.class, str2_id);
IntTestPrivSeqEntity int1 = getEntityManager().find(IntTestPrivSeqEntity.class, int1_id);
IntTestPrivSeqEntity int2 = getEntityManager().find(IntTestPrivSeqEntity.class, int2_id);
TernaryMapEntity rev1 = getAuditReader().find(TernaryMapEntity.class, map2_id, 1);
TernaryMapEntity rev2 = getAuditReader().find(TernaryMapEntity.class, map2_id, 2);
TernaryMapEntity rev3 = getAuditReader().find(TernaryMapEntity.class, map2_id, 3);
TernaryMapEntity rev4 = getAuditReader().find(TernaryMapEntity.class, map2_id, 4);
assert rev1.getMap().equals(TestTools.makeMap());
assert rev2.getMap().equals(TestTools.makeMap(int1, str1, int2, str1));
assert rev3.getMap().equals(TestTools.makeMap(int2, str1));
assert rev4.getMap().equals(TestTools.makeMap(int1, str2, int2, str1));
}
use of org.hibernate.envers.test.entities.IntTestPrivSeqEntity in project hibernate-orm by hibernate.
the class TernaryMap method testHistoryOfMap1.
@Test
public void testHistoryOfMap1() {
StrTestPrivSeqEntity str1 = getEntityManager().find(StrTestPrivSeqEntity.class, str1_id);
StrTestPrivSeqEntity str2 = getEntityManager().find(StrTestPrivSeqEntity.class, str2_id);
IntTestPrivSeqEntity int1 = getEntityManager().find(IntTestPrivSeqEntity.class, int1_id);
IntTestPrivSeqEntity int2 = getEntityManager().find(IntTestPrivSeqEntity.class, int2_id);
TernaryMapEntity rev1 = getAuditReader().find(TernaryMapEntity.class, map1_id, 1);
TernaryMapEntity rev2 = getAuditReader().find(TernaryMapEntity.class, map1_id, 2);
TernaryMapEntity rev3 = getAuditReader().find(TernaryMapEntity.class, map1_id, 3);
TernaryMapEntity rev4 = getAuditReader().find(TernaryMapEntity.class, map1_id, 4);
Assert.assertEquals(TestTools.makeMap(int1, str1), rev1.getMap());
Assert.assertEquals(TestTools.makeMap(int1, str2), rev2.getMap());
Assert.assertEquals(TestTools.makeMap(int1, str2), rev3.getMap());
Assert.assertEquals(TestTools.makeMap(int1, str2, int2, str2), rev4.getMap());
}
use of org.hibernate.envers.test.entities.IntTestPrivSeqEntity in project hibernate-orm by hibernate.
the class TernaryMapFlush method testHistoryOfMap1.
@Test
public void testHistoryOfMap1() {
StrTestPrivSeqEntity str1 = getEntityManager().find(StrTestPrivSeqEntity.class, str1_id);
StrTestPrivSeqEntity str2 = getEntityManager().find(StrTestPrivSeqEntity.class, str2_id);
IntTestPrivSeqEntity int1 = getEntityManager().find(IntTestPrivSeqEntity.class, int1_id);
IntTestPrivSeqEntity int2 = getEntityManager().find(IntTestPrivSeqEntity.class, int2_id);
TernaryMapEntity rev1 = getAuditReader().find(TernaryMapEntity.class, map1_id, 1);
TernaryMapEntity rev2 = getAuditReader().find(TernaryMapEntity.class, map1_id, 2);
TernaryMapEntity rev3 = getAuditReader().find(TernaryMapEntity.class, map1_id, 3);
assertEquals(rev1.getMap(), TestTools.makeMap(int1, str1));
assertEquals(rev2.getMap(), TestTools.makeMap(int1, str1, int2, str2));
assertEquals(rev3.getMap(), TestTools.makeMap(int2, str1));
}
use of org.hibernate.envers.test.entities.IntTestPrivSeqEntity 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();
}
Aggregations