Unit tests for appc-ssh-adapter-api classes 11/36711/2
authorshubhada <SV00449682@techmahindra.com>
Mon, 19 Mar 2018 12:52:39 +0000 (18:22 +0530)
committerTakamune Cho <tc012c@att.com>
Mon, 19 Mar 2018 14:16:42 +0000 (14:16 +0000)
Unit Tests for:
1. SshDataAccessException.java
2. SshException.java

Sonar-Link:
https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-ssh-adapter-api%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Fadapter%2Fssh

Change-Id: I7c927a5319143e5df051d008f8f5dbb546699b99
Issue-ID: APPC-759
Signed-off-by: shubhada <SV00449682@techmahindra.com>
appc-adapters/appc-ssh-adapter/appc-ssh-adapter-api/src/test/java/org/onap/appc/adapter/ssh/TestSshDataAccessException.java [new file with mode: 0644]
appc-adapters/appc-ssh-adapter/appc-ssh-adapter-api/src/test/java/org/onap/appc/adapter/ssh/TestSshException.java [new file with mode: 0644]

diff --git a/appc-adapters/appc-ssh-adapter/appc-ssh-adapter-api/src/test/java/org/onap/appc/adapter/ssh/TestSshDataAccessException.java b/appc-adapters/appc-ssh-adapter/appc-ssh-adapter-api/src/test/java/org/onap/appc/adapter/ssh/TestSshDataAccessException.java
new file mode 100644 (file)
index 0000000..feecccb
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+* ============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.adapter.ssh;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class TestSshDataAccessException {
+
+    @Test
+    public void testConstructorNoArgument() throws Exception {
+        SshDataAccessException sshDataAccessException = new SshDataAccessException();
+        Assert.assertTrue(sshDataAccessException.getCause() == null);
+        Assert.assertTrue(sshDataAccessException.getLocalizedMessage() == null);
+        Assert.assertTrue(sshDataAccessException.getMessage() == null);
+    }
+
+    @Test
+    public void testConstructorWithMessaqge() throws Exception {
+        String message = "testing message";
+        SshDataAccessException sshDataAccessException = new  SshDataAccessException(message);
+        Assert.assertTrue(sshDataAccessException.getCause() == null);
+        Assert.assertEquals(message, sshDataAccessException.getLocalizedMessage());
+        Assert.assertEquals(message, sshDataAccessException.getMessage());
+    }
+
+    @Test
+    public void testConstructorWithThrowable() throws Exception {
+        String message = "testing message";
+        Throwable throwable = new Throwable(message);
+        SshDataAccessException sshDataAccessException = new  SshDataAccessException(throwable);
+        Assert.assertEquals(throwable, sshDataAccessException.getCause());
+        Assert.assertTrue(sshDataAccessException.getLocalizedMessage().contains(message));
+        Assert.assertTrue(sshDataAccessException.getMessage().contains(message));
+    }
+
+    @Test
+    public void testConstructorWithMessageAndThrowable() throws Exception {
+        String message = "testing message";
+        String tMessage = "throwable message";
+        Throwable throwable = new Throwable(tMessage);
+        SshDataAccessException sshDataAccessException =new  SshDataAccessException(message, throwable);
+        Assert.assertEquals(throwable, sshDataAccessException.getCause());
+        Assert.assertTrue(sshDataAccessException.getLocalizedMessage().contains(message));
+        Assert.assertTrue(sshDataAccessException.getMessage().contains(message));
+    }
+}
diff --git a/appc-adapters/appc-ssh-adapter/appc-ssh-adapter-api/src/test/java/org/onap/appc/adapter/ssh/TestSshException.java b/appc-adapters/appc-ssh-adapter/appc-ssh-adapter-api/src/test/java/org/onap/appc/adapter/ssh/TestSshException.java
new file mode 100644 (file)
index 0000000..1596740
--- /dev/null
@@ -0,0 +1,46 @@
+/*
+* ============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.adapter.ssh;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class TestSshException {
+
+    @Test
+    public void testConstructorWithMessaqge() throws Exception {
+        String message = "testing message";
+        SshException sshException = new SshException(message);
+        Assert.assertTrue(sshException.getCause() == null);
+        Assert.assertEquals(message, sshException.getLocalizedMessage());
+        Assert.assertEquals(message, sshException.getMessage());
+    }
+
+    @Test
+    public void testConstructorWithMessageAndThrowable() throws Exception {
+        String message = "testing message";
+        String tMessage = "throwable message";
+        Throwable throwable = new Throwable(tMessage);
+        SshException sshException = new SshException(message, throwable);
+        Assert.assertEquals(throwable, sshException.getCause());
+        Assert.assertTrue(sshException.getLocalizedMessage().contains(message));
+        Assert.assertTrue(sshException.getMessage().contains(message));
+    }
+}