b37d03ae16c06cff42ccf6c29559f8fd141b8055
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / util / test / JU_NetMask.java
1 /*******************************************************************************
2  * * org.onap.aaf
3  * * ===========================================================================
4  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
5  * * ===========================================================================
6  * * Licensed under the Apache License, Version 2.0 (the "License");
7  * * you may not use this file except in compliance with the License.
8  * * You may obtain a copy of the License at
9  * * 
10  *  *      http://www.apache.org/licenses/LICENSE-2.0
11  * * 
12  *  * Unless required by applicable law or agreed to in writing, software
13  * * distributed under the License is distributed on an "AS IS" BASIS,
14  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * * See the License for the specific language governing permissions and
16  * * limitations under the License.
17  * * ============LICENSE_END====================================================
18  * *
19  * *
20  ******************************************************************************/
21
22 package org.onap.aaf.cadi.util.test;
23
24 import static org.junit.Assert.assertEquals;
25
26 import org.junit.Test;
27 import org.onap.aaf.cadi.util.NetMask;
28
29 public class JU_NetMask {
30
31     @Test
32     public void deriveTest() {
33         String test = "test";
34         assertEquals(NetMask.derive(test.getBytes()), 0);
35     }
36
37     @Test
38     public void deriveTest2() {
39         String test = "1.2.3.4";
40         assertEquals(NetMask.derive(test.getBytes()), 0);
41     }
42     
43     @Test
44     public void deriveTest3() {
45         String test = "1.2.4";
46         assertEquals(NetMask.derive(test.getBytes()), 0);
47     }
48     
49     @Test
50     public void deriveTest4() {
51         String test = "1.3.4";
52         assertEquals(NetMask.derive(test.getBytes()), 0);
53     }
54     
55     @Test
56     public void deriveTest5() {
57         String test = "2.3.4";
58         assertEquals(NetMask.derive(test.getBytes()), 0);
59     }
60     
61     @Test
62     public void deriveTest6() {
63         String test = "3.4";
64         assertEquals(NetMask.derive(test.getBytes()), 0);
65     }
66 }