From 7cad6d9fd269d5e570ad7a17b1bbfbcab42dd591 Mon Sep 17 00:00:00 2001 From: Lori Keighron Date: Mon, 26 Mar 2018 11:15:33 -0400 Subject: 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 --- .../design/services/util/EncryptionToolTest.java | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/services/util/EncryptionToolTest.java (limited to 'appc-inbound/appc-design-services') 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)); + } +} -- cgit 1.2.3-korg