Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / dao / aaf / test / JU_NsType.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 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  ******************************************************************************/
22
23 package org.onap.aaf.auth.dao.aaf.test;
24
25 import static org.junit.Assert.assertEquals;
26
27 import org.junit.AfterClass;
28 import org.junit.Test;
29 import org.onap.aaf.auth.dao.cass.NsType;
30
31 public class JU_NsType {
32
33     @AfterClass
34     public static void tearDownAfterClass() throws Exception {
35     }
36
37     @Test
38     public void test() {
39         NsType nt,nt2;
40         String[] tests = new String[] {"DOT","ROOT","COMPANY","APP","STACKED_APP","STACK"};
41         for (String s : tests) {
42             nt = NsType.valueOf(s);
43             assertEquals(s,nt.name());
44
45             nt2 = NsType.fromString(s);
46             assertEquals(nt,nt2);
47
48             int t = nt.type;
49             nt2 = NsType.fromType(t);
50             assertEquals(nt,nt2);
51         }
52
53         nt  = NsType.fromType(Integer.MIN_VALUE);
54         assertEquals(nt,NsType.UNKNOWN);
55         nt = NsType.fromString("Garbage");
56         assertEquals(nt,NsType.UNKNOWN);
57     }
58
59 }