2b552b91d92f931c437e2103f920cba621a7e8ba
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_Owner.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 static org.junit.Assert.*;
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.BeforeClass;
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.ns.Create;
34 import org.onap.aaf.auth.cmd.ns.NS;
35 import org.onap.aaf.auth.cmd.ns.Owner;
36 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
37 import org.onap.aaf.cadi.CadiException;
38 import org.onap.aaf.cadi.Locator;
39 import org.onap.aaf.cadi.LocatorException;
40 import org.onap.aaf.cadi.SecuritySetter;
41 import org.onap.aaf.cadi.Locator.Item;
42 import org.onap.aaf.cadi.http.HRcli;
43 import org.onap.aaf.misc.env.APIException;
44
45 import static org.mockito.Mockito.*;
46
47 import java.net.HttpURLConnection;
48 import java.net.URI;
49 import java.net.URISyntaxException;
50
51 import org.junit.Test;
52
53 public class JU_Owner {
54
55     private static Owner owner;
56
57     @BeforeClass
58     public static void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
59         AAFcli cli = JU_AAFCli.getAAfCli();
60         NS ns = new NS(cli);
61         owner = new Owner(ns);
62     }
63     
64     @Test
65     public void testExec() throws APIException, LocatorException, CadiException, URISyntaxException {
66         String[] strArr = {"add","del","add","del"};
67         //owner._exec(0, strArr);
68
69     }
70     
71     @Test
72     public void detailedHelp() {
73         boolean hasNoError = true;
74         try {
75             owner.detailedHelp(1, new StringBuilder("test"));
76         } catch (Exception e) {
77             hasNoError = false;
78         }
79         assertEquals(hasNoError, true);
80     }
81
82 }