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());
}
}
}
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());
}
Aggregations