/** * 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 java.util.concurrent.TimeUnit; import org.apache.camel.ContextTestSupport; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.mock.MockEndpoint; public class StopRouteAbortAfterTimeoutTest extends ContextTestSupport { public void testStopRouteWithAbortAfterTimeoutTrue() throws Exception { // doesnt test to well on all Windows if (isPlatform("windows")) { return; } MockEndpoint mockEP = getMockEndpoint("mock:result"); mockEP.setExpectedMessageCount(10); //send some message through the route for (int i = 0; i < 5; i++) { template.sendBody("seda:start", "message-" + i); } // stop route with a 2s timeout and abortAfterTimeout=true (should abort after 2s) boolean stopRouteResponse = context.stopRoute("start", 2, TimeUnit.SECONDS, true); // confirm that route is still running assertFalse("stopRoute response should be False", stopRouteResponse); assertEquals("route should still be started", true, context.getRouteStatus("start").isStarted()); //send some more messages through the route for (int i = 5; i < 10; i++) { template.sendBody("seda:start", "message-" + i); } mockEP.assertIsSatisfied(); } public void testStopRouteWithAbortAfterTimeoutFalse() throws Exception { // doesnt test to well on all Windows if (isPlatform("windows")) { return; } MockEndpoint mockEP = getMockEndpoint("mock:result"); //send some message through the route for (int i = 0; i < 5; i++) { template.sendBody("seda:start", "message-" + i); } // stop route with a 2s timeout and abortAfterTimeout=false (normal timeout behavior) boolean stopRouteResponse = context.stopRoute("start", 2, TimeUnit.SECONDS, false); // the route should have been forced stopped assertTrue("stopRoute response should be True", stopRouteResponse); assertEquals("route should be stopped", true, context.getRouteStatus("start").isStopped()); // send some more messages through the route for (int i = 5; i < 10; i++) { template.sendBody("seda:start", "message-" + i); } Thread.sleep(3000); assertTrue("Should not have received more than 5 messages", mockEP.getExchanges().size() <= 5); } @Override protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { @Override public void configure() throws Exception { // shutdown this test faster context.getShutdownStrategy().setTimeout(3); from("seda:start").routeId("start").delay(500).to("mock:result"); } }; } }