Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / mgmt / JU_SessClear.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 org.junit.Assert;
25 import org.junit.Before;
26
27 import static org.mockito.Mockito.mock;
28 import static org.mockito.Mockito.when;
29
30 import java.io.Writer;
31 import java.net.HttpURLConnection;
32 import java.net.URI;
33 import java.net.URISyntaxException;
34
35 import static org.junit.Assert.assertEquals;
36
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.Mgmt;
43 import org.onap.aaf.auth.cmd.mgmt.SessClear;
44 import org.onap.aaf.auth.cmd.mgmt.Session;
45 import org.onap.aaf.auth.common.Define;
46 import org.onap.aaf.auth.env.AuthzEnv;
47 import org.onap.aaf.cadi.CadiException;
48 import org.onap.aaf.cadi.Locator;
49 import org.onap.aaf.cadi.LocatorException;
50 import org.onap.aaf.cadi.PropAccess;
51 import org.onap.aaf.cadi.SecuritySetter;
52 import org.onap.aaf.cadi.Locator.Item;
53 import org.onap.aaf.cadi.http.HMangr;
54 import org.onap.aaf.cadi.http.HRcli;
55 import org.onap.aaf.misc.env.APIException;
56
57 @RunWith(MockitoJUnitRunner.class)
58 public class JU_SessClear {
59     
60     private static SessClear sessclr;
61     PropAccess prop;
62     AuthzEnv aEnv;
63     Writer wtr;
64     Locator<URI> loc;
65     HMangr hman;    
66     AAFcli aafcli;
67     
68     @Before
69     public  void setUp() throws LocatorException, APIException, CadiException {
70         prop = new PropAccess();
71         aEnv = new AuthzEnv();
72         wtr = mock(Writer.class);
73         loc = mock(Locator.class);
74         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
75 //        hman = new HMangr(aEnv, loc);    
76 //        aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
77 //        Mgmt mgmt = new Mgmt(aafcli);
78 //        Session sess = new Session(mgmt);
79 //        sessclr = new SessClear(sess);
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 //        when(loc.first()).thenReturn(value);
93 //        String[] strArr = {"add","upd","del","add","upd","del"};
94         //sessclr._exec(0, strArr);
95
96     }
97     
98     @Test
99     public void testDetailedHelp() throws CadiException {
100         Define define = new Define();
101         define.set(prop);
102         StringBuilder sb = new StringBuilder();
103 //        sessclr.detailedHelp(0, sb);
104     }
105 }