Author: cmueller Date: Mon Nov 5 11:51:39 2012 New Revision: 1405755 URL: http://svn.apache.org/viewvc?rev=1405755&view=rev Log: CAMEL-5770: RoutePolicySupport should provide some easy to use utility methods to suspend/resume routes as we have it already to start/stop routes
Added: camel/branches/camel-2.10.x/camel-core/src/test/java/org/apache/camel/impl/RoutePolicySupportTest.java Modified: camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/impl/RoutePolicySupport.java Modified: camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/impl/RoutePolicySupport.java URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/impl/RoutePolicySupport.java?rev=1405755&r1=1405754&r2=1405755&view=diff ============================================================================== --- camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/impl/RoutePolicySupport.java (original) +++ camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/impl/RoutePolicySupport.java Mon Nov 5 11:51:39 2012 @@ -96,6 +96,18 @@ public abstract class RoutePolicySupport route.getRouteContext().getCamelContext().startRoute(route.getId()); } + protected void resumeRoute(Route route) throws Exception { + route.getRouteContext().getCamelContext().resumeRoute(route.getId()); + } + + protected void suspendRoute(Route route) throws Exception { + route.getRouteContext().getCamelContext().suspendRoute(route.getId()); + } + + protected void suspendRoute(Route route, long timeout, TimeUnit timeUnit) throws Exception { + route.getRouteContext().getCamelContext().suspendRoute(route.getId(), timeout, timeUnit); + } + protected void stopRoute(Route route) throws Exception { route.getRouteContext().getCamelContext().stopRoute(route.getId()); } Added: camel/branches/camel-2.10.x/camel-core/src/test/java/org/apache/camel/impl/RoutePolicySupportTest.java URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/camel-core/src/test/java/org/apache/camel/impl/RoutePolicySupportTest.java?rev=1405755&view=auto ============================================================================== --- camel/branches/camel-2.10.x/camel-core/src/test/java/org/apache/camel/impl/RoutePolicySupportTest.java (added) +++ camel/branches/camel-2.10.x/camel-core/src/test/java/org/apache/camel/impl/RoutePolicySupportTest.java Mon Nov 5 11:51:39 2012 @@ -0,0 +1,65 @@ +/** + * 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.impl; + + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.Route; +import org.apache.camel.ServiceStatus; +import org.apache.camel.builder.RouteBuilder; +import org.junit.Test; + +public class RoutePolicySupportTest extends ContextTestSupport { + + private MyRoutePolicy policy = new MyRoutePolicy(); + + public static class MyRoutePolicy extends RoutePolicySupport { + } + + @Test + public void testLifecycleCallbacks() throws Exception { + Route route = context.getRoute("foo"); + + assertEquals(ServiceStatus.Stopped, context.getRouteStatus("foo")); + + policy.startRoute(route); + + assertEquals(ServiceStatus.Started, context.getRouteStatus("foo")); + + policy.suspendRoute(route); + + assertEquals(ServiceStatus.Suspended, context.getRouteStatus("foo")); + + policy.resumeRoute(route); + + assertEquals(ServiceStatus.Started, context.getRouteStatus("foo")); + + policy.stopRoute(route); + + assertEquals(ServiceStatus.Stopped, context.getRouteStatus("foo")); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + public void configure() throws Exception { + from("direct:start").routeId("foo").routePolicy(policy).autoStartup(false) + .to("mock:result"); + } + }; + } +} \ No newline at end of file