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