63ebd7447ce9e22385b8a2e942412371ec72cd8b
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_ListByName.java
1
2 /*******************************************************************************
3  * ============LICENSE_START====================================================
4  * * org.onap.aaf
5  * * ===========================================================================
6  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7  * * ===========================================================================
8  * * Licensed under the Apache License, Version 2.0 (the "License");
9  * * you may not use this file except in compliance with the License.
10  * * You may obtain a copy of the License at
11  * * 
12  *  *      http://www.apache.org/licenses/LICENSE-2.0
13  * * 
14  *  * Unless required by applicable law or agreed to in writing, software
15  * * distributed under the License is distributed on an "AS IS" BASIS,
16  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * * See the License for the specific language governing permissions and
18  * * limitations under the License.
19  * * ============LICENSE_END====================================================
20  * *
21  * *
22  ******************************************************************************/
23
24 package org.onap.aaf.auth.cmd.test.ns;
25
26 import org.junit.Assert;
27 import org.junit.Before;
28
29 import static org.junit.Assert.assertEquals;
30 import static org.junit.Assert.fail;
31 import static org.mockito.Mockito.mock;
32 import static org.mockito.Mockito.when;
33
34 import java.io.Writer;
35 import java.net.HttpURLConnection;
36 import java.net.URI;
37 import java.net.URISyntaxException;
38
39 import org.junit.BeforeClass;
40 import org.junit.Test;
41 import org.junit.runner.RunWith;
42 import org.mockito.runners.MockitoJUnitRunner;
43 import org.onap.aaf.auth.cmd.AAFcli;
44 import org.onap.aaf.auth.cmd.ns.List;
45 import org.onap.aaf.auth.cmd.ns.ListByName;
46 import org.onap.aaf.auth.cmd.ns.NS;
47 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
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_ListByName {
61     
62     private static ListByName lsByName;
63     PropAccess prop;
64     AuthzEnv aEnv;
65     Writer wtr;
66     Locator<URI> loc;
67     HMangr hman;    
68     AAFcli aafcli;
69     
70     @Before
71     public void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
72         prop = new PropAccess();
73         aEnv = new AuthzEnv();
74         wtr = mock(Writer.class);
75         loc = mock(Locator.class);
76         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
77         hman = new HMangr(aEnv, loc);    
78         aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
79         NS ns = new NS(aafcli);
80         List ls = new List(ns);
81         lsByName = new ListByName(ls);
82     }
83     
84     @Test
85     public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
86         Item value = mock(Item.class);
87         Locator.Item item = new Locator.Item() {
88         };
89         when(loc.best()).thenReturn(value);
90         URI uri = new URI("http://www.oracle.com/technetwork/java/index.html");
91         when(loc.get(value)).thenReturn(uri);
92         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
93         HRcli hcli = new HRcli(hman, uri, item, secSet);
94         String[] strArr = {"add","upd","del","add","upd","del"};
95         //lsByName._exec(0, strArr);
96         
97     }
98     
99     @Test
100     public void testDetailedHelp() {
101         StringBuilder sb = new StringBuilder();
102         lsByName.detailedHelp(0, sb );
103     }
104 }
105