ee877a4b2728a07be69276726b05335575e57b71
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_Delete.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.ns;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.mockito.Mockito.mock;
26 import static org.mockito.Mockito.when;
27
28 import java.io.IOException;
29 import java.io.Writer;
30 import java.net.HttpURLConnection;
31 import java.net.URI;
32 import java.net.URISyntaxException;
33 import java.security.GeneralSecurityException;
34
35 import org.junit.Before;
36 import org.junit.Test;
37 import org.onap.aaf.auth.cmd.AAFcli;
38 import org.onap.aaf.auth.cmd.ns.Delete;
39 import org.onap.aaf.auth.cmd.ns.NS;
40 import org.onap.aaf.auth.env.AuthzEnv;
41 import org.onap.aaf.cadi.CadiException;
42 import org.onap.aaf.cadi.Locator;
43 import org.onap.aaf.cadi.Locator.Item;
44 import org.onap.aaf.cadi.LocatorException;
45 import org.onap.aaf.cadi.PropAccess;
46 import org.onap.aaf.cadi.SecuritySetter;
47 import org.onap.aaf.cadi.http.HMangr;
48 import org.onap.aaf.misc.env.APIException;
49
50 public class JU_Delete {
51
52         private static Delete delete;//import may be org.onap.aaf.auth.cmd.perm
53         PropAccess prop;
54         AuthzEnv aEnv;
55         Writer wtr;
56         Locator<URI> loc;
57         HMangr hman;    
58         AAFcli aafcli;
59         
60         @Before
61         public void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException, CadiException {
62                 prop = new PropAccess();
63                 aEnv = new AuthzEnv();
64                 wtr = mock(Writer.class);
65                 loc = mock(Locator.class);
66                 SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
67                 hman = new HMangr(aEnv, loc);   
68                 aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
69                 NS ns = new NS(aafcli);
70                 delete = new Delete(ns);
71
72         }
73
74         @Test
75         public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
76                 Item value = mock(Item.class);
77                 Locator.Item item = new Locator.Item() {
78                 };
79                 when(loc.best()).thenReturn(value);
80                 URI uri = new URI("http://www.oracle.com/technetwork/java/index.html");
81                 when(loc.get(value)).thenReturn(uri);
82                 SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
83 //              HRcli hcli = new HRcli(hman, uri, item, secSet);
84 //              String[] strArr = {"add","upd","del","add","upd","del"};
85 //              delete._exec(0, strArr);
86                 
87         }
88
89         @Test
90         public void detailedHelp() {
91                 boolean hasNoError = true;
92                 try {
93                         delete.detailedHelp(1, new StringBuilder("test"));
94                 } catch (Exception e) {
95                         hasNoError = false;
96                 }
97                 assertEquals(hasNoError, true);
98         }
99
100 }