Search in sources :

Example 1 with AllCacheEntryFilter

use of org.eclipse.scout.rt.shared.cache.AllCacheEntryFilter in project scout.rt by eclipse.

the class InvalidateCacheNofificationCoalescerTest method testCoalesceNotificationsSet.

@Test
public void testCoalesceNotificationsSet() {
    InvalidateCacheNotificationCoalescer coalescer = new InvalidateCacheNotificationCoalescer();
    ICacheEntryFilter<Object, Object> filter1 = new KeyCacheEntryFilter<Object, Object>(CollectionUtility.<Object>arrayList(CodeType1.class));
    ICacheEntryFilter<Object, Object> filter2 = new KeyCacheEntryFilter<Object, Object>(CollectionUtility.<Object>arrayList(CodeType2.class));
    List<InvalidateCacheNotification> testList = CollectionUtility.arrayList(new InvalidateCacheNotification(CACHE_ID_1, filter1), new InvalidateCacheNotification(CACHE_ID_1, filter2), new InvalidateCacheNotification(CACHE_ID_2, filter2), new InvalidateCacheNotification(CACHE_ID_3, new AllCacheEntryFilter<>()), new InvalidateCacheNotification(CACHE_ID_3, filter2));
    List<InvalidateCacheNotification> res = coalescer.coalesce(testList);
    assertEquals(3, res.size());
    for (InvalidateCacheNotification notification : res) {
        if (CACHE_ID_1.equals(notification.getCacheId())) {
            Set<?> keys = ((KeyCacheEntryFilter<?, ?>) notification.getFilter()).getKeys();
            assertEquals(2, keys.size());
            assertTrue(keys.contains(CodeType1.class));
            assertTrue(keys.contains(CodeType2.class));
        } else if (CACHE_ID_2.equals(notification.getCacheId())) {
            Set<?> keys = ((KeyCacheEntryFilter<?, ?>) notification.getFilter()).getKeys();
            assertEquals(1, keys.size());
            assertTrue(keys.contains(CodeType2.class));
        } else if (CACHE_ID_3.equals(notification.getCacheId())) {
            assertTrue(notification.getFilter() instanceof AllCacheEntryFilter);
        } else {
            fail("invalid cacheId" + notification.getCacheId());
        }
    }
}
Also used : AllCacheEntryFilter(org.eclipse.scout.rt.shared.cache.AllCacheEntryFilter) Set(java.util.Set) KeyCacheEntryFilter(org.eclipse.scout.rt.shared.cache.KeyCacheEntryFilter) InvalidateCacheNotification(org.eclipse.scout.rt.shared.cache.InvalidateCacheNotification) Test(org.junit.Test)

Example 2 with AllCacheEntryFilter

use of org.eclipse.scout.rt.shared.cache.AllCacheEntryFilter in project scout.rt by eclipse.

the class ClusterSynchronizationServiceTest method testTransactionalWithCoalesce.

@Test
public void testTransactionalWithCoalesce() throws Exception {
    ArgumentCaptor<ClusterNotificationMessage> msgCaptor = ArgumentCaptor.forClass(ClusterNotificationMessage.class);
    doNothing().when(m_nullMomImplementorSpy).publish(eq(IClusterMomDestinations.CLUSTER_NOTIFICATION_TOPIC), msgCaptor.capture(), any(PublishInput.class));
    m_svc.publishTransactional(new BookmarkChangedClientNotification());
    m_svc.publishTransactional(new BookmarkChangedClientNotification());
    m_svc.publishTransactional(new InvalidateCacheNotification("TEST", new AllCacheEntryFilter<>()));
    ITransaction.CURRENT.get().commitPhase1();
    ITransaction.CURRENT.get().commitPhase2();
    // verify
    verify(m_nullMomImplementorSpy, times(2)).publish(eq(IClusterMomDestinations.CLUSTER_NOTIFICATION_TOPIC), any(IClusterNotificationMessage.class), any(PublishInput.class));
    assertEquals(2, m_svc.getStatusInfo().getSentMessageCount());
    List<ClusterNotificationMessage> messages = msgCaptor.getAllValues();
    assertEquals(BookmarkChangedClientNotification.class, messages.get(0).getNotification().getClass());
    assertEquals(InvalidateCacheNotification.class, messages.get(1).getNotification().getClass());
}
Also used : BookmarkChangedClientNotification(org.eclipse.scout.rt.shared.services.common.bookmark.BookmarkChangedClientNotification) AllCacheEntryFilter(org.eclipse.scout.rt.shared.cache.AllCacheEntryFilter) PublishInput(org.eclipse.scout.rt.mom.api.PublishInput) ClusterNotificationMessage(org.eclipse.scout.rt.server.services.common.clustersync.internal.ClusterNotificationMessage) InvalidateCacheNotification(org.eclipse.scout.rt.shared.cache.InvalidateCacheNotification) Test(org.junit.Test)

Aggregations

AllCacheEntryFilter (org.eclipse.scout.rt.shared.cache.AllCacheEntryFilter)2 InvalidateCacheNotification (org.eclipse.scout.rt.shared.cache.InvalidateCacheNotification)2 Test (org.junit.Test)2 Set (java.util.Set)1 PublishInput (org.eclipse.scout.rt.mom.api.PublishInput)1 ClusterNotificationMessage (org.eclipse.scout.rt.server.services.common.clustersync.internal.ClusterNotificationMessage)1 KeyCacheEntryFilter (org.eclipse.scout.rt.shared.cache.KeyCacheEntryFilter)1 BookmarkChangedClientNotification (org.eclipse.scout.rt.shared.services.common.bookmark.BookmarkChangedClientNotification)1