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