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