Migrate ccsdk/apps to ccsdk/cds
[ccsdk/cds.git] / ms / controllerblueprints / application / src / test / java / org / onap / ccsdk / apps / controllerblueprints / VersionSplitTest.java
1 /*\r
2  *  Copyright © 2017-2018 AT&T Intellectual Property.\r
3  *\r
4  *  Licensed under the Apache License, Version 2.0 (the "License");\r
5  *  you may not use this file except in compliance with the License.\r
6  *  You may obtain a copy of the License at\r
7  *\r
8  *      http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  *  Unless required by applicable law or agreed to in writing, software\r
11  *  distributed under the License is distributed on an "AS IS" BASIS,\r
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  *  See the License for the specific language governing permissions and\r
14  *  limitations under the License.\r
15  */\r
16 \r
17 package org.onap.ccsdk.cds.controllerblueprints;\r
18 \r
19 import com.att.eelf.configuration.EELFLogger;\r
20 import com.att.eelf.configuration.EELFManager;\r
21 import org.apache.commons.lang3.StringUtils;\r
22 import org.junit.Assert;\r
23 import org.junit.Test;\r
24 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;\r
25 \r
26 /**\r
27  * VersionSplitTest\r
28  *\r
29  * @author Brinda Santh\r
30  */\r
31 public class VersionSplitTest {\r
32     private static EELFLogger log = EELFManager.getInstance().getLogger(VersionSplitTest.class);\r
33 \r
34     @Test\r
35     public void testVersionSplit() {\r
36         String version = "1.03.04";\r
37         String[] tokens = StringUtils.split(version, '.');\r
38         Assert.assertNotNull("failed to tokenize", tokens);\r
39         Assert.assertEquals("failed to three token ", 3, tokens.length);\r
40     }\r
41 \r
42     @Test\r
43     public void encodeTest() {\r
44         String name = "ccsdkapps";\r
45         BCryptPasswordEncoder bCryptPasswordEncoder = new BCryptPasswordEncoder();\r
46         String encodedValue = bCryptPasswordEncoder.encode(name);\r
47         Assert.assertTrue("Failed to match", bCryptPasswordEncoder.matches(name, encodedValue));\r
48     }\r
49 }