c8c00c77be61118679366e4e1c02cdec2d00398b
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / mgmt / JU_Deny.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.mgmt;
24
25 import static org.junit.Assert.*;
26
27 import org.junit.After;
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.mockito.Mock;
31 import org.mockito.Mockito;
32 import org.onap.aaf.auth.cmd.AAFcli;
33 import org.onap.aaf.auth.cmd.mgmt.Deny;
34 import org.onap.aaf.auth.cmd.mgmt.Deny.DenySomething;
35 import org.onap.aaf.auth.cmd.mgmt.Mgmt;
36 import org.onap.aaf.auth.cmd.ns.Create;
37 import org.onap.aaf.auth.cmd.ns.NS;
38 import org.onap.aaf.auth.env.AuthzEnv;
39 import org.onap.aaf.auth.env.AuthzTrans;
40 import org.onap.aaf.auth.env.AuthzTransOnlyFilter;
41 import org.onap.aaf.cadi.CadiException;
42 import org.onap.aaf.cadi.Locator;
43 import org.onap.aaf.cadi.LocatorException;
44 import org.onap.aaf.cadi.PropAccess;
45 import org.onap.aaf.cadi.SecuritySetter;
46 import org.onap.aaf.cadi.Locator.Item;
47 import org.onap.aaf.cadi.http.HMangr;
48 import org.onap.aaf.cadi.http.HRcli;
49 import org.onap.aaf.misc.env.APIException;
50
51 import static org.mockito.Mockito.*;
52
53 import java.io.Writer;
54 import java.lang.reflect.InvocationTargetException;
55 import java.lang.reflect.Method;
56 import java.net.HttpURLConnection;
57 import java.net.URI;
58 import java.net.URISyntaxException;
59 import org.junit.Test;
60
61 public class JU_Deny {
62         
63         Deny deny;
64         DenySomething denyS;
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 NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
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                 Mgmt mgmt = new Mgmt(aafcli);
82                 deny = new Deny(mgmt);
83                 //denyS = deny.new DenySomething(deny,"ip","ipv4or6[,ipv4or6]*");
84
85         }
86         
87         
88
89         @Test
90         public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException {
91                 Item value = mock(Item.class);
92                 Locator.Item item = new Locator.Item() {
93                 };
94                 when(loc.best()).thenReturn(value);
95                 URI uri = new URI("http://java.sun.com/j2se/1.3/");
96                 when(loc.get(value)).thenReturn(uri);
97                 SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
98                 HRcli hcli = new HRcli(hman, uri, item, secSet);
99
100 //              String[] strArr = {"add","del", "add","del"};
101 //              deny._exec(0, strArr);
102 //              
103 //              String[] strArr1 = {"del", "add","del"};
104 //              deny._exec(0, strArr1);
105                 
106         }
107
108 }