4888f28f91dd2ffd2b9e3bc3277dbdb3dcded98e
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / user / JU_Delg.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.user;
24
25 import org.junit.Assert;
26 import org.junit.Before;
27
28 import static org.mockito.Mockito.mock;
29 import static org.mockito.Mockito.when;
30
31 import java.io.FileNotFoundException;
32 import java.io.Writer;
33 import java.net.HttpURLConnection;
34 import java.net.URI;
35 import java.net.URISyntaxException;
36
37 import static org.junit.Assert.*;
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.user.Cred;
45 import org.onap.aaf.auth.cmd.user.Delg;
46 import org.onap.aaf.auth.cmd.user.User;
47 import org.onap.aaf.auth.env.AuthzEnv;
48 import org.onap.aaf.cadi.CadiException;
49 import org.onap.aaf.cadi.Locator;
50 import org.onap.aaf.cadi.LocatorException;
51 import org.onap.aaf.cadi.PropAccess;
52 import org.onap.aaf.cadi.SecuritySetter;
53 import org.onap.aaf.cadi.Locator.Item;
54 import org.onap.aaf.cadi.http.HMangr;
55 import org.onap.aaf.cadi.http.HRcli;
56 import org.onap.aaf.misc.env.APIException;
57
58 @RunWith(MockitoJUnitRunner.class)
59 public class JU_Delg {
60     
61     private static User testUser;
62     private static Delg delg;
63     User user;
64     PropAccess prop;
65     AuthzEnv aEnv;
66     Writer wtr;
67     Locator<URI> loc;
68     HMangr hman;    
69     AAFcli aafcli;
70
71     @Before
72     public void setUp() throws FileNotFoundException, APIException, LocatorException, CadiException {
73         prop = new PropAccess();
74         aEnv = new AuthzEnv();
75         wtr = mock(Writer.class);
76         loc = mock(Locator.class);
77         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
78         hman = mock(HMangr.class); //new HMangr(aEnv, loc);    
79         aafcli = mock(AAFcli.class);//new AAFcli(prop, aEnv, wtr, hman, null, secSet);
80 //        user = mock(User.class); //new User(aafcli);
81 //        delg = new Delg(user);
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"};
95 //        delg._exec(0, strArr);
96         
97         String[] strArr1 = {"upd","del","add"};
98 //        delg._exec(0, strArr1);
99         
100         String[] strArr2 = {"del","add"};
101 //        delg._exec(0, strArr2);
102
103     }
104     
105     @Test
106     public void testDetailedHelp() {
107         StringBuilder sb = new StringBuilder();
108 //        delg.detailedHelp(0, sb);
109     }
110     
111 }