AT&T 2.0.19 Code drop, stage 2
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / test / util / JU_UserChainManip.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.test.util;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 import org.junit.Test;
29 import org.onap.aaf.cadi.UserChain;
30 import org.onap.aaf.cadi.util.UserChainManip;
31
32 public class JU_UserChainManip {
33
34         @Test
35         public void build(){
36                 UserChain.Protocol baseAuth=UserChain.Protocol.BasicAuth;
37                 assertEquals(UserChainManip.build(new StringBuilder(""), "app", "id", baseAuth, true).toString(), "app:id:BasicAuth:AS");
38         }
39         
40
41         @Test
42         public void idToNS(){
43                 assertEquals(UserChainManip.idToNS(null), "");
44         }
45         
46         @Test
47         public void idToNS1(){
48                 assertEquals(UserChainManip.idToNS("t@st"), "st");
49         }
50
51         @Test
52         public void test() {
53                 assertEquals("",UserChainManip.idToNS(null));
54                 assertEquals("",UserChainManip.idToNS(""));
55                 assertEquals("",UserChainManip.idToNS("something"));
56                 assertEquals("",UserChainManip.idToNS("something@@"));
57                 assertEquals("",UserChainManip.idToNS("something@@."));
58                 assertEquals("com",UserChainManip.idToNS("something@com"));
59                 assertEquals("com.random",UserChainManip.idToNS("something@random.com"));
60                 assertEquals("com.random",UserChainManip.idToNS("@random.com"));
61                 assertEquals("com.random",UserChainManip.idToNS("something@random.com."));
62                 assertEquals("com.random",UserChainManip.idToNS("something@..random...com..."));
63                 assertEquals("com.random.this",UserChainManip.idToNS("something@this.random.com"));
64         }
65
66 }