403f1f1e2a8ccbe3daffef697cd270d7f3ff61e0
[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 package org.onap.aaf.cadi.util.test;
22
23 import static org.junit.Assert.assertEquals;
24
25 import org.junit.Test;
26 import org.onap.aaf.cadi.util.NetMask;
27
28 public class JU_NetMask {
29
30         @Test
31         public void deriveTest() {
32                 String test = "test";
33                 assertEquals(NetMask.derive(test.getBytes()), 0);
34         }
35
36         @Test
37         public void deriveTest2() {
38                 String test = "1.2.3.4";
39                 assertEquals(NetMask.derive(test.getBytes()), 0);
40         }
41         
42         @Test
43         public void deriveTest3() {
44                 String test = "1.2.4";
45                 assertEquals(NetMask.derive(test.getBytes()), 0);
46         }
47         
48         @Test
49         public void deriveTest4() {
50                 String test = "1.3.4";
51                 assertEquals(NetMask.derive(test.getBytes()), 0);
52         }
53         
54         @Test
55         public void deriveTest5() {
56                 String test = "2.3.4";
57                 assertEquals(NetMask.derive(test.getBytes()), 0);
58         }
59         
60         @Test
61         public void deriveTest6() {
62                 String test = "3.4";
63                 assertEquals(NetMask.derive(test.getBytes()), 0);
64         }
65 }