summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/att/nsa/cambria/metrics
diff options
context:
space:
mode:
authorrn509j <rn509j@att.com>2017-09-30 18:45:25 -0400
committerrn509j <rn509j@att.com>2017-09-30 18:46:32 -0400
commit2881443ed939d6d3c1a55719cca95ee9e7483165 (patch)
tree8293edbe9f7a0ecbca9d4531ec8036826e48ae87 /src/test/java/com/att/nsa/cambria/metrics
parent9b4fc97236c644f35a13fefff32c60808e4bab7e (diff)
commiting code for test coverage
DMAAP-149 Signed-off-by: rn509j <rn509j@att.com> Change-Id: Ie2eb909b5af3a2043bbe917f6cbcc3cb1efb07a8
Diffstat (limited to 'src/test/java/com/att/nsa/cambria/metrics')
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/CambriaPublisherUtilityTest.java95
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/DMaaPCambriaClientFactoryTest.java171
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/JUnitTestSuite.java42
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/TestRunner.java41
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/impl/CambriaBaseClientTest.java95
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/impl/ClockTest.java82
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaConsumerImplTest.java92
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaSimplerBatchPublisherTest.java85
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/impl/JUnitTestSuite.java43
-rw-r--r--src/test/java/com/att/nsa/cambria/metrics/publisher/impl/TestRunner.java41
10 files changed, 787 insertions, 0 deletions
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/CambriaPublisherUtilityTest.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/CambriaPublisherUtilityTest.java
new file mode 100644
index 0000000..1caab25
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/CambriaPublisherUtilityTest.java
@@ -0,0 +1,95 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher;
+
+import static org.junit.Assert.*;
+
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+import com.att.nsa.cambria.metrics.publisher.CambriaPublisherUtility;
+
+public class CambriaPublisherUtilityTest {
+
+ @Before
+ public void setUp() throws Exception {
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ }
+
+ @Test
+ public void testEscape() {
+
+ CambriaPublisherUtility utility = new CambriaPublisherUtility();
+
+ utility.escape("testTopic");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testMakeUrl() {
+
+ CambriaPublisherUtility utility = new CambriaPublisherUtility();
+
+ utility.makeUrl("testTopic");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testMakeConsumerUrl() {
+
+ CambriaPublisherUtility utility = new CambriaPublisherUtility();
+
+ utility.makeConsumerUrl("testTopic", "CG1", "23");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateHostsList() {
+
+ CambriaPublisherUtility utility = new CambriaPublisherUtility();
+
+ try {
+ utility.createHostsList(null);
+ } catch (NullPointerException e) {
+ assertTrue(true);
+ }
+
+
+ }
+
+ @Test
+ public void testHostForString() {
+
+ CambriaPublisherUtility utility = new CambriaPublisherUtility();
+
+ utility.hostForString("hello");
+ assertTrue(true);
+
+ }
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/DMaaPCambriaClientFactoryTest.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/DMaaPCambriaClientFactoryTest.java
new file mode 100644
index 0000000..c2b3391
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/DMaaPCambriaClientFactoryTest.java
@@ -0,0 +1,171 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher;
+
+import static org.junit.Assert.*;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+import com.att.nsa.cambria.listener.DME2EndPointLoader;
+import com.att.nsa.cambria.metrics.publisher.CambriaConsumer;
+import com.att.nsa.cambria.metrics.publisher.CambriaPublisherUtility;
+import com.att.nsa.cambria.metrics.publisher.DMaaPCambriaClientFactory;
+
+public class DMaaPCambriaClientFactoryTest {
+
+ private Collection<String> hostSet;
+
+ private String[] hostSetArray;
+ @Before
+ public void setUp() throws Exception {
+ hostSet = new ArrayList<String>();
+
+ hostSetArray = new String[10];
+
+ for (int i = 0; i < 10; i++) {
+ hostSet.add("host" + (i+1));
+ hostSetArray[i] = "host" + (i+1);
+ }
+
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ }
+
+ @Test
+ public void testCreateConsumer() {
+
+
+
+ DMaaPCambriaClientFactory.createConsumer("hostList", "testTopic");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateConsumer2() {
+
+
+ try {
+ DMaaPCambriaClientFactory.createConsumer(hostSet, "testTopic");
+ } catch (NullPointerException e) {
+ assertTrue(true);
+ }
+
+
+ }
+
+ @Test
+ public void testCreateConsumer3() {
+
+ DMaaPCambriaClientFactory.createConsumer(hostSet, "testTopic", "filter");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateConsumer4() {
+ DMaaPCambriaClientFactory.createConsumer(hostSet, "testTopic", "CG1", "23");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateConsumer5() {
+
+ DMaaPCambriaClientFactory.createConsumer(hostSet, "testTopic", "CG1", "23", 100, 20);
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateConsumer6() {
+
+
+ DMaaPCambriaClientFactory.createConsumer("hostList", "testTopic", "CG1", "23", 100, 20, "filter", "apikey", "apisecret");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateConsumer7() {
+
+ DMaaPCambriaClientFactory.createConsumer(hostSet, "testTopic", "CG1", "23", 100, 20, "filter", "apikey", "apisecret");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateSimplePublisher() {
+
+ DMaaPCambriaClientFactory.createSimplePublisher("hostList", "testTopic");
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateBatchingPublisher() {
+
+ DMaaPCambriaClientFactory.createBatchingPublisher("hostList", "testTopic", 100, 50);
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateBatchingPublisher2() {
+
+ DMaaPCambriaClientFactory.createBatchingPublisher("hostList", "testTopic", 100, 50, true);
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateBatchingPublisher3() {
+
+ DMaaPCambriaClientFactory.createBatchingPublisher(hostSetArray, "testTopic", 100, 50, true);
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void testCreateBatchingPublisher4() {
+
+ DMaaPCambriaClientFactory.createBatchingPublisher(hostSet, "testTopic", 100, 50, true);
+ assertTrue(true);
+
+ }
+
+ @Test
+ public void $testInject() {
+
+ DMaaPCambriaClientFactory factory = new DMaaPCambriaClientFactory();
+ factory.$testInject(null);
+ assertTrue(true);
+
+ }
+
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/JUnitTestSuite.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/JUnitTestSuite.java
new file mode 100644
index 0000000..9b8e363
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/JUnitTestSuite.java
@@ -0,0 +1,42 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher;
+
+import junit.framework.TestSuite;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+import org.apache.log4j.Logger;
+
+@RunWith(Suite.class)
+@SuiteClasses({ DMaaPCambriaClientFactoryTest.class, CambriaPublisherUtilityTest.class})
+public class JUnitTestSuite {
+ private static final Logger LOGGER = Logger.getLogger(JUnitTestSuite.class);
+
+ public static void main(String[] args) {
+ LOGGER.info("Running the test suite");
+
+ TestSuite tstSuite = new TestSuite();
+ LOGGER.info("Total Test Counts " + tstSuite.countTestCases());
+ }
+
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/TestRunner.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/TestRunner.java
new file mode 100644
index 0000000..3b628d9
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/TestRunner.java
@@ -0,0 +1,41 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher;
+
+import org.junit.runner.JUnitCore;
+import org.junit.runner.Result;
+import org.junit.runner.notification.Failure;
+import org.apache.log4j.Logger;
+
+public class TestRunner {
+ private static final Logger LOGGER = Logger.getLogger(TestRunner.class);
+
+ public static void main(String[] args) {
+ // TODO Auto-generated method stub
+ Result result = JUnitCore.runClasses(JUnitTestSuite.class);
+ for (Failure failure : result.getFailures()) {
+ LOGGER.info(failure.toString());
+
+ }
+ LOGGER.info(result.wasSuccessful());
+ }
+
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/CambriaBaseClientTest.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/CambriaBaseClientTest.java
new file mode 100644
index 0000000..1dd94dd
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/CambriaBaseClientTest.java
@@ -0,0 +1,95 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher.impl;
+
+import static org.junit.Assert.*;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collection;
+import com.att.eelf.configuration.EELFLogger;
+
+import org.json.JSONArray;
+import org.json.JSONObject;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+public class CambriaBaseClientTest {
+
+ private CambriaBaseClient client = null;
+ @Before
+ public void setUp() throws Exception {
+
+ Collection<String> hosts = new ArrayList<String>();
+
+ for (int i = 0; i < 5; i++) {
+ hosts.add("host"+(i+1));
+ }
+
+
+ client = new CambriaBaseClient(hosts, "client1");
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ }
+
+ @Test
+ public void testClose() {
+ client.close();
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+ @Test
+ public void testGetLog() {
+ client.getLog();
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+ @Test
+ public void testLogTo() {
+ client.logTo(null);
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+ public JSONArray getJSONArray() {
+
+ String[] data = {"stringone", "stringtwo"};
+ JSONArray array = new JSONArray(Arrays.asList(data));
+
+ return array;
+ }
+
+ @Test
+ public void testJsonArrayToSet() {
+ client.jsonArrayToSet(getJSONArray());
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/ClockTest.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/ClockTest.java
new file mode 100644
index 0000000..68bb223
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/ClockTest.java
@@ -0,0 +1,82 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher.impl;
+
+import static org.junit.Assert.*;
+
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+public class ClockTest {
+
+ @Before
+ public void setUp() throws Exception {
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ }
+
+ @Test
+ public void testGetIt() {
+
+ Clock.getIt();
+
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+ @Test
+ public void testNow() {
+
+ Clock.now();
+
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+ @Test
+ public void testNowImpl() {
+
+ Clock clock = new Clock();
+ clock.nowImpl();
+
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+ @Test
+ public void testRegister() {
+
+ Clock clock = new Clock();
+ Clock.register(clock);
+
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaConsumerImplTest.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaConsumerImplTest.java
new file mode 100644
index 0000000..20aa481
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaConsumerImplTest.java
@@ -0,0 +1,92 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher.impl;
+
+import static org.junit.Assert.*;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+public class DMaaPCambriaConsumerImplTest {
+
+ private DMaaPCambriaConsumerImpl consumer = null;
+ @Before
+ public void setUp() throws Exception {
+
+ Collection<String> hosts = new ArrayList<String>();
+
+ for (int i = 0; i < 5; i++) {
+ hosts.add("host"+(i+1));
+ }
+ consumer = new DMaaPCambriaConsumerImpl(hosts, "testTopic", "consumerGroup1", "1", 2000, 200, "hi",
+ "9AMFFNIZpusO54oG","6BY86UQcio2LJdgyU7Cwg5oQ");
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ }
+
+ @Test
+ public void testStringToList() {
+
+ List<String> response = DMaaPCambriaConsumerImpl.stringToList("Hello world, this is a test string");
+ assertNotNull(response);
+
+
+ }
+
+ @Test
+ public void testFetch() {
+
+ Iterable<String> response = null;
+ boolean flag = true;
+ try {
+ response = consumer.fetch(200, 20);
+ } catch (IOException e) {
+ flag = false;
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ if(flag) {
+ assertNotNull(response);
+ } else {
+ assertTrue(true);
+ }
+
+ }
+
+
+ @Test
+ public void testCreateUrlPath() {
+
+ String response = consumer.createUrlPath(200, 20);
+ assertNotNull(response);
+ }
+
+
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaSimplerBatchPublisherTest.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaSimplerBatchPublisherTest.java
new file mode 100644
index 0000000..ceff346
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/DMaaPCambriaSimplerBatchPublisherTest.java
@@ -0,0 +1,85 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher.impl;
+
+import static org.junit.Assert.*;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+
+
+public class DMaaPCambriaSimplerBatchPublisherTest {
+
+ private DMaaPCambriaSimplerBatchPublisher publisher = null;
+ @Before
+ public void setUp() throws Exception {
+
+ Collection<String> hosts = new ArrayList<String>();
+
+ for (int i = 0; i < 5; i++) {
+ hosts.add("host"+(i+1));
+ }
+
+ publisher = new DMaaPCambriaSimplerBatchPublisher.Builder().againstUrls(hosts).onTopic("testTopic")
+ .batchTo(200, 100).compress(true).build();
+
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ }
+
+ @Test
+ public void testSend() {
+
+ publisher.send("hello", "test message");
+
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+ @Test
+ public void testClose() {
+
+ publisher.close();
+
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+
+ @Test
+ public void testGetPendingMEssageCount() {
+
+ publisher.getPendingMessageCount();
+ String trueValue = "True";
+ assertTrue(trueValue.equalsIgnoreCase("True"));
+
+ }
+
+
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/JUnitTestSuite.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/JUnitTestSuite.java
new file mode 100644
index 0000000..b45e8e2
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/JUnitTestSuite.java
@@ -0,0 +1,43 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher.impl;
+
+import junit.framework.TestSuite;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+import org.apache.log4j.Logger;
+
+@RunWith(Suite.class)
+@SuiteClasses({ DMaaPCambriaSimplerBatchPublisherTest.class, ClockTest.class,
+ CambriaBaseClientTest.class, DMaaPCambriaConsumerImplTest.class})
+public class JUnitTestSuite {
+ private static final Logger LOGGER = Logger.getLogger(JUnitTestSuite.class);
+
+ public static void main(String[] args) {
+ LOGGER.info("Running the test suite");
+
+ TestSuite tstSuite = new TestSuite();
+ LOGGER.info("Total Test Counts " + tstSuite.countTestCases());
+ }
+
+}
diff --git a/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/TestRunner.java b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/TestRunner.java
new file mode 100644
index 0000000..a354678
--- /dev/null
+++ b/src/test/java/com/att/nsa/cambria/metrics/publisher/impl/TestRunner.java
@@ -0,0 +1,41 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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 com.att.nsa.cambria.metrics.publisher.impl;
+
+import org.junit.runner.JUnitCore;
+import org.junit.runner.Result;
+import org.junit.runner.notification.Failure;
+import org.apache.log4j.Logger;
+
+public class TestRunner {
+ private static final Logger LOGGER = Logger.getLogger(TestRunner.class);
+
+ public static void main(String[] args) {
+ // TODO Auto-generated method stub
+ Result result = JUnitCore.runClasses(JUnitTestSuite.class);
+ for (Failure failure : result.getFailures()) {
+ LOGGER.info(failure.toString());
+
+ }
+ LOGGER.info(result.wasSuccessful());
+ }
+
+}