a26255749a72a93f4017a1229ba3966b75194e03
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / role / JU_User.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.cmd.test.role;
24
25 import org.junit.Assert;
26 import org.junit.Before;
27
28 import static org.junit.Assert.assertEquals;
29 import static org.junit.Assert.fail;
30 import static org.mockito.Mockito.mock;
31 import static org.mockito.Mockito.when;
32
33 import java.io.Writer;
34 import java.net.HttpURLConnection;
35 import java.net.URI;
36 import java.net.URISyntaxException;
37
38 import org.junit.BeforeClass;
39 import org.junit.Test;
40 import org.junit.runner.RunWith;
41 import org.mockito.runners.MockitoJUnitRunner;
42 import org.onap.aaf.auth.cmd.AAFcli;
43 import org.onap.aaf.auth.cmd.perm.Perm;
44 import org.onap.aaf.auth.cmd.role.Role;
45 import org.onap.aaf.auth.cmd.role.User;
46 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
47 import org.onap.aaf.auth.env.AuthzEnv;
48 import org.onap.aaf.cadi.CadiException;
49 import org.onap.aaf.cadi.Locator;
50 import org.onap.aaf.cadi.LocatorException;
51 import org.onap.aaf.cadi.PropAccess;
52 import org.onap.aaf.cadi.SecuritySetter;
53 import org.onap.aaf.cadi.Locator.Item;
54 import org.onap.aaf.cadi.http.HMangr;
55 import org.onap.aaf.cadi.http.HRcli;
56 import org.onap.aaf.misc.env.APIException;
57
58 @RunWith(MockitoJUnitRunner.class)
59 public class JU_User {
60     
61     private static User user;
62     PropAccess prop;
63     AuthzEnv aEnv;
64     Writer wtr;
65     Locator<URI> loc;
66     HMangr hman;    
67     AAFcli aafcli;
68     
69     @Before
70     public void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
71         prop = new PropAccess();
72         aEnv = new AuthzEnv();
73         wtr = mock(Writer.class);
74         loc = mock(Locator.class);
75         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
76         hman = new HMangr(aEnv, loc);    
77         aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
78         Role role = new Role(aafcli);
79         user = new User(role);
80     }
81     
82     @Test
83     public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
84         Item value = mock(Item.class);
85         Locator.Item item = new Locator.Item() {
86         };
87         when(loc.best()).thenReturn(value);
88         URI uri = new URI("http://www.oracle.com/technetwork/java/index.html");
89         when(loc.get(value)).thenReturn(uri);
90         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
91 //        HRcli hcli = new HRcli(hman, uri, item, secSet);
92 //        String[] strArr = {"add","del","setTo","extend","add","del","setTo","extend"};
93 //        user._exec(0, strArr);
94 //        
95 //        String[] strArr1 = {"del","setTo","extend","add","del","setTo","extend"};
96 //        user._exec(0, strArr1);
97 //        
98 //        String[] strArr2 = {"setTo","extend","add","del","setTo","extend"};
99 //        user._exec(0, strArr2);
100 //        
101 //        String[] strArr3 = {"extend","add","del","setTo","extend"};
102 //        user._exec(0, strArr3);
103         
104     }
105     
106     @Test
107     public void detailedHelp() {
108         boolean hasNoError = true;
109         try {
110             user.detailedHelp(1, new StringBuilder("test"));
111         } catch (Exception e) {
112             hasNoError = false;
113         }
114         assertEquals(hasNoError, true);
115     }
116 }