use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class MessageMetricsWorkflowTest method retrieveObjectForSampleConfig.
@Override
protected Object retrieveObjectForSampleConfig() {
Channel c = new Channel();
StandardWorkflow wf = new StandardWorkflow();
wf.setUniqueId("MyWorkflowName");
MessageMetricsInterceptor ti = new MessageMetricsInterceptor();
ti.setUniqueId("Metrics_For_MyWorkflowName");
ti.setTimesliceDuration(new TimeInterval(60L, TimeUnit.SECONDS));
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 MetadataTotalsInterceptorTest method testNoProduceBeforeNewTimeSlice.
@Test
public void testNoProduceBeforeNewTimeSlice() throws Exception {
ProducingStatisticManager producingStatisticManager = new ProducingStatisticManager();
producingStatisticManager.setMarshaller(mockMarshaller);
producingStatisticManager.setProducer(mockStandaloneProducer);
metricsInterceptor.setStatisticManager(producingStatisticManager);
LifecycleHelper.init(metricsInterceptor);
LifecycleHelper.start(metricsInterceptor);
AdaptrisMessage message = DefaultMessageFactory.getDefaultInstance().newMessage();
// A minus time will expire the time slice immediately after the first message
metricsInterceptor.setTimesliceDuration(new TimeInterval(-1L, TimeUnit.SECONDS));
assertEquals(0, metricsInterceptor.getStats().size());
submitMessage(message);
assertEquals(1, metricsInterceptor.getStats().size());
verify(mockMarshaller, times(0)).marshal(any());
verify(mockStandaloneProducer, times(0)).produce(any());
}
use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class MultipleInterceptorWorkflowTest method retrieveObjectForSampleConfig.
@Override
protected Object retrieveObjectForSampleConfig() {
Channel c = new Channel();
StandardWorkflow wf = new StandardWorkflow();
wf.setUniqueId("MyWorkflowName");
MessageMetricsInterceptor ti = new MessageMetricsInterceptor();
ti.setUniqueId("Metrics_For_MyWorkflowName");
ti.setTimesliceDuration(new TimeInterval(60L, TimeUnit.SECONDS));
wf.addInterceptor(ti);
ThrottlingInterceptor ti2 = new ThrottlingInterceptor();
ti2.setMaximumMessages(60);
ti2.setCacheName("60msgsPerMinute");
ti2.setTimeSliceInterval(new TimeInterval(1L, TimeUnit.MINUTES.name()));
wf.addInterceptor(ti2);
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 SlowMessageNotificationTest method testNotification_SentAsPartOfCleanup.
@Test
public void testNotification_SentAsPartOfCleanup() throws Exception {
SlowMessageNotification notif = new SlowMessageNotification(getName(), new TimeInterval(100L, TimeUnit.MILLISECONDS), new TimeInterval(200L, TimeUnit.MILLISECONDS));
StandardWorkflow workflow = createWorkflow(getName() + "_Workflow", notif);
workflow.getServiceCollection().add(new WaitService(new TimeInterval(500L, TimeUnit.MILLISECONDS)));
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();
workflow.onAdaptrisMessage(msg);
listener.waitForMessages(1);
assertEquals(1, listener.getNotifications().size());
Notification notification = listener.getNotifications().get(0);
Properties userData = (Properties) notification.getUserData();
assertEquals(msg.getUniqueId(), userData.getProperty(SlowMessageNotification.KEY_MESSAGE_ID));
assertEquals("-1", userData.getProperty(SlowMessageNotification.KEY_MESSAGE_DURATION));
assertEquals("-1", userData.getProperty(SlowMessageNotification.KEY_MESSAGE_END));
assertEquals("false", userData.getProperty(SlowMessageNotification.KEY_MESSAGE_SUCCESS));
} finally {
stop(adapter);
}
}
use of com.adaptris.util.TimeInterval in project interlok by adaptris.
the class SlowMessageNotificationTest method testNotification_SlowMessage_Failure.
@Test
public void testNotification_SlowMessage_Failure() throws Exception {
SlowMessageNotification notif = new SlowMessageNotification(getName(), new TimeInterval(100L, TimeUnit.MILLISECONDS));
StandardWorkflow workflow = createWorkflow(getName() + "_Workflow", notif);
workflow.getServiceCollection().add(new WaitService(new TimeInterval(500L, TimeUnit.MILLISECONDS)));
workflow.getServiceCollection().add(new AlwaysFailService());
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();
workflow.onAdaptrisMessage(msg);
listener.waitForMessages(1);
assertEquals(1, listener.getNotifications().size());
Notification notification = listener.getNotifications().get(0);
Properties userData = (Properties) notification.getUserData();
assertEquals(msg.getUniqueId(), userData.getProperty(SlowMessageNotification.KEY_MESSAGE_ID));
assertEquals("false", userData.getProperty(SlowMessageNotification.KEY_MESSAGE_SUCCESS));
} finally {
stop(adapter);
}
}
Aggregations