blob: c87f71f9c921cba510aad1de824f44b3516f32b6 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.management;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import javax.management.ObjectName;
import org.apache.camel.CamelContext;
import org.apache.camel.Endpoint;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.direct.DirectEndpoint;
import org.apache.camel.impl.DefaultComponent;
import org.apache.camel.util.CastUtils;
/**
* JmxInstrumentationCustomMBeanTest will verify that all endpoints are registered
* with the mbean server.
*/
public class JmxInstrumentationCustomMBeanTest extends JmxInstrumentationUsingDefaultsTest {
@Override
protected boolean useJmx() {
return true;
}
protected CamelContext createCamelContext() throws Exception {
CamelContext context = super.createCamelContext();
context.addComponent("custom", new CustomComponent());
DefaultManagementNamingStrategy naming = (DefaultManagementNamingStrategy) context.getManagementStrategy().getManagementNamingStrategy();
naming.setHostName("localhost");
naming.setDomainName("org.apache.camel");
return context;
}
public void testCustomEndpoint() throws Exception {
assertDefaultDomain();
resolveMandatoryEndpoint("custom://end", CustomEndpoint.class);
Set<ObjectName> s = CastUtils.cast(mbsc.queryNames(new ObjectName(domainName + ":type=endpoints,*"), null));
assertEquals("Could not find 2 endpoints: " + s, 2, s.size());
// get custom
Iterator<ObjectName> it = s.iterator();
ObjectName on1 = it.next();
ObjectName on2 = it.next();
if (on1.getCanonicalName().contains("custom")) {
assertEquals("bar", mbsc.getAttribute(on1, "Foo"));
} else {
assertEquals("bar", mbsc.getAttribute(on2, "Foo"));
}
}
public void testManagedEndpoint() throws Exception {
assertDefaultDomain();
resolveMandatoryEndpoint("direct:start", DirectEndpoint.class);
ObjectName objName = new ObjectName(domainName + ":type=endpoints,*");
Set<ObjectName> s = mbsc.queryNames(objName, null);
assertEquals(2, s.size());
}
public void testCounters() throws Exception {
CustomEndpoint resultEndpoint = resolveMandatoryEndpoint("custom:end", CustomEndpoint.class);
resultEndpoint.expectedBodiesReceived("<hello>world!</hello>");
sendBody("direct:start", "<hello>world!</hello>");
resultEndpoint.assertIsSatisfied();
verifyCounter(mbsc, new ObjectName(domainName + ":type=routes,*"));
}
public void testMBeansRegistered() throws Exception {
assertDefaultDomain();
Set<ObjectName> s = CastUtils.cast(mbsc.queryNames(new ObjectName(domainName + ":type=endpoints,*"), null));
assertEquals("Could not find 2 endpoints: " + s, 2, s.size());
s = CastUtils.cast(mbsc.queryNames(new ObjectName(domainName + ":type=context,*"), null));
assertEquals("Could not find 1 context: " + s, 1, s.size());
s = CastUtils.cast(mbsc.queryNames(new ObjectName(domainName + ":type=processors,*"), null));
assertEquals("Could not find 1 processors: " + s, 1, s.size());
s = CastUtils.cast(mbsc.queryNames(new ObjectName(domainName + ":type=routes,*"), null));
assertEquals("Could not find 1 route: " + s, 1, s.size());
}
@Override
protected RouteBuilder createRouteBuilder() {
return new RouteBuilder() {
public void configure() {
// need a little delay for fast computers being able to process
// the exchange in 0 millis and we need to simulate a little computation time
from("direct:start").delay(10).to("custom:end");
}
};
}
private class CustomComponent extends DefaultComponent {
protected Endpoint createEndpoint(final String uri, final String remaining, final Map<String, Object> parameters) throws Exception {
return new CustomEndpoint(uri, this);
}
}
}