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