28d4850134f2fba40e64afe3c3971afc9eb8ae93
[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 package org.onap.aaf.auth.cmd.test.user;
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.FileNotFoundException;
31 import java.io.Writer;
32 import java.net.HttpURLConnection;
33 import java.net.URI;
34 import java.net.URISyntaxException;
35
36 import static org.junit.Assert.*;
37
38 import org.junit.BeforeClass;
39 import org.junit.Test;
40 import org.junit.runner.RunWith;
41 import org.mockito.runners.MockitoJUnitRunner;
42 import org.onap.aaf.auth.cmd.AAFcli;
43 import org.onap.aaf.auth.cmd.user.Cred;
44 import org.onap.aaf.auth.cmd.user.Delg;
45 import org.onap.aaf.auth.cmd.user.User;
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_Delg {
59         
60         private static User testUser;
61         private static Delg delg;
62         User user;
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 FileNotFoundException, APIException, LocatorException, CadiException {
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                 user = new User(aafcli);
80                 delg = new Delg(user);
81         }
82         
83         @Test
84         public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
85                 Item value = mock(Item.class);
86                 Locator.Item item = new Locator.Item() {
87                 };
88                 when(loc.best()).thenReturn(value);
89                 URI uri = new URI("http://java.sun.com/j2se/1.3/");
90                 when(loc.get(value)).thenReturn(uri);
91                 SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
92                 HRcli hcli = new HRcli(hman, uri, item, secSet);
93                 String[] strArr = {"add","upd","del"};
94                 delg._exec(0, strArr);
95                 
96                 String[] strArr1 = {"upd","del","add"};
97                 delg._exec(0, strArr1);
98                 
99                 String[] strArr2 = {"del","add"};
100                 delg._exec(0, strArr2);
101
102         }
103         
104         @Test
105         public void testDetailedHelp() {
106                 StringBuilder sb = new StringBuilder();
107                 delg.detailedHelp(0, sb);
108         }
109         
110 }