Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / mgmt / JU_Clear.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 package org.onap.aaf.auth.cmd.test.mgmt;
23
24 import static org.mockito.Mockito.mock;
25 import static org.mockito.Mockito.when;
26
27 import java.io.Writer;
28 import java.net.HttpURLConnection;
29 import java.net.URI;
30 import java.net.URISyntaxException;
31
32 import static org.junit.Assert.assertEquals;
33
34 import org.junit.Assert;
35 import org.junit.Before;
36 import org.junit.BeforeClass;
37 import org.junit.Test;
38 import org.junit.runner.RunWith;
39 import org.mockito.runners.MockitoJUnitRunner;
40 import org.onap.aaf.auth.cmd.AAFcli;
41 import org.onap.aaf.auth.cmd.mgmt.Cache;
42 import org.onap.aaf.auth.cmd.mgmt.Clear;
43 import org.onap.aaf.auth.cmd.mgmt.Mgmt;
44 import org.onap.aaf.auth.cmd.perm.Create;
45 import org.onap.aaf.auth.cmd.perm.Perm;
46 import org.onap.aaf.auth.cmd.role.Role;
47 import org.onap.aaf.auth.common.Define;
48 import org.onap.aaf.auth.env.AuthzEnv;
49 import org.onap.aaf.cadi.CadiException;
50 import org.onap.aaf.cadi.Locator;
51 import org.onap.aaf.cadi.LocatorException;
52 import org.onap.aaf.cadi.PropAccess;
53 import org.onap.aaf.cadi.SecuritySetter;
54 import org.onap.aaf.cadi.Locator.Item;
55 import org.onap.aaf.cadi.http.HMangr;
56 import org.onap.aaf.cadi.http.HRcli;
57 import org.onap.aaf.misc.env.APIException;
58
59 @RunWith(MockitoJUnitRunner.class)
60 public class JU_Clear {
61     
62     private static Clear clr;
63     PropAccess prop;
64     AuthzEnv aEnv;
65     Writer wtr;
66     Locator<URI> loc;
67     HMangr hman;    
68     AAFcli aafcli;
69     Cache cache;
70     Mgmt mgmt;
71     
72     @Before
73     public void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
74         prop = new PropAccess();
75         aEnv = new AuthzEnv();
76         wtr = mock(Writer.class);
77         loc = mock(Locator.class);
78         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
79 //        hman = new HMangr(aEnv, loc);    
80 //        aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
81 //        mgmt = new Mgmt(aafcli);
82 //        cache = new Cache(mgmt);
83 //        clr = new Clear(cache);
84         
85     }
86     
87     @Test
88     public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
89         Item value = mock(Item.class);
90         when(loc.best()).thenReturn(value);
91         URI uri = new URI("http://www.oracle.com/technetwork/java/index.html");
92         when(loc.get(value)).thenReturn(uri);
93         when(loc.first()).thenReturn(value);
94         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
95 //        HRcli hcli = new HRcli(hman, uri, value, secSet);
96 //        String[] strArr = {"grant","ungrant","setTo","grant","ungrant","setTo"};
97         //clr._exec(0, strArr);                
98
99     }
100     
101     @Test
102     public void testDetailedHelp() throws CadiException {
103         Define define = new Define();
104         define.set(prop);
105         StringBuilder sb = new StringBuilder();
106 //        clr.detailedHelp(0, sb);
107     }
108 }