Increase coverage of Passwords from 42% to 98%
[appc.git] / appc-sdc-listener / appc-sdc-listener-bundle / src / test / java / org / onap / tlv / sdc / security / PasswordsTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2019 Ericsson
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  *
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.tlv.sdc.security;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertNull;
27 import org.junit.Test;
28
29 public class PasswordsTest {
30
31     @Test
32     public void testHashPassword() {
33         Passwords.main(new String[] {"TEST_PASSWORD"});
34         assertEquals(2, Passwords.hashPassword("TEST_PASSWORD").split(":").length);
35     }
36
37     @Test
38     public void testHashPasswordNull() {
39         Passwords.main(new String[] {});
40         assertNull(Passwords.hashPassword(null));
41     }
42
43     @Test
44     public void testIsExpectedPassword() {
45         assertFalse(Passwords.isExpectedPassword("", "11:11"));
46     }
47
48     @Test
49     public void testIsExpectedPasswordNull() {
50         assertFalse(Passwords.isExpectedPassword(null, "1234", "1234"));
51     }
52
53 }