All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.test.junit4.CamelTestSupport Maven / Gradle / Ivy

There is a newer version: 3.22.3
Show newest version
/**
 * 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.test.junit4;

import java.io.InputStream;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.TimeUnit;
import javax.naming.Context;
import javax.naming.InitialContext;

import org.apache.camel.CamelContext;
import org.apache.camel.ConsumerTemplate;
import org.apache.camel.Endpoint;
import org.apache.camel.Exchange;
import org.apache.camel.Expression;
import org.apache.camel.Message;
import org.apache.camel.NoSuchEndpointException;
import org.apache.camel.Predicate;
import org.apache.camel.Processor;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.Service;
import org.apache.camel.ServiceStatus;
import org.apache.camel.builder.AdviceWithRouteBuilder;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.component.properties.PropertiesComponent;
import org.apache.camel.impl.BreakpointSupport;
import org.apache.camel.impl.DefaultCamelBeanPostProcessor;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.impl.DefaultDebugger;
import org.apache.camel.impl.InterceptSendToMockEndpointStrategy;
import org.apache.camel.impl.JndiRegistry;
import org.apache.camel.management.JmxSystemPropertyKeys;
import org.apache.camel.model.ModelCamelContext;
import org.apache.camel.model.ProcessorDefinition;
import org.apache.camel.spi.Language;
import org.apache.camel.util.StopWatch;
import org.apache.camel.util.TimeUtils;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * A useful base class which creates a {@link org.apache.camel.CamelContext} with some routes
 * along with a {@link org.apache.camel.ProducerTemplate} for use in the test case
 *
 * @version 
 */
public abstract class CamelTestSupport extends TestSupport {
    private static final Logger LOG = LoggerFactory.getLogger(CamelTestSupport.class);
    private static final ThreadLocal INIT = new ThreadLocal();
    private static ThreadLocal threadCamelContext = new ThreadLocal();
    private static ThreadLocal threadTemplate = new ThreadLocal();
    private static ThreadLocal threadConsumer = new ThreadLocal();
    private static ThreadLocal threadService = new ThreadLocal();
    protected volatile ModelCamelContext context;
    protected volatile ProducerTemplate template;
    protected volatile ConsumerTemplate consumer;
    protected volatile Service camelContextService;
    private boolean useRouteBuilder = true;
    private final DebugBreakpoint breakpoint = new DebugBreakpoint();
    private final StopWatch watch = new StopWatch();
    private final Map fromEndpoints = new HashMap();

    /**
     * Use the RouteBuilder or not
     * @return true then {@link CamelContext} will be auto started,
     *        false then {@link CamelContext} will not be auto started (you will have to start it manually)
     */
    public boolean isUseRouteBuilder() {
        return useRouteBuilder;
    }

    public void setUseRouteBuilder(boolean useRouteBuilder) {
        this.useRouteBuilder = useRouteBuilder;
    }

    /**
     * Override when using advice with and return true.
     * This helps knowing advice with is to be used, and {@link CamelContext} will not be started before
     * the advice with takes place. This helps by ensuring the advice with has been property setup before the
     * {@link CamelContext} is started
     * 

* Important: Its important to start {@link CamelContext} manually from the unit test * after you are done doing all the advice with. * * @return true if you use advice with in your unit tests. */ public boolean isUseAdviceWith() { return false; } /** * Override to control whether {@link CamelContext} should be setup per test or per class. *

* By default it will be setup/teardown per test (per test method). If you want to re-use * {@link CamelContext} between test methods you can override this method and return true *

* Important: Use this with care as the {@link CamelContext} will carry over state * from previous tests, such as endpoints, components etc. So you cannot use this in all your tests. *

* Setting up {@link CamelContext} uses the {@link #doPreSetup()}, {@link #doSetUp()}, and {@link #doPostSetup()} * methods in that given order. * * @return true per class, false per test. */ public boolean isCreateCamelContextPerClass() { return false; } /** * Override to enable auto mocking endpoints based on the pattern. *

* Return * to mock all endpoints. * * @see org.apache.camel.util.EndpointHelper#matchEndpoint(String, String) */ public String isMockEndpoints() { return null; } /** * Override to enable auto mocking endpoints based on the pattern, and skip sending * to original endpoint. *

* Return * to mock all endpoints. * * @see org.apache.camel.util.EndpointHelper#matchEndpoint(String, String) */ public String isMockEndpointsAndSkip() { return null; } public void replaceRouteFromWith(String routeId, String fromEndpoint) { fromEndpoints.put(routeId, fromEndpoint); } /** * Override to enable debugger *

* Is default false */ public boolean isUseDebugger() { return false; } public Service getCamelContextService() { return camelContextService; } public Service camelContextService() { return camelContextService; } public CamelContext context() { return context; } public ProducerTemplate template() { return template; } public ConsumerTemplate consumer() { return consumer; } /** * Allows a service to be registered a separate lifecycle service to start * and stop the context; such as for Spring when the ApplicationContext is * started and stopped, rather than directly stopping the CamelContext */ public void setCamelContextService(Service service) { camelContextService = service; threadService.set(camelContextService); } @Before public void setUp() throws Exception { log.info("********************************************************************************"); log.info("Testing: " + getTestMethodName() + "(" + getClass().getName() + ")"); log.info("********************************************************************************"); if (isCreateCamelContextPerClass()) { // test is per class, so only setup once (the first time) boolean first = INIT.get() == null; if (first) { doPreSetup(); doSetUp(); doPostSetup(); } else { // and in between tests we must do IoC and reset mocks postProcessTest(); resetMocks(); } } else { // test is per test so always setup doPreSetup(); doSetUp(); doPostSetup(); } // only start timing after all the setup watch.restart(); } /** * Strategy to perform any pre setup, before {@link CamelContext} is created */ protected void doPreSetup() throws Exception { // noop } /** * Strategy to perform any post setup after {@link CamelContext} is created */ protected void doPostSetup() throws Exception { // noop } private void doSetUp() throws Exception { log.debug("setUp test"); if (!useJmx()) { disableJMX(); } else { enableJMX(); } context = (ModelCamelContext)createCamelContext(); threadCamelContext.set(context); assertNotNull("No context found!", context); // reduce default shutdown timeout to avoid waiting for 300 seconds context.getShutdownStrategy().setTimeout(getShutdownTimeout()); // set debugger if enabled if (isUseDebugger()) { if (context.getStatus().equals(ServiceStatus.Started)) { log.info("Cannot setting the Debugger to the starting CamelContext, stop the CamelContext now."); // we need to stop the context first to setup the debugger context.stop(); } context.setDebugger(new DefaultDebugger()); context.getDebugger().addBreakpoint(breakpoint); // note: when stopping CamelContext it will automatic remove the breakpoint } template = context.createProducerTemplate(); template.start(); consumer = context.createConsumerTemplate(); consumer.start(); threadTemplate.set(template); threadConsumer.set(consumer); // enable auto mocking if enabled String pattern = isMockEndpoints(); if (pattern != null) { context.addRegisterEndpointCallback(new InterceptSendToMockEndpointStrategy(pattern)); } pattern = isMockEndpointsAndSkip(); if (pattern != null) { context.addRegisterEndpointCallback(new InterceptSendToMockEndpointStrategy(pattern, true)); } // configure properties component (mandatory for testing) PropertiesComponent pc = context.getComponent("properties", PropertiesComponent.class); Properties extra = useOverridePropertiesWithPropertiesComponent(); if (extra != null && !extra.isEmpty()) { pc.setOverrideProperties(extra); } Boolean ignore = ignoreMissingLocationWithPropertiesComponent(); if (ignore != null) { pc.setIgnoreMissingLocation(ignore); } postProcessTest(); if (isUseRouteBuilder()) { RouteBuilder[] builders = createRouteBuilders(); for (RouteBuilder builder : builders) { log.debug("Using created route builder: " + builder); context.addRoutes(builder); } replaceFromEndpoints(); boolean skip = "true".equalsIgnoreCase(System.getProperty("skipStartingCamelContext")); if (skip) { log.info("Skipping starting CamelContext as system property skipStartingCamelContext is set to be true."); } else if (isUseAdviceWith()) { log.info("Skipping starting CamelContext as isUseAdviceWith is set to true."); } else { startCamelContext(); } } else { replaceFromEndpoints(); log.debug("Using route builder from the created context: " + context); } log.debug("Routing Rules are: " + context.getRoutes()); assertValidContext(context); INIT.set(true); } private void replaceFromEndpoints() throws Exception { for (final Map.Entry entry : fromEndpoints.entrySet()) { context.getRouteDefinition(entry.getKey()).adviceWith(context, new AdviceWithRouteBuilder() { @Override public void configure() throws Exception { replaceFromWith(entry.getValue()); } }); } } @After public void tearDown() throws Exception { long time = watch.stop(); log.info("********************************************************************************"); log.info("Testing done: " + getTestMethodName() + "(" + getClass().getName() + ")"); log.info("Took: " + TimeUtils.printDuration(time) + " (" + time + " millis)"); log.info("********************************************************************************"); if (isCreateCamelContextPerClass()) { // we tear down in after class return; } LOG.debug("tearDown test"); doStopTemplates(consumer, template); doStopCamelContext(context, camelContextService); } @AfterClass public static void tearDownAfterClass() throws Exception { INIT.remove(); LOG.debug("tearDownAfterClass test"); doStopTemplates(threadConsumer.get(), threadTemplate.get()); doStopCamelContext(threadCamelContext.get(), threadService.get()); } /** * Returns the timeout to use when shutting down (unit in seconds). *

* Will default use 10 seconds. * * @return the timeout to use */ protected int getShutdownTimeout() { return 10; } /** * Whether or not JMX should be used during testing. * * @return false by default. */ protected boolean useJmx() { return false; } /** * Whether or not type converters should be lazy loaded (notice core converters is always loaded) * * @return false by default. */ @Deprecated protected boolean isLazyLoadingTypeConverter() { return false; } /** * Override this method to include and override properties * with the Camel {@link PropertiesComponent}. * * @return additional properties to add/override. */ protected Properties useOverridePropertiesWithPropertiesComponent() { return null; } /** * Whether to ignore missing locations with the {@link PropertiesComponent}. * For example when unit testing you may want to ignore locations that are * not available in the environment you use for testing. * * @return true to ignore, false to not ignore, and null to leave as configured * on the {@link PropertiesComponent} */ protected Boolean ignoreMissingLocationWithPropertiesComponent() { return null; } protected void postProcessTest() throws Exception { context = threadCamelContext.get(); template = threadTemplate.get(); consumer = threadConsumer.get(); camelContextService = threadService.get(); applyCamelPostProcessor(); } /** * Applies the {@link DefaultCamelBeanPostProcessor} to this instance. * * Derived classes using IoC / DI frameworks may wish to turn this into a NoOp such as for CDI * we would just use CDI to inject this */ protected void applyCamelPostProcessor() throws Exception { // use the default bean post processor from camel-core DefaultCamelBeanPostProcessor processor = new DefaultCamelBeanPostProcessor(context); processor.postProcessBeforeInitialization(this, getClass().getName()); processor.postProcessAfterInitialization(this, getClass().getName()); } protected void stopCamelContext() throws Exception { doStopCamelContext(context, camelContextService); } private static void doStopCamelContext(CamelContext context, Service camelContextService) throws Exception { if (camelContextService != null) { if (camelContextService == threadService.get()) { threadService.remove(); } camelContextService.stop(); } else { if (context != null) { if (context == threadCamelContext.get()) { threadCamelContext.remove(); } context.stop(); } } } private static void doStopTemplates(ConsumerTemplate consumer, ProducerTemplate template) throws Exception { if (consumer != null) { if (consumer == threadConsumer.get()) { threadConsumer.remove(); } consumer.stop(); } if (template != null) { if (template == threadTemplate.get()) { threadTemplate.remove(); } template.stop(); } } protected void startCamelContext() throws Exception { if (camelContextService != null) { camelContextService.start(); } else { if (context instanceof DefaultCamelContext) { DefaultCamelContext defaultCamelContext = (DefaultCamelContext)context; if (!defaultCamelContext.isStarted()) { defaultCamelContext.start(); } } else { context.start(); } } } @SuppressWarnings("deprecation") protected CamelContext createCamelContext() throws Exception { CamelContext context = new DefaultCamelContext(createRegistry()); context.setLazyLoadTypeConverters(isLazyLoadingTypeConverter()); return context; } protected JndiRegistry createRegistry() throws Exception { return new JndiRegistry(createJndiContext()); } protected Context createJndiContext() throws Exception { Properties properties = new Properties(); // jndi.properties is optional InputStream in = getClass().getClassLoader().getResourceAsStream("jndi.properties"); if (in != null) { log.debug("Using jndi.properties from classpath root"); properties.load(in); } else { properties.put("java.naming.factory.initial", "org.apache.camel.util.jndi.CamelInitialContextFactory"); } return new InitialContext(new Hashtable(properties)); } /** * Factory method which derived classes can use to create a {@link RouteBuilder} * to define the routes for testing */ protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { public void configure() { // no routes added by default } }; } /** * Factory method which derived classes can use to create an array of * {@link org.apache.camel.builder.RouteBuilder}s to define the routes for testing * * @see #createRouteBuilder() */ protected RouteBuilder[] createRouteBuilders() throws Exception { return new RouteBuilder[] {createRouteBuilder()}; } /** * Resolves a mandatory endpoint for the given URI or an exception is thrown * * @param uri the Camel URI to use to create or resolve an endpoint * @return the endpoint */ protected Endpoint resolveMandatoryEndpoint(String uri) { return resolveMandatoryEndpoint(context, uri); } /** * Resolves a mandatory endpoint for the given URI and expected type or an exception is thrown * * @param uri the Camel URI to use to create or resolve an endpoint * @return the endpoint */ protected T resolveMandatoryEndpoint(String uri, Class endpointType) { return resolveMandatoryEndpoint(context, uri, endpointType); } /** * Resolves the mandatory Mock endpoint using a URI of the form mock:someName * * @param uri the URI which typically starts with "mock:" and has some name * @return the mandatory mock endpoint or an exception is thrown if it could not be resolved */ protected MockEndpoint getMockEndpoint(String uri) { return getMockEndpoint(uri, true); } /** * Resolves the {@link MockEndpoint} using a URI of the form mock:someName, optionally * creating it if it does not exist. * * @param uri the URI which typically starts with "mock:" and has some name * @param create whether or not to allow the endpoint to be created if it doesn't exist * @return the mock endpoint or an {@link NoSuchEndpointException} is thrown if it could not be resolved * @throws NoSuchEndpointException is the mock endpoint does not exists */ protected MockEndpoint getMockEndpoint(String uri, boolean create) throws NoSuchEndpointException { if (create) { return resolveMandatoryEndpoint(uri, MockEndpoint.class); } else { Endpoint endpoint = context.hasEndpoint(uri); if (endpoint instanceof MockEndpoint) { return (MockEndpoint) endpoint; } throw new NoSuchEndpointException(String.format("MockEndpoint %s does not exist.", uri)); } } /** * Sends a message to the given endpoint URI with the body value * * @param endpointUri the URI of the endpoint to send to * @param body the body for the message */ protected void sendBody(String endpointUri, final Object body) { template.send(endpointUri, new Processor() { public void process(Exchange exchange) { Message in = exchange.getIn(); in.setBody(body); } }); } /** * Sends a message to the given endpoint URI with the body value and specified headers * * @param endpointUri the URI of the endpoint to send to * @param body the body for the message * @param headers any headers to set on the message */ protected void sendBody(String endpointUri, final Object body, final Map headers) { template.send(endpointUri, new Processor() { public void process(Exchange exchange) { Message in = exchange.getIn(); in.setBody(body); for (Map.Entry entry : headers.entrySet()) { in.setHeader(entry.getKey(), entry.getValue()); } } }); } /** * Sends messages to the given endpoint for each of the specified bodies * * @param endpointUri the endpoint URI to send to * @param bodies the bodies to send, one per message */ protected void sendBodies(String endpointUri, Object... bodies) { for (Object body : bodies) { sendBody(endpointUri, body); } } /** * Creates an exchange with the given body */ protected Exchange createExchangeWithBody(Object body) { return createExchangeWithBody(context, body); } /** * Asserts that the given language name and expression evaluates to the * given value on a specific exchange */ protected void assertExpression(Exchange exchange, String languageName, String expressionText, Object expectedValue) { Language language = assertResolveLanguage(languageName); Expression expression = language.createExpression(expressionText); assertNotNull("No Expression could be created for text: " + expressionText + " language: " + language, expression); assertExpression(expression, exchange, expectedValue); } /** * Asserts that the given language name and predicate expression evaluates * to the expected value on the message exchange */ protected void assertPredicate(String languageName, String expressionText, Exchange exchange, boolean expected) { Language language = assertResolveLanguage(languageName); Predicate predicate = language.createPredicate(expressionText); assertNotNull("No Predicate could be created for text: " + expressionText + " language: " + language, predicate); assertPredicate(predicate, exchange, expected); } /** * Asserts that the language name can be resolved */ protected Language assertResolveLanguage(String languageName) { Language language = context.resolveLanguage(languageName); assertNotNull("No language found for name: " + languageName, language); return language; } /** * Asserts that all the expectations of the Mock endpoints are valid */ protected void assertMockEndpointsSatisfied() throws InterruptedException { MockEndpoint.assertIsSatisfied(context); } /** * Asserts that all the expectations of the Mock endpoints are valid */ protected void assertMockEndpointsSatisfied(long timeout, TimeUnit unit) throws InterruptedException { MockEndpoint.assertIsSatisfied(context, timeout, unit); } /** * Reset all Mock endpoints. */ protected void resetMocks() { MockEndpoint.resetMocks(context); } protected void assertValidContext(CamelContext context) { assertNotNull("No context found!", context); } protected T getMandatoryEndpoint(String uri, Class type) { T endpoint = context.getEndpoint(uri, type); assertNotNull("No endpoint found for uri: " + uri, endpoint); return endpoint; } protected Endpoint getMandatoryEndpoint(String uri) { Endpoint endpoint = context.getEndpoint(uri); assertNotNull("No endpoint found for uri: " + uri, endpoint); return endpoint; } /** * Disables the JMX agent. Must be called before the {@link #setUp()} method. */ protected void disableJMX() { System.setProperty(JmxSystemPropertyKeys.DISABLED, "true"); } /** * Enables the JMX agent. Must be called before the {@link #setUp()} method. */ protected void enableJMX() { System.setProperty(JmxSystemPropertyKeys.DISABLED, "false"); } /** * Single step debugs and Camel invokes this method before entering the given processor */ protected void debugBefore(Exchange exchange, Processor processor, ProcessorDefinition definition, String id, String label) { } /** * Single step debugs and Camel invokes this method after processing the given processor */ protected void debugAfter(Exchange exchange, Processor processor, ProcessorDefinition definition, String id, String label, long timeTaken) { } /** * To easily debug by overriding the debugBefore and debugAfter methods. */ private class DebugBreakpoint extends BreakpointSupport { @Override public void beforeProcess(Exchange exchange, Processor processor, ProcessorDefinition definition) { CamelTestSupport.this.debugBefore(exchange, processor, definition, definition.getId(), definition.getLabel()); } @Override public void afterProcess(Exchange exchange, Processor processor, ProcessorDefinition definition, long timeTaken) { CamelTestSupport.this.debugAfter(exchange, processor, definition, definition.getId(), definition.getLabel(), timeTaken); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy