use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class MessageCountNotificationTest method testNotification_AboveThreshold.
@Test
public void testNotification_AboveThreshold() throws Exception {
MessageCountNotification notif = new MessageCountNotification(getName(), new TimeInterval(200L, TimeUnit.MILLISECONDS));
notif.setMessageCount(1);
StandardWorkflow workflow = createWorkflow(getName() + "_Workflow", notif);
Adapter adapter = createAdapter(getName(), workflow);
List<BaseComponentMBean> mBeans = createJmxManagers(adapter);
BaseComponentMBean notifier = getFirstImpl(mBeans, InterceptorNotificationMBean.class);
assertNotNull(notifier);
ObjectName notifObjName = notifier.createObjectName();
SimpleNotificationListener listener = new SimpleNotificationListener();
try {
start(adapter);
register(mBeans);
mBeanServer.addNotificationListener(notifObjName, listener, null, null);
AdaptrisMessage msg = AdaptrisMessageFactory.getDefaultInstance().newMessage("Hello World");
submitWithDelay(msg, workflow, 6, 5);
LifecycleHelper.waitQuietly(200);
submitWithDelay(msg, workflow, 1, 5);
listener.waitForMessages(1);
assertEquals(1, listener.getNotifications().size());
Notification notification = listener.getNotifications().get(0);
assertTrue(notification.getMessage().startsWith(MessageCountNotification.NOTIF_MESSAGE_ABOVE_THRESHOLD));
} finally {
stop(adapter);
}
}
use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class MessageCountNotificationTest method testNotification_AboveThreshold_MaxExceeded.
@Test
public void testNotification_AboveThreshold_MaxExceeded() throws Exception {
MessageCountNotification notif = new MessageCountNotification(getName(), new TimeInterval(200L, TimeUnit.MILLISECONDS));
notif.setMessageCount(1);
notif.setMaxNotifications(1);
StandardWorkflow workflow = createWorkflow(getName() + "_Workflow", notif);
Adapter adapter = createAdapter(getName(), workflow);
List<BaseComponentMBean> mBeans = createJmxManagers(adapter);
BaseComponentMBean notifier = getFirstImpl(mBeans, InterceptorNotificationMBean.class);
assertNotNull(notifier);
ObjectName notifObjName = notifier.createObjectName();
System.err.println(notifObjName);
SimpleNotificationListener listener = new SimpleNotificationListener();
try {
start(adapter);
register(mBeans);
mBeanServer.addNotificationListener(notifObjName, listener, null, null);
AdaptrisMessage msg = AdaptrisMessageFactory.getDefaultInstance().newMessage("Hello World");
submitWithDelay(msg, workflow, 10, 5);
LifecycleHelper.waitQuietly(200);
submitWithDelay(msg, workflow, 6, 5);
LifecycleHelper.waitQuietly(200);
submitWithDelay(msg, workflow, 1, 0);
listener.waitForMessages(1);
assertEquals(1, listener.getNotifications().size());
Notification notification = listener.getNotifications().get(0);
assertTrue(notification.getMessage().startsWith(MessageCountNotification.NOTIF_MESSAGE_ABOVE_THRESHOLD));
} finally {
stop(adapter);
}
}
use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class MessageMetricsInterceptorByMetadataTest method testDoesNotCreateMoreHistoryThanSpecified.
@Test
public void testDoesNotCreateMoreHistoryThanSpecified() throws Exception {
LifecycleHelper.init(interceptor);
LifecycleHelper.start(interceptor);
AdaptrisMessage message = createMessage(true);
interceptor.setTimesliceDuration(new TimeInterval(-1L, TimeUnit.SECONDS));
assertEquals(0, interceptor.getStats().size());
submitMessage(message);
assertEquals(1, interceptor.getStats().size());
submitMessage(message);
assertEquals(2, interceptor.getStats().size());
submitMessage(message);
// Should still only be 2 time slices
assertEquals(2, interceptor.getStats().size());
}
use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class MessageThresholdNotificationWorkflowTest method retrieveObjectForSampleConfig.
@Override
protected Object retrieveObjectForSampleConfig() {
Channel c = new Channel();
StandardWorkflow wf = new StandardWorkflow();
MessageThresholdNotification ti = new MessageThresholdNotification("MessageCount_For_MyWorkflowName");
ti.setTimesliceDuration(new TimeInterval(30L, TimeUnit.SECONDS));
ti.setCountThreshold(20L);
wf.addInterceptor(ti);
c.setUniqueId(UUID.randomUUID().toString());
wf.setUniqueId(UUID.randomUUID().toString());
c.getWorkflowList().add(wf);
return c;
}
use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class MetadataCountInterceptorTest method testDoesNotCreateMoreHistoryThanSpecified.
@Test
public void testDoesNotCreateMoreHistoryThanSpecified() throws Exception {
LifecycleHelper.init(metricsInterceptor);
LifecycleHelper.start(metricsInterceptor);
metricsInterceptor.setTimesliceDuration(new TimeInterval(-1L, TimeUnit.SECONDS));
AdaptrisMessage message = createMessage(COUNTER_1);
assertEquals(0, metricsInterceptor.getStats().size());
submitMessage(message);
assertEquals(1, metricsInterceptor.getStats().size());
submitMessage(message);
assertEquals(2, metricsInterceptor.getStats().size());
submitMessage(message);
// Should still only be 2 time slices
assertEquals(2, metricsInterceptor.getStats().size());
}
Aggregations