4abc6e3c59d20e63800aac1323765b67688c5318
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_ListUsersInRole.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 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.ns.List;
35 import org.onap.aaf.auth.cmd.ns.ListUsers;
36 import org.onap.aaf.auth.cmd.ns.ListUsersInRole;
37 import org.onap.aaf.auth.cmd.ns.NS;
38 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
39
40 @RunWith(MockitoJUnitRunner.class)
41 public class JU_ListUsersInRole {
42
43     private static ListUsersInRole lsUserinRole;
44
45     @BeforeClass
46     public static void setUp() throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
47         AAFcli cli = JU_AAFCli.getAAfCli();
48         NS ns = new NS(cli);
49         List ls = new List(ns);//possible wrong import, remove import org.onap.aaf.auth.cmd.ns to see other options
50         ListUsers lsU = new ListUsers(ls);
51         lsUserinRole = new ListUsersInRole(lsU);
52     }
53
54 //    @Test
55 //    public void exec() {
56 //        try {
57 //            assertEquals(lsUserinRole._exec(0, "add", "del", "reset", "extend"), 500);
58 //        } catch (Exception e) {
59 //            assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");
60 //        }
61 //    }
62
63     @Test
64     public void detailedHelp() {
65         boolean hasNoError = true;
66         try {
67             lsUserinRole.detailedHelp(1, new StringBuilder("test"));
68         } catch (Exception e) {
69             hasNoError = false;
70         }
71         assertEquals(hasNoError, true);
72     }
73
74 }