summaryrefslogtreecommitdiffstats
path: root/appc-inbound/appc-design-services
diff options
context:
space:
mode:
authorLori Keighron <lk2924@att.com>2018-03-26 11:15:33 -0400
committerRanda Maher <rx196w@att.com>2018-03-26 17:17:37 +0000
commit7cad6d9fd269d5e570ad7a17b1bbfbcab42dd591 (patch)
tree1fc7025fc558b98544cb5ce3964f5505182d322b /appc-inbound/appc-design-services
parentc05a691d52b5078b98f845938575fcc2dd899603 (diff)
Add junit coverage to EncryptionTool class
Introduce junit coverage in design-services class Issue-ID: APPC-794 Change-Id: Idbf8d02511b478173950a97c10a642486bc0d45f Signed-off-by: Lori Keighron <lk2924@att.com>
Diffstat (limited to 'appc-inbound/appc-design-services')
-rw-r--r--appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/services/util/EncryptionToolTest.java37
1 files changed, 37 insertions, 0 deletions
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
index 000000000..e4af8cef8
--- /dev/null
+++ b/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/services/util/EncryptionToolTest.java
@@ -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));
+ }
+}