You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2017/11/09 16:58:57 UTC

[5/7] activemq-artemis git commit: ARTEMIS-1495 Sanity tests for the ProcessorBase::shutdownNow feature

ARTEMIS-1495 Sanity tests for the ProcessorBase::shutdownNow feature


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/3c5b57f1
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/3c5b57f1
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/3c5b57f1

Branch: refs/heads/master
Commit: 3c5b57f1e9ed2f3b71df9b38e9bcbd3be7e31d0a
Parents: 2e6176a
Author: Francesco Nigro <ni...@gmail.com>
Authored: Wed Nov 8 10:05:35 2017 +0100
Committer: Clebert Suconic <cl...@apache.org>
Committed: Thu Nov 9 11:58:36 2017 -0500

----------------------------------------------------------------------
 .../artemis/utils/actors/ProcessorBase.java     | 10 +++
 .../utils/actors/OrderedExecutorSanityTest.java | 81 ++++++++++++++++++++
 2 files changed, 91 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/3c5b57f1/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/actors/ProcessorBase.java
----------------------------------------------------------------------
diff --git a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/actors/ProcessorBase.java b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/actors/ProcessorBase.java
index 44b2916..8d19c22 100644
--- a/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/actors/ProcessorBase.java
+++ b/artemis-commons/src/main/java/org/apache/activemq/artemis/utils/actors/ProcessorBase.java
@@ -114,4 +114,14 @@ public abstract class ProcessorBase<T> {
       }
    }
 
+   /**
+    * Returns the remaining items to be processed.
+    * <p>
+    * This method is safe to be called by different threads and its accuracy is subject to concurrent modifications.<br>
+    * It is meant to be used only for test purposes, because of its {@code O(n)} cost.
+    */
+   public final int remaining() {
+      return tasks.size();
+   }
+
 }

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/3c5b57f1/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/actors/OrderedExecutorSanityTest.java
----------------------------------------------------------------------
diff --git a/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/actors/OrderedExecutorSanityTest.java b/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/actors/OrderedExecutorSanityTest.java
new file mode 100644
index 0000000..9446f50
--- /dev/null
+++ b/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/actors/OrderedExecutorSanityTest.java
@@ -0,0 +1,81 @@
+/**
+ * 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.activemq.artemis.utils.actors;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+import java.util.concurrent.TimeUnit;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class OrderedExecutorSanityTest {
+
+   @Test
+   public void shouldExecuteTasksInOrder() throws InterruptedException {
+      final int threads = 3;
+      final int tasks = 100;
+      final long timeoutMillis = TimeUnit.SECONDS.toMillis(10);
+      final ExecutorService executorService = Executors.newFixedThreadPool(threads);
+      try {
+         final ArtemisExecutor executor = new OrderedExecutor(executorService);
+         //it can be not thread safe too
+         final List<Integer> results = new ArrayList<>(tasks);
+         final List<Integer> expectedResults = new ArrayList<>(tasks);
+         final CountDownLatch executed = new CountDownLatch(tasks);
+         for (int i = 0; i < tasks; i++) {
+            final int value = i;
+            executor.execute(() -> {
+               results.add(value);
+               executed.countDown();
+            });
+            expectedResults.add(value);
+         }
+         Assert.assertTrue("The tasks must be executed in " + timeoutMillis + " ms", executed.await(timeoutMillis, TimeUnit.MILLISECONDS));
+         Assert.assertArrayEquals("The processing of tasks must be ordered", expectedResults.toArray(), results.toArray());
+      } finally {
+         executorService.shutdown();
+      }
+   }
+
+   @Test
+   public void shouldShutdownNowDoNotExecuteFurtherTasks() throws InterruptedException {
+      final long timeoutMillis = TimeUnit.SECONDS.toMillis(10);
+      final ExecutorService executorService = Executors.newSingleThreadExecutor();
+      try {
+         final OrderedExecutor executor = new OrderedExecutor(executorService);
+         final CountDownLatch executed = new CountDownLatch(1);
+         executor.execute(executed::countDown);
+         Assert.assertTrue("The task must be executed in " + timeoutMillis + " ms", executed.await(timeoutMillis, TimeUnit.MILLISECONDS));
+         executor.shutdownNow();
+         Assert.assertEquals("There are no remaining tasks to be executed", 0, executor.remaining());
+         //from now on new tasks won't be executed
+         final CountDownLatch afterDeatchExecution = new CountDownLatch(1);
+         executor.execute(afterDeatchExecution::countDown);
+         Assert.assertFalse("After shutdownNow no new tasks can be executed", afterDeatchExecution.await(1, TimeUnit.SECONDS));
+         //to avoid memory leaks the executor must take care of the new submitted tasks immediatly
+         Assert.assertEquals("Any new task submitted after death must be collected", 0, executor.remaining());
+      } finally {
+         executorService.shutdown();
+      }
+   }
+
+}