/** * 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.Set; import javax.management.MBeanServer; import javax.management.ObjectName; import org.apache.camel.NonManagedService; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.spi.LifecycleStrategy; import org.apache.camel.support.ServiceSupport; /** * @version */ public class ManagedNonManagedServiceTest extends ManagementTestSupport { public void testService() throws Exception { // JMX tests dont work well on AIX CI servers (hangs them) if (isPlatform("aix")) { return; } // must enable always as CamelContext has been started // and we add the service manually below context.getManagementStrategy().getManagementAgent().setRegisterAlways(true); MyService service = new MyService(); for (LifecycleStrategy strategy : context.getLifecycleStrategies()) { strategy.onServiceAdd(context, service, null); } MBeanServer mbeanServer = getMBeanServer(); Set<ObjectName> set = mbeanServer.queryNames(new ObjectName("*:type=services,*"), null); assertEquals(12, set.size()); } public void testNonManagedService() throws Exception { // JMX tests dont work well on AIX CI servers (hangs them) if (isPlatform("aix")) { return; } // must enable always as CamelContext has been started // and we add the service manually below context.getManagementStrategy().getManagementAgent().setRegisterAlways(true); MyNonService service = new MyNonService(); for (LifecycleStrategy strategy : context.getLifecycleStrategies()) { strategy.onServiceAdd(context, service, null); } MBeanServer mbeanServer = getMBeanServer(); Set<ObjectName> set = mbeanServer.queryNames(new ObjectName("*:type=services,*"), null); assertEquals(11, set.size()); } @Override protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { @Override public void configure() throws Exception { from("direct:start") .to("mock:result"); } }; } private final class MyService extends ServiceSupport { @Override protected void doStart() throws Exception { // noop } @Override protected void doStop() throws Exception { // noop } } private final class MyNonService extends ServiceSupport implements NonManagedService { @Override protected void doStart() throws Exception { // noop } @Override protected void doStop() throws Exception { // noop } } }