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