Author: lhein
Date: Wed Oct 13 11:58:26 2010
New Revision: 1022074
URL: http://svn.apache.org/viewvc?rev=1022074&view=rev
Log:
added test case for the rejected execution counting/resetting (see SM-2001 and
SMX4-606)
Added:
servicemix/utils/trunk/src/test/java/org/apache/servicemix/executors/
servicemix/utils/trunk/src/test/java/org/apache/servicemix/executors/RejectedExecutionTest.java
Modified:
servicemix/utils/trunk/src/main/java/org/apache/servicemix/executors/impl/ExecutorImpl.java
Modified:
servicemix/utils/trunk/src/main/java/org/apache/servicemix/executors/impl/ExecutorImpl.java
URL:
http://svn.apache.org/viewvc/servicemix/utils/trunk/src/main/java/org/apache/servicemix/executors/impl/ExecutorImpl.java?rev=1022074&r1=1022073&r2=1022074&view=diff
==============================================================================
---
servicemix/utils/trunk/src/main/java/org/apache/servicemix/executors/impl/ExecutorImpl.java
(original)
+++
servicemix/utils/trunk/src/main/java/org/apache/servicemix/executors/impl/ExecutorImpl.java
Wed Oct 13 11:58:26 2010
@@ -80,7 +80,7 @@ public class ExecutorImpl implements Exe
return queue.size();
}
- ThreadPoolExecutor getThreadPoolExecutor() {
+ public ThreadPoolExecutor getThreadPoolExecutor() {
return this.threadPool;
}
}
Added:
servicemix/utils/trunk/src/test/java/org/apache/servicemix/executors/RejectedExecutionTest.java
URL:
http://svn.apache.org/viewvc/servicemix/utils/trunk/src/test/java/org/apache/servicemix/executors/RejectedExecutionTest.java?rev=1022074&view=auto
==============================================================================
---
servicemix/utils/trunk/src/test/java/org/apache/servicemix/executors/RejectedExecutionTest.java
(added)
+++
servicemix/utils/trunk/src/test/java/org/apache/servicemix/executors/RejectedExecutionTest.java
Wed Oct 13 11:58:26 2010
@@ -0,0 +1,106 @@
+/*
+ * 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.servicemix.executors;
+
+import java.util.concurrent.RejectedExecutionException;
+import java.util.concurrent.ThreadPoolExecutor.AbortPolicy;
+
+import junit.framework.TestCase;
+import org.apache.servicemix.executors.impl.ExecutorConfig;
+import org.apache.servicemix.executors.impl.ExecutorFactoryImpl;
+import org.apache.servicemix.executors.impl.ExecutorImpl;
+import org.apache.servicemix.executors.impl.ManagedExecutor;
+
+public class RejectedExecutionTest extends TestCase {
+
+ private ExecutorFactoryImpl factory;
+ private ExecutorImpl executor;
+ private ExecutorConfig config;
+ private ManagedExecutor managedExecutor;
+
+ @Override
+ protected void tearDown() throws Exception {
+
managedExecutor.getInternalExecutor().getThreadPoolExecutor().shutdown();
+ }
+
+ @Override
+ protected void setUp() throws Exception {
+ config = new ExecutorConfig();
+ config.setCorePoolSize(1);
+ config.setMaximumPoolSize(1);
+ config.setQueueSize(2);
+
+ factory = new ExecutorFactoryImpl();
+ factory.setDefaultConfig(config);
+ executor = (ExecutorImpl) factory.createExecutor("myExecutor");
+ executor.getThreadPoolExecutor().setRejectedExecutionHandler(new
AbortPolicy());
+ managedExecutor = new ManagedExecutor("myExecutor", executor, config);
+ }
+
+ public void testExecutionRejectionIncrement() {
+ int counter = 0;
+ for (int i = 0; i < 10; i++) {
+ final int x = i;
+ try {
+ managedExecutor.execute(new Runnable() {
+ public void run() {
+ try {
+ Thread.sleep(30000);
+ } catch (InterruptedException ex) {
+ // ignore
+ }
+ }
+ });
+ } catch (RejectedExecutionException ex) {
+ counter++;
+ }
+ }
+
+
managedExecutor.getInternalExecutor().getThreadPoolExecutor().shutdownNow();
+
+ assertEquals("The number of rejected execution exceptions does not
fit.", counter, managedExecutor.getNumberOfRejectedExecutions());
+ }
+
+ public void testExecutionRejectionReset() {
+ int counter = 0;
+ for (int i = 0; i < 10; i++) {
+ final int x = i;
+ try {
+ managedExecutor.execute(new Runnable() {
+ public void run() {
+ try {
+ Thread.sleep(30000);
+ } catch (InterruptedException ex) {
+ // ignore
+ }
+ }
+ });
+ } catch (RejectedExecutionException ex) {
+ counter++;
+ }
+ }
+
+
managedExecutor.getInternalExecutor().getThreadPoolExecutor().shutdownNow();
+
+ assertEquals("The number of rejected execution exceptions does not
fit.", counter, managedExecutor.getNumberOfRejectedExecutions());
+
+ managedExecutor.reset();
+
+ assertEquals("The number of rejected execution exceptions after reset
does not fit zero.", 0, managedExecutor.getNumberOfRejectedExecutions());
+ }
+}