Coverage for org.onap.appc.licmgr.exception class 65/35665/2
authoramshegokar <AS00500801@techmahindra.com>
Wed, 14 Mar 2018 06:28:16 +0000 (11:58 +0530)
committerTakamune Cho <tc012c@att.com>
Thu, 15 Mar 2018 14:55:05 +0000 (14:55 +0000)
Coverage for org.onap.appc.licmgr.exception class
Sonar Link:
https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-license-manager-api%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Flicmgr%2Fexception

Change-Id: Iefe4243fa12b2abb799db807ade2895c3d282a70
Issue-ID: APPC-729
Signed-off-by: amshegokar <AS00500801@techmahindra.com>
appc-dispatcher/appc-license-manager/appc-license-manager-api/pom.xml
appc-dispatcher/appc-license-manager/appc-license-manager-api/src/test/java/org/onap/appc/licmgr/exception/DataAccessExceptionTest.java [new file with mode: 0644]

index ac7c344..b922a17 100644 (file)
             <groupId>org.onap.ccsdk.sli.core</groupId>
             <artifactId>dblib-provider</artifactId>
         </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.12</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>
diff --git a/appc-dispatcher/appc-license-manager/appc-license-manager-api/src/test/java/org/onap/appc/licmgr/exception/DataAccessExceptionTest.java b/appc-dispatcher/appc-license-manager/appc-license-manager-api/src/test/java/org/onap/appc/licmgr/exception/DataAccessExceptionTest.java
new file mode 100644 (file)
index 0000000..4715ca0
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.licmgr.exception;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class DataAccessExceptionTest {
+
+    @Test
+    public void testConstructorNoArgument() throws Exception {
+        DataAccessException dataAccessException = new DataAccessException();
+        Assert.assertTrue(dataAccessException.getCause() == null);
+        Assert.assertTrue(dataAccessException.getLocalizedMessage() == null);
+        Assert.assertTrue(dataAccessException.getMessage() == null);
+    }
+
+    @Test
+    public void testConstructorWithMessaqge() throws Exception {
+        String message = "testing message";
+        DataAccessException dataAccessException = new DataAccessException(message);
+        Assert.assertTrue(dataAccessException.getCause() == null);
+        Assert.assertEquals(message, dataAccessException.getLocalizedMessage());
+        Assert.assertEquals(message, dataAccessException.getMessage());
+    }
+
+    @Test
+    public void testConstructorWithThrowable() throws Exception {
+        String message = "testing message";
+        Throwable throwable = new Throwable(message);
+        DataAccessException unknownProviderException = new DataAccessException(throwable);
+        Assert.assertEquals(throwable, unknownProviderException.getCause());
+        Assert.assertTrue(unknownProviderException.getLocalizedMessage().contains(message));
+        Assert.assertTrue(unknownProviderException.getMessage().contains(message));
+    }
+
+    @Test
+    public void testConstructorWithMessageAndThrowable() throws Exception {
+        String message = "testing message";
+        String tMessage = "throwable message";
+        Throwable throwable = new Throwable(tMessage);
+        DataAccessException dataAccessException = new DataAccessException(message, throwable);
+        Assert.assertEquals(throwable, dataAccessException.getCause());
+        Assert.assertTrue(dataAccessException.getLocalizedMessage().contains(message));
+        Assert.assertTrue(dataAccessException.getMessage().contains(message));
+    }
+
+}
\ No newline at end of file