summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnel Pajarillo <ap1541@att.com>2018-04-02 08:59:46 -0400
committerTakamune Cho <tc012c@att.com>2018-04-03 18:09:18 +0000
commitcf7bf0c05c22f433fb0f7732164f9d6aee855606 (patch)
treef00e78e70efb355e0f2d5d983bdd423b2e950ea8
parent3f49608f5c05b093c05a1e7f80b3ebfd2dd18f9a (diff)
Add junit for more APPC client-lib classes
Test coverage for CoreRegisty, TaskQueue, TaskQueueManager classes in client-lib. Change-Id: Id601c4736b51ea256de392fb8fcd91c3a49a55cc Issue-ID: APPC-819 Signed-off-by: Arnel Pajarillo <ap1541@att.com>
-rw-r--r--appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/CoreRegistryTest.java77
-rw-r--r--appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueManagerTest.java75
-rw-r--r--appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueTest.java76
3 files changed, 228 insertions, 0 deletions
diff --git a/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/CoreRegistryTest.java b/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/CoreRegistryTest.java
new file mode 100644
index 000000000..730f88f11
--- /dev/null
+++ b/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/CoreRegistryTest.java
@@ -0,0 +1,77 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright 2018 AT&T
+ * =================================================================================
+ * Licensed 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.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.client.impl.core;
+
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.appc.client.impl.core.CoreRegistry.EmptyRegistryCallback;
+
+public class CoreRegistryTest {
+
+ private boolean erCalledBack;
+ private CoreRegistry<String> registry;
+
+ @Before
+ public void beforeTest() throws Exception {
+ erCalledBack = false;
+ registry = new CoreRegistry<>(
+ new EmptyRegistryCallback() {
+
+ @Override
+ public void emptyCallback() {
+ erCalledBack = true;
+ }
+ });
+ }
+
+ @Test
+ public void testRegister() {
+ registry.register("1", "a");
+ assertEquals("a", registry.get("1"));
+ registry.register("1", "b");
+ assertEquals("b", registry.get("1"));
+ }
+
+ @Test
+ public void testUnregister() {
+ registry.register("3", "c");
+ registry.unregister("3");
+ assertFalse(registry.isExist("3"));
+ }
+
+ @Test
+ public void testEmptyCallbackNotCalledOnNewRegistry() {
+ assertFalse(erCalledBack);
+ }
+
+ @Test
+ public void testEmptyCallbackAndIsEmpty() {
+ registry.register("3", "c");
+ registry.unregister("3");
+ assertTrue(registry.isEmpty());
+ assertTrue(erCalledBack);
+ }
+}
diff --git a/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueManagerTest.java b/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueManagerTest.java
new file mode 100644
index 000000000..72dac6896
--- /dev/null
+++ b/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueManagerTest.java
@@ -0,0 +1,75 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright 2018 AT&T
+ * =================================================================================
+ * Licensed 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.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.client.impl.core;
+
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import java.util.Properties;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.TimeUnit;
+
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+public class TaskQueueManagerTest {
+
+ private TaskQueueManager qm;
+ private CountDownLatch latch;
+ private static Properties props = new Properties();
+
+ @BeforeClass
+ public static void setUpBeforeClass() throws Exception {
+ props.setProperty("client.pool.size", "3");
+ }
+
+ @Before
+ public void setUp() throws Exception {
+ qm = new TaskQueueManager(props);
+ }
+
+ @Test
+ public void testSubmit() throws InterruptedException {
+ int count = 10;
+ latch = new CountDownLatch(count);
+ for (int i = 0; i < count; i++) {
+ qm.submit(i + "", new RunTask());
+ }
+ assertTrue(latch.await(3, TimeUnit.SECONDS));
+ }
+
+ @Test
+ public void testStopQueueManager() throws InterruptedException {
+ latch = new CountDownLatch(1);
+ qm.stopQueueManager();
+ qm.submit("1", new RunTask());
+ assertFalse(latch.await(1, TimeUnit.SECONDS));
+ }
+
+ private class RunTask implements Runnable {
+ @Override
+ public void run() {
+ latch.countDown();
+ }
+ }
+}
diff --git a/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueTest.java b/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueTest.java
new file mode 100644
index 000000000..6400776bc
--- /dev/null
+++ b/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/TaskQueueTest.java
@@ -0,0 +1,76 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright 2018 AT&T
+ * =================================================================================
+ * Licensed 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.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.client.impl.core;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+import java.util.concurrent.TimeUnit;
+
+import org.junit.Before;
+import org.junit.Test;
+
+public class TaskQueueTest {
+
+ private ExecutorService executor = Executors.newFixedThreadPool(1);
+ private TaskQueue queue;
+ private CountDownLatch latch;
+
+ @Before
+ public void setUp() throws Exception {
+ executor.execute(queue = new TaskQueue());
+ }
+
+ @Test
+ public void testAddTask() throws InterruptedException {
+ latch = new CountDownLatch(1);
+ queue.addTask(new RunTask());
+ assertTrue(latch.await(3, TimeUnit.SECONDS));
+ }
+
+ @Test
+ public void testAddManyTasks() throws InterruptedException {
+ int count = 5;
+ latch = new CountDownLatch(count);
+ for (int i = 0; i < count; i++) {
+ queue.addTask(new RunTask());
+ }
+ assertTrue(latch.await(3, TimeUnit.SECONDS));
+ }
+
+ @Test
+ public void testStopQueue() throws InterruptedException {
+ latch = new CountDownLatch(1);
+ queue.stopQueue();
+ queue.addTask(new RunTask());
+ assertFalse(latch.await(1, TimeUnit.SECONDS));
+ }
+
+ private class RunTask implements Runnable {
+ @Override
+ public void run() {
+ latch.countDown();
+ }
+ }
+}