Search in sources :

Example 21 with OMultiValueChangeEvent

use of com.orientechnologies.orient.core.db.record.OMultiValueChangeEvent in project orientdb by orientechnologies.

the class DocumentTrackingTest method testDocumentEmbeddedSetTrackingAfterSaveWithClass.

public void testDocumentEmbeddedSetTrackingAfterSaveWithClass() {
    final ODocument document = new ODocument("DocumentTrackingTestClass");
    final Set<String> set = new HashSet<String>();
    set.add("value1");
    document.field("embeddedset", set);
    document.field("val", 1);
    document.save();
    Assert.assertFalse(document.isDirty());
    Assert.assertEquals(document.getDirtyFields(), new String[] {});
    final Set<String> trackedSet = document.field("embeddedset");
    trackedSet.add("value2");
    Assert.assertTrue(document.isDirty());
    final OMultiValueChangeTimeLine timeLine = document.getCollectionTimeLine("embeddedset");
    Assert.assertNotNull(timeLine);
    Assert.assertNotNull(timeLine.getMultiValueChangeEvents());
    final List<OMultiValueChangeEvent> firedEvents = new ArrayList<OMultiValueChangeEvent>();
    firedEvents.add(new OMultiValueChangeEvent(OMultiValueChangeEvent.OChangeType.ADD, "value2", "value2"));
    Assert.assertEquals(timeLine.getMultiValueChangeEvents(), firedEvents);
    Assert.assertEquals(document.getDirtyFields(), new String[] { "embeddedset" });
}
Also used : OMultiValueChangeTimeLine(com.orientechnologies.orient.core.db.record.OMultiValueChangeTimeLine) OMultiValueChangeEvent(com.orientechnologies.orient.core.db.record.OMultiValueChangeEvent) ArrayList(java.util.ArrayList) ODocument(com.orientechnologies.orient.core.record.impl.ODocument) HashSet(java.util.HashSet)

Aggregations

OMultiValueChangeEvent (com.orientechnologies.orient.core.db.record.OMultiValueChangeEvent)21 OIdentifiable (com.orientechnologies.orient.core.db.record.OIdentifiable)11 OMultiValueChangeTimeLine (com.orientechnologies.orient.core.db.record.OMultiValueChangeTimeLine)10 ORecordId (com.orientechnologies.orient.core.id.ORecordId)10 ODocument (com.orientechnologies.orient.core.record.impl.ODocument)10 ArrayList (java.util.ArrayList)10 HashMap (java.util.HashMap)3 HashSet (java.util.HashSet)3