/** * 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.processor; import org.apache.camel.ContextTestSupport; import org.apache.camel.FailedToCreateRouteException; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.spi.ThreadPoolProfile; import static org.apache.camel.ThreadPoolRejectedPolicy.Abort; public class ThreadsInvalidConfigTest extends ContextTestSupport { ThreadPoolProfile threadPoolProfile = new ThreadPoolProfile("poll"); public void testCreateRouteIfNoInvalidOptions() throws Exception { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().executorServiceRef(threadPoolProfile.getId()) .to("mock:test"); } }); } public void testFailIfThreadNameAndExecutorServiceRef() throws Exception { try { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().executorServiceRef(threadPoolProfile.getId()).threadName("foo") .to("mock:test"); } }); } catch (FailedToCreateRouteException e) { assertTrue(e.getCause() instanceof IllegalArgumentException); assertTrue(e.getCause().getMessage().startsWith("ThreadName")); return; } fail(); } public void testPassIfThreadNameWithoutExecutorServiceRef() throws Exception { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().threadName("foo") .to("mock:test"); } }); } public void testFailIfPoolSizeAndExecutorServiceRef() throws Exception { try { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().executorServiceRef(threadPoolProfile.getId()).poolSize(1) .to("mock:test"); } }); } catch (FailedToCreateRouteException e) { assertTrue(e.getCause() instanceof IllegalArgumentException); assertTrue(e.getCause().getMessage().startsWith("PoolSize")); return; } fail(); } public void testFailIfMaxPoolSizeAndExecutorServiceRef() throws Exception { try { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().executorServiceRef(threadPoolProfile.getId()).maxPoolSize(1) .to("mock:test"); } }); } catch (FailedToCreateRouteException e) { assertTrue(e.getCause() instanceof IllegalArgumentException); assertTrue(e.getCause().getMessage().startsWith("MaxPoolSize")); return; } fail(); } public void testFailIfKeepAliveTimeAndExecutorServiceRef() throws Exception { try { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().executorServiceRef(threadPoolProfile.getId()).keepAliveTime(1) .to("mock:test"); } }); } catch (FailedToCreateRouteException e) { assertTrue(e.getCause() instanceof IllegalArgumentException); assertTrue(e.getCause().getMessage().startsWith("KeepAliveTime")); return; } fail(); } public void testFailIfMaxQueueSizeAndExecutorServiceRef() throws Exception { try { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().executorServiceRef(threadPoolProfile.getId()).maxQueueSize(1) .to("mock:test"); } }); } catch (FailedToCreateRouteException e) { assertTrue(e.getCause() instanceof IllegalArgumentException); assertTrue(e.getCause().getMessage().startsWith("MaxQueueSize")); return; } fail(); } public void testFailIfRejectedPolicyAndExecutorServiceRef() throws Exception { try { context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { context.getExecutorServiceManager().registerThreadPoolProfile(threadPoolProfile); from("direct:start") .threads().executorServiceRef(threadPoolProfile.getId()).rejectedPolicy(Abort) .to("mock:test"); } }); } catch (FailedToCreateRouteException e) { assertTrue(e.getCause() instanceof IllegalArgumentException); assertTrue(e.getCause().getMessage().startsWith("RejectedPolicy")); return; } fail(); } }