50da3e371824f6c9df0a02ca4ec4f5a171f11720
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / JU_Help.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;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.fail;
26 import static org.junit.Assert.assertTrue;
27
28 import java.io.IOException;
29 import java.security.GeneralSecurityException;
30 import java.util.ArrayList;
31 import java.util.List;
32
33 import org.eclipse.jetty.http.HttpStatus;
34 import org.junit.Before;
35 import org.junit.BeforeClass;
36 import org.junit.Test;
37 import org.junit.runner.RunWith;
38 import org.mockito.Mock;
39 import org.mockito.runners.MockitoJUnitRunner;
40 import org.onap.aaf.auth.cmd.AAFcli;
41 import org.onap.aaf.auth.cmd.Cmd;
42 import org.onap.aaf.auth.cmd.Help;
43 import org.onap.aaf.auth.cmd.Param;
44 import org.onap.aaf.cadi.CadiException;
45 import org.onap.aaf.cadi.LocatorException;
46 import org.onap.aaf.cadi.client.Future;
47 import org.onap.aaf.misc.env.APIException;
48
49 import junit.framework.Assert;
50
51 @RunWith(MockitoJUnitRunner.class)
52 public class JU_Help {
53         
54         private static AAFcli cli;
55         private static Help help;
56         String[] strArr = {"null","null","b","c"};
57         private class CmdStub extends Cmd {
58
59
60                 public CmdStub(AAFcli aafcli, String name, Param[] params) {
61                         super(aafcli, name, params);
62                         // TODO Auto-generated constructor stub
63                 }
64                 
65                 public CmdStub(Cmd parent, String name, Param[] params) {
66                         super(parent, name, params);
67                         // TODO Auto-generated constructor stub
68                 }
69
70                 @Override
71                 protected int _exec(int idx, String... args) throws CadiException, APIException, LocatorException {
72                         // TODO Auto-generated method stub
73                         return 0;
74                 }
75                 
76                 @Override
77                 public void error(Future<?> future) {
78                         super.error(future);
79                 }       
80         
81         }
82         
83         @Mock
84         private static List<Cmd> cmds;
85         
86         @Before
87         public void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException, CadiException {
88                 cli = JU_AAFCli.getAAfCli();
89                 cmds = new ArrayList<>();
90                 Param[] param = new Param[] {new Param("name",true)};
91                 CmdStub cmd = new CmdStub(cli, "null", param);
92                 cmds.add(cmd);
93                 help = new Help(cli, cmds);
94         }
95         
96         @Test
97         public void exec_HTTP_200() {
98                 try {
99                         assertEquals(help._exec(1, "helps"), HttpStatus.OK_200);
100                         assertEquals(help._exec(1, strArr), HttpStatus.OK_200);
101                 } catch (CadiException | APIException | LocatorException e) {
102                         // TODO Auto-generated catch block
103                         e.printStackTrace();
104                 }
105         }
106         
107         @Test
108         public void exec_HTTP_200_1() {
109                 try {
110                         assertEquals(help._exec(1, "helps","help"), HttpStatus.OK_200);
111                 } catch (CadiException | APIException | LocatorException e) {
112                         // TODO Auto-generated catch block
113                         e.printStackTrace();
114                 }
115         }
116         
117         @Test
118         public void detailhelp() {
119                 boolean hasError=false;
120                 try {
121                         help.detailedHelp(2, new StringBuilder("detail help test"));
122                 } catch (Exception e) {
123                         hasError=true;
124                 }
125                 assertEquals(hasError,false);
126         }
127
128 }