Add encryption for passwords
[clamp.git] / src / test / java / org / onap / clamp / clds / it / CryptoUtilsItCase.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License"); 
9  * you may not use this file except in compliance with the License. 
10  * You may obtain a copy of the License at
11  * 
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software 
15  * distributed under the License is distributed on an "AS IS" BASIS, 
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
17  * See the License for the specific language governing permissions and 
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 package org.onap.clamp.clds.it;
25
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.assertNotNull;
28
29 import java.security.GeneralSecurityException;
30
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 import org.onap.clamp.clds.util.CryptoUtils;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.boot.test.context.SpringBootTest;
36 import org.springframework.test.context.TestPropertySource;
37 import org.springframework.test.context.junit4.SpringRunner;
38
39 /**
40  * Test Crypto Utils with Spring.
41  */
42 @RunWith(SpringRunner.class)
43 @SpringBootTest
44 @TestPropertySource(locations = "classpath:application-no-camunda.properties")
45 public class CryptoUtilsItCase {
46     @Autowired
47     private CryptoUtils cryptoUtils;
48
49     /**
50      * This method tests encryption.
51      * 
52      * @throws GeneralSecurityException
53      */
54     @Test
55     public final void testEncryption() throws GeneralSecurityException {
56         final String testData = "This is a test string";
57         final String encodedStringExpected = "A5CB112C9F608A220B35AFED08024D98B9653333AF4C9527C2E934DE473F6145";
58         String encodedString = cryptoUtils.encrypt(testData);
59         assertNotNull(encodedString);
60         assertEquals(encodedStringExpected, encodedString);
61     }
62
63     /**
64      * This method tests decryption.
65      * 
66      * @throws GeneralSecurityException
67      */
68     @Test
69     public final void testDecryption() throws GeneralSecurityException {
70         final String decodedStringExpected = "This is a test string";
71         final String encodedString = "A5CB112C9F608A220B35AFED08024D98B9653333AF4C9527C2E934DE473F6145";
72         String decryptedString = cryptoUtils.decrypt(encodedString);
73         assertNotNull(decryptedString);
74         assertEquals(decodedStringExpected, decryptedString);
75     }
76 }