3dd338fec97d8b4efd891672a7bd79b57f3c4650
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_Attrib.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.Writer;
33 import java.net.HttpURLConnection;
34 import java.net.URI;
35 import java.net.URISyntaxException;
36
37 import java.io.Writer;
38 import java.net.HttpURLConnection;
39 import java.net.URI;
40 import static org.mockito.Mockito.*;
41 import org.mockito.Mockito;
42 import org.junit.BeforeClass;
43 import org.junit.Test;
44 import org.junit.runner.RunWith;
45 import org.mockito.runners.MockitoJUnitRunner;
46 import org.onap.aaf.auth.cmd.AAFcli;
47 import org.onap.aaf.auth.cmd.ns.Attrib;
48 import org.onap.aaf.auth.cmd.ns.NS;
49 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
50 import org.onap.aaf.auth.env.AuthzEnv;
51 import org.onap.aaf.cadi.CadiException;
52 import org.onap.aaf.cadi.Locator;
53 import org.onap.aaf.cadi.LocatorException;
54 import org.onap.aaf.cadi.PropAccess;
55 import org.onap.aaf.cadi.SecuritySetter;
56 import org.onap.aaf.cadi.Locator.Item;
57 import org.onap.aaf.cadi.http.HMangr;
58 import org.onap.aaf.cadi.http.HRcli;
59 import org.onap.aaf.misc.env.APIException;
60
61 @RunWith(MockitoJUnitRunner.class)
62 public class JU_Attrib {
63
64         private static Attrib attrib;
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                 NS ns = new NS(aafcli);
82                 attrib = new Attrib(ns);
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://java.sun.com/j2se/1.3/");
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","upd","del","add","upd","del"};
96 //              attrib._exec(0, strArr);
97 //              
98 //      }
99
100         @Test
101         public void detailedHelp() {
102                 boolean hasNoError = true;
103                 try {
104                         attrib.detailedHelp(1, new StringBuilder("test"));
105                 } catch (Exception e) {
106                         hasNoError = false;
107                 }
108                 assertEquals(hasNoError, true);
109         }
110
111 }