Adding test cases to aai-core to increase coverage
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / audit / ListEndpointsTest.java
diff --git a/aai-core/src/test/java/org/onap/aai/audit/ListEndpointsTest.java b/aai-core/src/test/java/org/onap/aai/audit/ListEndpointsTest.java
new file mode 100644 (file)
index 0000000..eafffe6
--- /dev/null
@@ -0,0 +1,106 @@
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017-2018 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 org.onap.aai.audit;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.onap.aai.AAISetup;
+import org.onap.aai.concurrent.AaiCallable;
+import org.onap.aai.setup.SchemaServiceVersions;
+import org.onap.aai.setup.SchemaVersion;
+import org.onap.aai.setup.SchemaVersions;
+import org.onap.aai.setup.SchemaVersionsBean;
+import org.slf4j.MDC;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.AnnotationConfigApplicationContext;
+import org.springframework.context.annotation.PropertySource;
+import org.springframework.stereotype.Component;
+import org.springframework.test.context.TestPropertySource;
+
+import javax.validation.constraints.AssertTrue;
+import java.io.File;
+import java.io.FileReader;
+import java.util.List;
+import java.util.Map;
+import java.util.Properties;
+
+import static org.junit.Assert.assertTrue;
+
+public class ListEndpointsTest extends AAISetup {
+
+    private Properties properties;
+    private SchemaVersion version;
+    private ListEndpoints listEndpoints;
+
+    @Before
+    public void setUp() throws Exception {
+        properties = new Properties();
+        version = schemaVersions.getDefaultVersion();
+        listEndpoints = new ListEndpoints(basePath, schemaVersions.getDefaultVersion());
+    }
+
+    @Test
+    public void testGetEndpoints() {
+        Assert.assertTrue(listEndpoints != null);
+        List<String> list = listEndpoints.getEndpoints();
+        Assert.assertTrue(list != null && !list.isEmpty());
+
+        for (String endpoint : list) {
+            System.out.println("endpoints: " + endpoint);
+        }
+    }
+
+    @Test
+    public void testGetEndpointsWithParam() {
+        Assert.assertTrue(listEndpoints != null);
+        List<String> list = listEndpoints.getEndpoints();
+        Assert.assertTrue(list != null && !list.isEmpty());
+    }
+
+    @Test(expected = RuntimeException.class)
+    public void testGetEndpoints_throwException() {
+        ListEndpoints listEndpointsFail = new ListEndpoints(basePath, null);
+    }
+
+    @Test
+    public void testGetLogicalNames() {
+        Assert.assertTrue(listEndpoints != null);
+        Map<String, String> map = listEndpoints.getLogicalNames();
+        Assert.assertTrue(map != null && !map.isEmpty());
+    }
+
+    @Test
+    public void testToString() {
+        Assert.assertTrue(listEndpoints != null);
+        String endpoints = listEndpoints.toString();
+    }
+
+    @Test
+    public void testToStrinWithParam() {
+        Assert.assertTrue(listEndpoints != null);
+        String endpoints = listEndpoints.toString("complex");
+        Assert.assertTrue(!endpoints.contains("complex"));
+    }
+}