e0029791aa6efb6dae38614c0229fe966043313f
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_ListUsersContact.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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.ns;
23
24 import static org.junit.Assert.*;
25
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.mockito.Mock;
30 import org.mockito.Mockito;
31 import org.onap.aaf.auth.cmd.AAFcli;
32 import org.onap.aaf.auth.cmd.ns.List;
33 import org.onap.aaf.auth.cmd.ns.ListUsers;
34 import org.onap.aaf.auth.cmd.ns.ListUsersContact;
35 import org.onap.aaf.auth.cmd.ns.NS;
36 import org.onap.aaf.auth.env.AuthzEnv;
37 import org.onap.aaf.cadi.CadiException;
38 import org.onap.aaf.cadi.Locator;
39 import org.onap.aaf.cadi.Locator.Item;
40 import org.onap.aaf.cadi.LocatorException;
41 import org.onap.aaf.cadi.PropAccess;
42 import org.onap.aaf.cadi.SecuritySetter;
43 import org.onap.aaf.cadi.http.HMangr;
44 import org.onap.aaf.cadi.http.HRcli;
45 import org.onap.aaf.misc.env.APIException;
46
47 import static org.mockito.Mockito.*;
48
49 import java.io.Writer;
50 import java.net.HttpURLConnection;
51 import java.net.URI;
52 import java.net.URISyntaxException;
53
54 import org.junit.Test;
55
56 public class JU_ListUsersContact {
57
58     PropAccess prop;
59     AuthzEnv aEnv;
60     Writer wtr;
61     Locator<URI> loc;
62     HMangr hman;    
63     AAFcli aafcli;
64     NS ns;
65     List list;
66     ListUsers lUsers;
67     ListUsersContact lUContact;
68     
69     @Before
70     public void setUp() throws LocatorException, APIException, CadiException {
71         prop = new PropAccess();
72         aEnv = new AuthzEnv();
73         wtr = mock(Writer.class);
74         loc = mock(Locator.class);
75         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
76         hman = new HMangr(aEnv, loc);    
77         aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
78         ns = new NS(aafcli);
79         list = new List(ns);
80         lUsers = new ListUsers(list);
81     }
82     
83     @Test
84     public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
85         lUContact = new ListUsersContact(lUsers);
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         //lUContact._exec(0, "test");
95         
96     }
97     
98     @Test
99     public void testDetailedHelp() {
100         lUContact = new ListUsersContact(lUsers);
101         StringBuilder sb = new StringBuilder();
102         lUContact.detailedHelp(0, sb);
103     }
104
105 }