b58e44f57a78028543c81866c5bb91decc036988
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / role / JU_ListByNS.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.role;
24
25 import org.junit.Assert;
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.fail;
28
29 import org.junit.BeforeClass;
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.mockito.runners.MockitoJUnitRunner;
33 import org.onap.aaf.auth.cmd.AAFcli;
34 import org.onap.aaf.auth.cmd.role.List;
35 import org.onap.aaf.auth.cmd.role.ListByNS;
36 import org.onap.aaf.auth.cmd.role.Role;
37 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
38 import org.onap.aaf.cadi.CadiException;
39 import org.onap.aaf.cadi.LocatorException;
40 import org.onap.aaf.misc.env.APIException;
41
42 @RunWith(MockitoJUnitRunner.class)
43 public class JU_ListByNS {
44     
45     private static ListByNS lsByNS;
46     
47     @BeforeClass
48     public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
49         AAFcli cli = JU_AAFCli.getAAfCli();
50         Role role = new Role(cli);
51         List ls = new List(role);
52         lsByNS = new ListByNS(ls);
53     }
54     
55 //    @Test
56 //    public void exec() {
57 //        try {
58 //            assertEquals(lsByNS._exec(0, "add","del","reset","extend","clear", "rename", "create"),500);
59 //        } catch (CadiException e) {
60 //            // TODO Auto-generated catch block
61 //            e.printStackTrace();
62 //        } catch (APIException e) {
63 //            // TODO Auto-generated catch block
64 //            e.printStackTrace();
65 //        } catch (LocatorException e) {
66 //            // TODO Auto-generated catch block
67 //            e.printStackTrace();
68 //        }
69 //    }
70     
71     @Test
72     public void detailedHelp() {
73         boolean hasNoError = true;
74         try {
75             lsByNS.detailedHelp(1, new StringBuilder("test"));
76         } catch (Exception e) {
77             hasNoError = false;
78         }
79         assertEquals(hasNoError, true);
80     }
81 }