blob: 8a9fa4960718c96747d2b0573a3ed77020a9625a [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.impl;
import java.util.List;
import org.apache.camel.ContextTestSupport;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.component.seda.SedaEndpoint;
import org.apache.camel.model.FromDefinition;
import org.apache.camel.model.RouteDefinition;
/**
* This test stops a route, mutates it then restarts it
*
* @version
*/
public class StartAndStopRoutesTest extends ContextTestSupport {
protected SedaEndpoint endpointA;
protected SedaEndpoint endpointB;
protected SedaEndpoint endpointC;
protected Object expectedBody = "<hello>world!</hello>";
public void testStartRouteThenStopMutateAndStartRouteAgain() throws Exception {
List<RouteDefinition> routes = context.getRouteDefinitions();
assertCollectionSize("Route", routes, 1);
RouteDefinition route = routes.get(0);
endpointA = getMandatoryEndpoint("seda:test.a", SedaEndpoint.class);
endpointB = getMandatoryEndpoint("seda:test.b", SedaEndpoint.class);
endpointC = getMandatoryEndpoint("seda:test.C", SedaEndpoint.class);
// send from A over B to results
MockEndpoint results = getMockEndpoint("mock:results");
results.expectedBodiesReceived(expectedBody);
template.sendBody(endpointA, expectedBody);
assertMockEndpointsSatisfied();
// stop the route
context.stopRoute(route);
// lets mutate the route...
FromDefinition fromType = assertOneElement(route.getInputs());
fromType.setUri("seda:test.C");
context.startRoute(route);
// now lets check it works
// send from C over B to results
results.reset();
results = getMockEndpoint("mock:results");
results.expectedBodiesReceived(expectedBody);
template.sendBody(endpointC, expectedBody);
assertMockEndpointsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("seda:test.a").
to("seda:test.b").
to("mock:results");
}
};
}
}