Search in sources :

Example 1 with SpringCamelContext

use of org.apache.camel.spring.SpringCamelContext in project camel by apache.

the class RouteAutoStartupPropertiesTest method testAutoStartupFalse.

public void testAutoStartupFalse() throws Exception {
    ac = new ClassPathXmlApplicationContext("org/apache/camel/spring/config/RouteAutoStartupFalseTest.xml");
    SpringCamelContext camel = ac.getBeansOfType(SpringCamelContext.class).values().iterator().next();
    assertEquals(false, camel.getRouteStatus("foo").isStarted());
    // now starting route manually
    camel.startRoute("foo");
    assertEquals(true, camel.getRouteStatus("foo").isStarted());
    // and now we can send a message to the route and see that it works
    MockEndpoint mock = camel.getEndpoint("mock:result", MockEndpoint.class);
    mock.expectedMessageCount(1);
    ProducerTemplate template = camel.createProducerTemplate();
    template.start();
    template.sendBody("direct:start", "Hello World");
    template.stop();
    mock.assertIsSatisfied();
}
Also used : ProducerTemplate(org.apache.camel.ProducerTemplate) ClassPathXmlApplicationContext(org.springframework.context.support.ClassPathXmlApplicationContext) MockEndpoint(org.apache.camel.component.mock.MockEndpoint) SpringCamelContext(org.apache.camel.spring.SpringCamelContext)

Example 2 with SpringCamelContext

use of org.apache.camel.spring.SpringCamelContext in project camel by apache.

the class CamelAnnotationsHandler method handleShutdownTimeout.

/**
     * Handles updating shutdown timeouts on Camel contexts based on {@link ShutdownTimeout}.
     *
     * @param context the initialized Spring context
     * @param testClass the test class being executed
     */
public static void handleShutdownTimeout(ConfigurableApplicationContext context, Class<?> testClass) throws Exception {
    final int shutdownTimeout;
    final TimeUnit shutdownTimeUnit;
    if (testClass.isAnnotationPresent(ShutdownTimeout.class)) {
        shutdownTimeout = testClass.getAnnotation(ShutdownTimeout.class).value();
        shutdownTimeUnit = testClass.getAnnotation(ShutdownTimeout.class).timeUnit();
    } else {
        shutdownTimeout = 10;
        shutdownTimeUnit = TimeUnit.SECONDS;
    }
    CamelSpringTestHelper.doToSpringCamelContexts(context, new CamelSpringTestHelper.DoToSpringCamelContextsStrategy() {

        public void execute(String contextName, SpringCamelContext camelContext) throws Exception {
            LOGGER.info("Setting shutdown timeout to [{} {}] on CamelContext with name [{}].", new Object[] { shutdownTimeout, shutdownTimeUnit, contextName });
            camelContext.getShutdownStrategy().setTimeout(shutdownTimeout);
            camelContext.getShutdownStrategy().setTimeUnit(shutdownTimeUnit);
        }
    });
}
Also used : SpringCamelContext(org.apache.camel.spring.SpringCamelContext) TimeUnit(java.util.concurrent.TimeUnit) Breakpoint(org.apache.camel.spi.Breakpoint)

Example 3 with SpringCamelContext

use of org.apache.camel.spring.SpringCamelContext in project camel by apache.

the class CamelAnnotationsHandler method handleUseOverridePropertiesWithPropertiesComponent.

/**
     * Handles override this method to include and override properties with the Camel {@link org.apache.camel.component.properties.PropertiesComponent}.
     *
     * @param context the initialized Spring context
     * @param testClass the test class being executed
     */
public static void handleUseOverridePropertiesWithPropertiesComponent(ConfigurableApplicationContext context, Class<?> testClass) throws Exception {
    Collection<Method> methods = getAllMethods(testClass);
    final List<Properties> properties = new LinkedList<Properties>();
    for (Method method : methods) {
        if (AnnotationUtils.findAnnotation(method, UseOverridePropertiesWithPropertiesComponent.class) != null) {
            Class<?>[] argTypes = method.getParameterTypes();
            if (argTypes.length > 0) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but is not a no-argument method.");
            } else if (!Properties.class.isAssignableFrom(method.getReturnType())) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but does not return a java.util.Properties.");
            } else if (!Modifier.isStatic(method.getModifiers())) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but is not static.");
            } else if (!Modifier.isPublic(method.getModifiers())) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but is not public.");
            }
            try {
                properties.add((Properties) method.invoke(null));
            } catch (Exception e) {
                throw new RuntimeException("Method [" + method.getName() + "] threw exception during evaluation.", e);
            }
        }
    }
    if (properties.size() != 0) {
        CamelSpringTestHelper.doToSpringCamelContexts(context, new CamelSpringTestHelper.DoToSpringCamelContextsStrategy() {

            public void execute(String contextName, SpringCamelContext camelContext) throws Exception {
                PropertiesComponent pc = camelContext.getComponent("properties", PropertiesComponent.class);
                Properties extra = new Properties();
                for (Properties prop : properties) {
                    extra.putAll(prop);
                }
                if (!extra.isEmpty()) {
                    LOGGER.info("Using {} properties to override any existing properties on the PropertiesComponent on CamelContext with name [{}].", extra.size(), contextName);
                    pc.setOverrideProperties(extra);
                }
            }
        });
    }
}
Also used : SpringCamelContext(org.apache.camel.spring.SpringCamelContext) Method(java.lang.reflect.Method) Properties(java.util.Properties) LinkedList(java.util.LinkedList) PropertiesComponent(org.apache.camel.component.properties.PropertiesComponent)

Example 4 with SpringCamelContext

use of org.apache.camel.spring.SpringCamelContext in project camel by apache.

the class CamelSpringTestContextLoader method handleUseOverridePropertiesWithPropertiesComponent.

/**
     * Handles override this method to include and override properties with the Camel {@link org.apache.camel.component.properties.PropertiesComponent}.
     *
     * @param context the initialized Spring context
     * @param testClass the test class being executed
     */
protected void handleUseOverridePropertiesWithPropertiesComponent(ConfigurableApplicationContext context, Class<?> testClass) throws Exception {
    Collection<Method> methods = getAllMethods(testClass);
    final List<Properties> properties = new LinkedList<Properties>();
    for (Method method : methods) {
        if (AnnotationUtils.findAnnotation(method, UseOverridePropertiesWithPropertiesComponent.class) != null) {
            Class<?>[] argTypes = method.getParameterTypes();
            if (argTypes.length > 0) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but is not a no-argument method.");
            } else if (!Properties.class.isAssignableFrom(method.getReturnType())) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but does not return a java.util.Properties.");
            } else if (!Modifier.isStatic(method.getModifiers())) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but is not static.");
            } else if (!Modifier.isPublic(method.getModifiers())) {
                throw new IllegalArgumentException("Method [" + method.getName() + "] is annotated with UseOverridePropertiesWithPropertiesComponent but is not public.");
            }
            try {
                properties.add((Properties) method.invoke(null));
            } catch (Exception e) {
                throw new RuntimeException("Method [" + method.getName() + "] threw exception during evaluation.", e);
            }
        }
    }
    if (properties.size() != 0) {
        CamelSpringTestHelper.doToSpringCamelContexts(context, new DoToSpringCamelContextsStrategy() {

            public void execute(String contextName, SpringCamelContext camelContext) throws Exception {
                PropertiesComponent pc = camelContext.getComponent("properties", PropertiesComponent.class);
                Properties extra = new Properties();
                for (Properties prop : properties) {
                    extra.putAll(prop);
                }
                if (!extra.isEmpty()) {
                    LOG.info("Using {} properties to override any existing properties on the PropertiesComponent on CamelContext with name [{}].", extra.size(), contextName);
                    pc.setOverrideProperties(extra);
                }
            }
        });
    }
}
Also used : SpringCamelContext(org.apache.camel.spring.SpringCamelContext) Method(java.lang.reflect.Method) Properties(java.util.Properties) LinkedList(java.util.LinkedList) DoToSpringCamelContextsStrategy(org.apache.camel.test.spring.CamelSpringTestHelper.DoToSpringCamelContextsStrategy) PropertiesComponent(org.apache.camel.component.properties.PropertiesComponent)

Example 5 with SpringCamelContext

use of org.apache.camel.spring.SpringCamelContext in project camel by apache.

the class CamelSpringTestContextLoader method handleMockEndpointsAndSkip.

/**
     * Handles auto-intercepting of endpoints with mocks based on {@link MockEndpointsAndSkip} and skipping the
     * original endpoint.
     *
     * @param context the initialized Spring context
     * @param testClass the test class being executed
     */
protected void handleMockEndpointsAndSkip(GenericApplicationContext context, Class<?> testClass) throws Exception {
    if (testClass.isAnnotationPresent(MockEndpointsAndSkip.class)) {
        final String mockEndpoints = testClass.getAnnotation(MockEndpointsAndSkip.class).value();
        CamelSpringTestHelper.doToSpringCamelContexts(context, new DoToSpringCamelContextsStrategy() {

            @Override
            public void execute(String contextName, SpringCamelContext camelContext) throws Exception {
                // resovle the property place holders of the mockEndpoints 
                String mockEndpointsValue = camelContext.resolvePropertyPlaceholders(mockEndpoints);
                LOG.info("Enabling auto mocking and skipping of endpoints matching pattern [{}] on CamelContext with name [{}].", mockEndpointsValue, contextName);
                camelContext.addRegisterEndpointCallback(new InterceptSendToMockEndpointStrategy(mockEndpointsValue, true));
            }
        });
    }
}
Also used : SpringCamelContext(org.apache.camel.spring.SpringCamelContext) DoToSpringCamelContextsStrategy(org.apache.camel.test.spring.CamelSpringTestHelper.DoToSpringCamelContextsStrategy) InterceptSendToMockEndpointStrategy(org.apache.camel.impl.InterceptSendToMockEndpointStrategy)

Aggregations

SpringCamelContext (org.apache.camel.spring.SpringCamelContext)49 CamelContext (org.apache.camel.CamelContext)21 Test (org.junit.Test)21 RouteBuilder (org.apache.camel.builder.RouteBuilder)17 SpringBootTest (org.springframework.boot.test.context.SpringBootTest)16 ConnectorAction (io.syndesis.common.model.action.ConnectorAction)15 ProducerTemplate (org.apache.camel.ProducerTemplate)15 MockEndpoint (org.apache.camel.component.mock.MockEndpoint)14 ClassPathXmlApplicationContext (org.springframework.context.support.ClassPathXmlApplicationContext)12 RouteDefinition (org.apache.camel.model.RouteDefinition)7 StepAction (io.syndesis.common.model.action.StepAction)6 Step (io.syndesis.common.model.integration.Step)6 DoToSpringCamelContextsStrategy (org.apache.camel.test.spring.CamelSpringTestHelper.DoToSpringCamelContextsStrategy)5 Method (java.lang.reflect.Method)4 LinkedList (java.util.LinkedList)4 PropertiesComponent (org.apache.camel.component.properties.PropertiesComponent)4 ProcessorDefinition (org.apache.camel.model.ProcessorDefinition)4 Breakpoint (org.apache.camel.spi.Breakpoint)4 Exchange (org.apache.camel.Exchange)3 ConnectorDescriptor (io.syndesis.common.model.action.ConnectorDescriptor)2