AT&T 2.0.19 Code drop, stage 3
[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
27 import java.io.IOException;
28 import java.security.GeneralSecurityException;
29 import java.util.ArrayList;
30 import java.util.List;
31
32 import org.junit.BeforeClass;
33 import org.junit.Test;
34 import org.junit.runner.RunWith;
35 import org.mockito.Mock;
36 import org.mockito.runners.MockitoJUnitRunner;
37 import org.onap.aaf.auth.cmd.AAFcli;
38 import org.onap.aaf.auth.cmd.Cmd;
39 import org.onap.aaf.auth.cmd.Help;
40 import org.onap.aaf.cadi.CadiException;
41 import org.onap.aaf.cadi.LocatorException;
42 import org.onap.aaf.misc.env.APIException;
43
44 //import com.att.aft.dme2.internal.jetty.http.HttpStatus;
45 //TODO: Gabe [JUnit] Import missing
46 @RunWith(MockitoJUnitRunner.class)
47 public class JU_Help {
48         
49 //      private static AAFcli cli;
50 //      private static Help help;
51 //      
52 //      @Mock
53 //      private static List<Cmd> cmds;
54 //      
55 //      @BeforeClass
56 //      public static void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException {
57 //              cli = JU_AAFCli.getAAfCli();
58 //              cmds = new ArrayList<>();
59 //              help = new Help(cli, cmds);
60 //      }
61 //      
62 //      @Test
63 //      public void exec_HTTP_200() {
64 //              try {
65 //                      assertEquals(help._exec(1, "helps"), HttpStatus.OK_200);
66 //              } catch (CadiException | APIException | LocatorException e) {
67 //                      // TODO Auto-generated catch block
68 //                      e.printStackTrace();
69 //              }
70 //      }
71 //      
72 //      @Test
73 //      public void exec_HTTP_200_1() {
74 //              try {
75 //                      assertEquals(help._exec(1, "helps","help"), HttpStatus.OK_200);
76 //              } catch (CadiException | APIException | LocatorException e) {
77 //                      // TODO Auto-generated catch block
78 //                      e.printStackTrace();
79 //              }
80 //      }
81 //      
82 //      @Test
83 //      public void detailhelp() {
84 //              boolean hasError=false;
85 //              try {
86 //                      help.detailedHelp(2, new StringBuilder("detail help test"));
87 //              } catch (Exception e) {
88 //                      hasError=true;
89 //              }
90 //              assertEquals(hasError,false);
91 //      }
92         
93         @Test                                           //TODO: Temporary fix AAF-111
94         public void netYetTested() {
95                 fail("Tests not yet implemented");
96         }
97 }