use of org.hibernate.envers.test.entities.onetomany.detached.DoubleSetRefCollEntity in project hibernate-orm by hibernate.
the class DoubleDetachedSet method testHistoryOfColl1.
@Test
public void testHistoryOfColl1() {
StrTestEntity str1 = getEntityManager().find(StrTestEntity.class, str1_id);
StrTestEntity str2 = getEntityManager().find(StrTestEntity.class, str2_id);
DoubleSetRefCollEntity rev1 = getAuditReader().find(DoubleSetRefCollEntity.class, coll1_id, 1);
DoubleSetRefCollEntity rev2 = getAuditReader().find(DoubleSetRefCollEntity.class, coll1_id, 2);
DoubleSetRefCollEntity rev3 = getAuditReader().find(DoubleSetRefCollEntity.class, coll1_id, 3);
assert rev1.getCollection().equals(TestTools.makeSet(str1));
assert rev2.getCollection().equals(TestTools.makeSet(str1, str2));
assert rev3.getCollection().equals(TestTools.makeSet(str2));
assert rev1.getCollection2().equals(TestTools.makeSet(str2));
assert rev2.getCollection2().equals(TestTools.makeSet(str2));
assert rev3.getCollection2().equals(TestTools.makeSet(str1, str2));
}
use of org.hibernate.envers.test.entities.onetomany.detached.DoubleSetRefCollEntity in project hibernate-orm by hibernate.
the class DoubleDetachedSet method initData.
@Test
@Priority(10)
public void initData() {
EntityManager em = getEntityManager();
StrTestEntity str1 = new StrTestEntity("str1");
StrTestEntity str2 = new StrTestEntity("str2");
DoubleSetRefCollEntity coll1 = new DoubleSetRefCollEntity(3, "coll1");
// Revision 1
em.getTransaction().begin();
em.persist(str1);
em.persist(str2);
coll1.setCollection(new HashSet<StrTestEntity>());
coll1.getCollection().add(str1);
em.persist(coll1);
coll1.setCollection2(new HashSet<StrTestEntity>());
coll1.getCollection2().add(str2);
em.persist(coll1);
em.getTransaction().commit();
// Revision 2
em.getTransaction().begin();
str2 = em.find(StrTestEntity.class, str2.getId());
coll1 = em.find(DoubleSetRefCollEntity.class, coll1.getId());
coll1.getCollection().add(str2);
em.getTransaction().commit();
// Revision 3
em.getTransaction().begin();
str1 = em.find(StrTestEntity.class, str1.getId());
coll1 = em.find(DoubleSetRefCollEntity.class, coll1.getId());
coll1.getCollection().remove(str1);
coll1.getCollection2().add(str1);
em.getTransaction().commit();
//
str1_id = str1.getId();
str2_id = str2.getId();
coll1_id = coll1.getId();
}
Aggregations