Merge "Improve coverage of cadi-client"
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / mgmt / JU_Log.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.Log;
43 import org.onap.aaf.auth.cmd.mgmt.Mgmt;
44 import org.onap.aaf.auth.env.AuthzEnv;
45 import org.onap.aaf.cadi.CadiException;
46 import org.onap.aaf.cadi.Locator;
47 import org.onap.aaf.cadi.LocatorException;
48 import org.onap.aaf.cadi.PropAccess;
49 import org.onap.aaf.cadi.SecuritySetter;
50 import org.onap.aaf.cadi.Locator.Item;
51 import org.onap.aaf.cadi.http.HMangr;
52 import org.onap.aaf.cadi.http.HRcli;
53 import org.onap.aaf.misc.env.APIException;
54
55 @RunWith(MockitoJUnitRunner.class)
56 public class JU_Log {
57         
58         private static Log log;
59         private static Log log1;
60         PropAccess prop;
61         AuthzEnv aEnv;
62         Writer wtr;
63         Locator<URI> loc;
64         HMangr hman;    
65         AAFcli aafcli;
66         
67         @Before
68         public void setUp() throws APIException, LocatorException {
69                 prop = new PropAccess();
70                 aEnv = new AuthzEnv();
71                 wtr = mock(Writer.class);
72                 loc = mock(Locator.class);
73                 SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
74                 hman = new HMangr(aEnv, loc);   
75                 aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
76                 Mgmt mgmt = new Mgmt(aafcli);
77                 log = mock(Log.class);
78                 log1 = new Log(mgmt);
79         }
80         
81         @Test
82         public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
83 //              Item value = mock(Item.class);
84 //              Locator.Item item = new Locator.Item() {
85 //              };
86 //              when(loc.best()).thenReturn(value);
87 //              URI uri = new URI("http://java.sun.com/j2se/1.3/");
88 //              when(loc.get(value)).thenReturn(uri);
89 //              SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
90 //              HRcli hcli = new HRcli(hman, uri, item, secSet);
91                 String[] strArr = {"add","upd","del","add","upd","del"};
92                 log._exec(0, strArr);
93                 
94 //              String[] strArr1 = {"del","add","upd","del"};
95 //              log1._exec(0, strArr1);
96 //              
97 //              String[] strArr2 = {"add","upd","del","add","upd","del"};
98 //              log1._exec(0, strArr2);
99         }
100 }