1 /*******************************************************************************
2 * ============LICENSE_START====================================================
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
11 * * http://www.apache.org/licenses/LICENSE-2.0
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====================================================
21 ******************************************************************************/
23 package org.onap.aaf.auth.cmd.test.perm;
25 import org.junit.Assert;
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.fail;
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.perm.List;
35 import org.onap.aaf.auth.cmd.perm.ListByRole;
36 import org.onap.aaf.auth.cmd.perm.Perm;
37 import org.onap.aaf.auth.cmd.role.Role;
38 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
39 import org.onap.aaf.cadi.CadiException;
40 import org.onap.aaf.cadi.LocatorException;
41 import org.onap.aaf.misc.env.APIException;
43 @RunWith(MockitoJUnitRunner.class)
44 public class JU_ListByRole {
46 private static ListByRole lsByRole;
49 public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
50 AAFcli cli = JU_AAFCli.getAAfCli();
51 Role role = new Role(cli);
52 Perm perm = new Perm(role);
53 List ls = new List(perm);
54 lsByRole = new ListByRole(ls);
58 // public void exec() {
60 // assertEquals(lsByRole._exec(0, "add","del","reset","extend"),500);
61 // } catch (CadiException e) {
62 // // TODO Auto-generated catch block
63 // e.printStackTrace();
64 // } catch (APIException e) {
65 // // TODO Auto-generated catch block
66 // e.printStackTrace();
67 // } catch (LocatorException e) {
68 // // TODO Auto-generated catch block
69 // e.printStackTrace();
74 public void testDetailedHelp() {
75 StringBuilder sb = new StringBuilder();
76 lsByRole.detailedHelp(0, sb);