Sonar Fixes, Formatting
[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
23 package org.onap.aaf.auth.cmd.test.ns;
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.fail;
30 import static org.mockito.Mockito.mock;
31 import static org.mockito.Mockito.when;
32
33 import java.io.Writer;
34 import java.net.HttpURLConnection;
35 import java.net.URI;
36 import java.net.URISyntaxException;
37
38 import java.io.Writer;
39 import java.net.HttpURLConnection;
40 import java.net.URI;
41 import static org.mockito.Mockito.*;
42 import org.mockito.Mockito;
43 import org.junit.BeforeClass;
44 import org.junit.Test;
45 import org.junit.runner.RunWith;
46 import org.mockito.runners.MockitoJUnitRunner;
47 import org.onap.aaf.auth.cmd.AAFcli;
48 import org.onap.aaf.auth.cmd.ns.Attrib;
49 import org.onap.aaf.auth.cmd.ns.NS;
50 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
51 import org.onap.aaf.auth.env.AuthzEnv;
52 import org.onap.aaf.cadi.CadiException;
53 import org.onap.aaf.cadi.Locator;
54 import org.onap.aaf.cadi.LocatorException;
55 import org.onap.aaf.cadi.PropAccess;
56 import org.onap.aaf.cadi.SecuritySetter;
57 import org.onap.aaf.cadi.Locator.Item;
58 import org.onap.aaf.cadi.http.HMangr;
59 import org.onap.aaf.cadi.http.HRcli;
60 import org.onap.aaf.misc.env.APIException;
61
62 @RunWith(MockitoJUnitRunner.class)
63 public class JU_Attrib {
64
65     private static Attrib attrib;
66     PropAccess prop;
67     AuthzEnv aEnv;
68     Writer wtr;
69     Locator<URI> loc;
70     HMangr hman;
71     AAFcli aafcli;
72
73     @Before
74     public void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
75         prop = new PropAccess();
76         aEnv = new AuthzEnv();
77         wtr = mock(Writer.class);
78         loc = mock(Locator.class);
79         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
80         hman = new HMangr(aEnv, loc);
81         aafcli = new AAFcli(prop, aEnv, wtr, hman, null, secSet);
82         NS ns = new NS(aafcli);
83         attrib = new Attrib(ns);
84     }
85
86     @Test
87     public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
88         Item value = mock(Item.class);
89         Locator.Item item = new Locator.Item() {
90         };
91         when(loc.best()).thenReturn(value);
92         URI uri = new URI("http://www.oracle.com/technetwork/java/index.html");
93         when(loc.get(value)).thenReturn(uri);
94         SecuritySetter<HttpURLConnection> secSet = mock(SecuritySetter.class);
95 //        HRcli hcli = new HRcli(hman, uri, item, secSet);
96 //        String[] strArr = {"add","upd","del","add","upd","del"};
97 //        attrib._exec(0, strArr);
98 //
99 //        String[] strArr1 = {"upd","del","add","upd","del","add"};
100 //        attrib._exec(0, strArr1);
101 //
102 //        String[] strArr2 = {"del","add","upd","del","add","upd"};
103 //        attrib._exec(0, strArr2);
104
105     }
106
107     @Test
108     public void detailedHelp() {
109         boolean hasNoError = true;
110         try {
111             attrib.detailedHelp(1, new StringBuilder("test"));
112         } catch (Exception e) {
113             hasNoError = false;
114         }
115         assertEquals(hasNoError, true);
116     }
117
118 }