Fix for radio buttons
[sdc.git] / security-utils / src / test / java / org / openecomp / sdc / security / PasswordTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.security;
22
23 import static org.junit.Assert.assertTrue;
24
25 import org.junit.Test;
26
27 public class PasswordTest {
28
29         @Test
30         public void hashtest() {
31                 String password = "123456";
32                 String hash = Passwords.hashPassword(password);
33                 assertTrue(Passwords.isExpectedPassword(password, hash));
34                 password = "1sdfgsgd23456";
35                 hash = Passwords.hashPassword(password);
36                 assertTrue(Passwords.isExpectedPassword(password, hash));
37                 password = "1sdfgsgd2345((*&%$%6";
38                 hash = Passwords.hashPassword(password);
39                 assertTrue(Passwords.isExpectedPassword(password, hash));
40                 password = "";
41                 hash = Passwords.hashPassword(password);
42                 assertTrue(Passwords.isExpectedPassword(password, hash));
43                 password = " ";
44                 hash = Passwords.hashPassword(password);
45                 assertTrue(Passwords.isExpectedPassword(password, hash));
46         }
47
48 }