Add junit coverage to EncryptionTool class 97/38597/2
authorLori Keighron <lk2924@att.com>
Mon, 26 Mar 2018 15:15:33 +0000 (11:15 -0400)
committerRanda Maher <rx196w@att.com>
Mon, 26 Mar 2018 17:17:37 +0000 (17:17 +0000)
Introduce junit coverage in design-services class

Issue-ID: APPC-794
Change-Id: Idbf8d02511b478173950a97c10a642486bc0d45f
Signed-off-by: Lori Keighron <lk2924@att.com>
appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/services/util/EncryptionToolTest.java [new file with mode: 0644]

diff --git a/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/services/util/EncryptionToolTest.java b/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/services/util/EncryptionToolTest.java
new file mode 100644 (file)
index 0000000..e4af8ce
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * ============LICENSE_START=============================================================================================================
+ * Copyright (c) 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.appc.design.services.util;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+
+public class EncryptionToolTest {
+
+    @Test
+    public void testAll() {
+        String plainText = "AnyString123";
+        String encrypted = EncryptionTool.getInstance().encrypt(plainText);
+        assertNotEquals(plainText, encrypted);
+        String dec = EncryptionTool.getInstance().decrypt(encrypted);
+        assertNotEquals(encrypted, dec);
+        assertEquals(plainText, dec);
+        System.out.println(String.format("%s = [%s]", plainText, encrypted));
+    }
+}