use of org.apache.camel.api.management.mbean.ManagedAggregateProcessorMBean in project camel by apache.
the class ManagedAggregateControllerTest method testForceCompletionOfGroup.
@Test
public void testForceCompletionOfGroup() throws Exception {
// JMX tests dont work well on AIX CI servers (hangs them)
if (isPlatform("aix")) {
return;
}
MBeanServer mbeanServer = getMBeanServer();
ObjectName on = ObjectName.getInstance("org.apache.camel:context=camel-1,type=processors,name=\"myAggregator\"");
assertTrue(mbeanServer.isRegistered(on));
getMockEndpoint("mock:aggregated").expectedMessageCount(0);
template.sendBodyAndHeader("direct:start", "test1", "id", "1");
template.sendBodyAndHeader("direct:start", "test2", "id", "2");
template.sendBodyAndHeader("direct:start", "test3", "id", "1");
template.sendBodyAndHeader("direct:start", "test4", "id", "2");
assertMockEndpointsSatisfied();
getMockEndpoint("mock:aggregated").expectedMessageCount(1);
getMockEndpoint("mock:aggregated").expectedBodiesReceivedInAnyOrder("test1test3");
getMockEndpoint("mock:aggregated").expectedPropertyReceived(Exchange.AGGREGATED_COMPLETED_BY, "force");
Integer pending = (Integer) mbeanServer.invoke(on, "aggregationRepositoryGroups", null, null);
assertEquals(2, pending.intValue());
Integer groups = (Integer) mbeanServer.invoke(on, "forceCompletionOfGroup", new Object[] { "1" }, new String[] { "java.lang.String" });
assertEquals(1, groups.intValue());
assertMockEndpointsSatisfied();
Long completed = (Long) mbeanServer.getAttribute(on, "ExchangesCompleted");
assertEquals(4, completed.longValue());
completed = (Long) mbeanServer.getAttribute(on, "TotalCompleted");
assertEquals(1, completed.longValue());
Long in = (Long) mbeanServer.getAttribute(on, "TotalIn");
assertEquals(4, in.longValue());
Long byForced = (Long) mbeanServer.getAttribute(on, "CompletedByForce");
assertEquals(1, byForced.longValue());
Long bySize = (Long) mbeanServer.getAttribute(on, "CompletedBySize");
assertEquals(0, bySize.longValue());
Integer size = (Integer) mbeanServer.getAttribute(on, "CompletionSize");
assertEquals(10, size.longValue());
String lan = (String) mbeanServer.getAttribute(on, "CorrelationExpressionLanguage");
assertEquals("header", lan);
String cor = (String) mbeanServer.getAttribute(on, "CorrelationExpression");
assertEquals("id", cor);
Integer inflight = (Integer) mbeanServer.getAttribute(on, "InProgressCompleteExchanges");
assertEquals(0, inflight.intValue());
pending = (Integer) mbeanServer.invoke(on, "aggregationRepositoryGroups", null, null);
assertEquals(1, pending.intValue());
// we can also use the client mbean
ManagedAggregateProcessorMBean client = context.getManagedProcessor("myAggregator", ManagedAggregateProcessorMBean.class);
assertNotNull(client);
assertEquals(1, client.getCompletedByForce());
assertEquals(4, client.getTotalIn());
}
Aggregations