0855a2a336d93059ab1c51af3ea1311168567ff6
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / user / JU_Cred.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.junit.Assert.assertEquals;
29 import static org.junit.Assert.assertNotNull;
30 import static org.mockito.Mockito.mock;
31 import static org.mockito.Mockito.when;
32
33 import java.io.FileNotFoundException;
34 import java.io.PrintWriter;
35 import java.io.Writer;
36 import java.net.HttpURLConnection;
37 import java.net.URI;
38 import java.net.URISyntaxException;
39
40 import org.junit.BeforeClass;
41 import org.junit.Test;
42 import org.junit.runner.RunWith;
43 import org.mockito.Mockito;
44 import org.mockito.runners.MockitoJUnitRunner;
45 import org.onap.aaf.auth.cmd.AAFcli;
46 import org.onap.aaf.auth.cmd.Cmd;
47 import org.onap.aaf.auth.cmd.user.Cred;
48 import org.onap.aaf.auth.cmd.user.User;
49 import org.onap.aaf.auth.env.AuthzEnv;
50 import org.onap.aaf.cadi.CadiException;
51 import org.onap.aaf.cadi.Locator;
52 import org.onap.aaf.cadi.LocatorException;
53 import org.onap.aaf.cadi.PropAccess;
54 import org.onap.aaf.cadi.SecuritySetter;
55 import org.onap.aaf.cadi.Locator.Item;
56 import org.onap.aaf.cadi.http.HMangr;
57 import org.onap.aaf.cadi.http.HRcli;
58 import org.onap.aaf.misc.env.APIException;
59
60 @RunWith(MockitoJUnitRunner.class)
61 public class JU_Cred {
62
63     User user;
64     Cred cred;
65     PropAccess prop;
66     AuthzEnv aEnv;
67     Writer wtr;
68     Locator<URI> loc;
69     HMangr hman;    
70     AAFcli aafcli;
71
72     @Before
73     public void setUp() throws FileNotFoundException, APIException, LocatorException, CadiException {
74         prop = new PropAccess();
75         aEnv = new AuthzEnv();
76         wtr = mock(Writer.class);
77         loc = mock(Locator.class);
78         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
79         hman = new HMangr(aEnv, loc);    
80         aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
81         user = new User(aafcli);
82         cred = new Cred(user);
83     }
84     
85     @Test
86     public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
87         Item value = mock(Item.class);
88         Locator.Item item = new Locator.Item() {
89         };
90         when(loc.best()).thenReturn(value);
91         URI uri = new URI("http://www.oracle.com/technetwork/java/index.html");
92         when(loc.get(value)).thenReturn(uri);
93         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
94 //        HRcli hcli = new HRcli(hman, uri, item, secSet);
95 //        String[] strArr = {"add","del","reset","extend"};
96 //        cred._exec(0, strArr);
97 //        
98 //        String[] strArr1 = {"del","reset","extend","add"};
99 //        cred._exec(0, strArr1);
100 //        
101 //        String[] strArr2 = {"reset","extend", "add","del"};
102 //        cred._exec(0, strArr2);
103 //        
104 //        String[] strArr3 = {"extend","add","del","reset"};
105 //        cred._exec(0, strArr3);
106
107     }
108     
109     @Test
110     public void testDetailedHelp() {
111         StringBuilder sb = new StringBuilder();
112         cred.detailedHelp(0, sb);
113     }
114
115 }