Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / util / test / 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.util.test;
22
23 import static org.junit.Assert.*;
24 import static org.hamcrest.CoreMatchers.*;
25 import org.junit.*;
26
27 import org.onap.aaf.cadi.UserChain;
28 import org.onap.aaf.cadi.util.UserChainManip;
29
30 public class JU_UserChainManip {
31
32     @Test
33     public void build(){
34         UserChain.Protocol baseAuth=UserChain.Protocol.BasicAuth;
35         StringBuilder sb = UserChainManip.build(new StringBuilder(""), "app", "id", baseAuth, true);
36         assertThat(sb.toString(), is("app:id:BasicAuth:AS"));
37
38         // for coverage
39         sb = UserChainManip.build(sb, "app", "id", baseAuth, true);
40         assertThat(sb.toString(), is("app:id:BasicAuth:AS,app:id:BasicAuth"));
41
42         sb = UserChainManip.build(new StringBuilder(""), "app", "id", baseAuth, false);
43         assertThat(sb.toString(), is("app:id:BasicAuth"));
44     }
45
46     @Test
47     public void idToNSTEST() {
48         assertThat(UserChainManip.idToNS(null), is(""));
49         assertThat(UserChainManip.idToNS(""), is(""));
50         assertThat(UserChainManip.idToNS("something"), is(""));
51         assertThat(UserChainManip.idToNS("something@@"), is(""));
52         assertThat(UserChainManip.idToNS("something@@."), is(""));
53         assertThat(UserChainManip.idToNS("something@com"), is("com"));
54         assertThat(UserChainManip.idToNS("something@random.com"), is("com.random"));
55         assertThat(UserChainManip.idToNS("@random.com"), is("com.random"));
56         assertThat(UserChainManip.idToNS("something@random.com."), is("com.random"));
57         assertThat(UserChainManip.idToNS("something@..random...com..."), is("com.random"));
58         assertThat(UserChainManip.idToNS("something@this.random.com"), is("com.random.this"));
59     }
60
61     @Test
62     public void coverageTest() {
63         @SuppressWarnings("unused")
64         UserChainManip ucm = new UserChainManip();
65     }
66
67 }