AT&T 2.0.19 Code drop, stage 4
[aaf/authz.git] / authz-cmd / src / test / java / org / onap / aaf / cmd / JU_BaseCmd.java
diff --git a/authz-cmd/src/test/java/org/onap/aaf/cmd/JU_BaseCmd.java b/authz-cmd/src/test/java/org/onap/aaf/cmd/JU_BaseCmd.java
deleted file mode 100644 (file)
index 2b94651..0000000
+++ /dev/null
@@ -1,235 +0,0 @@
-/*******************************************************************************\r
- * ============LICENSE_START====================================================\r
- * * org.onap.aaf\r
- * * ===========================================================================\r
- * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
- * * ===========================================================================\r
- * * Licensed under the Apache License, Version 2.0 (the "License");\r
- * * you may not use this file except in compliance with the License.\r
- * * You may obtain a copy of the License at\r
- * * \r
- *  *      http://www.apache.org/licenses/LICENSE-2.0\r
- * * \r
- *  * Unless required by applicable law or agreed to in writing, software\r
- * * distributed under the License is distributed on an "AS IS" BASIS,\r
- * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * * See the License for the specific language governing permissions and\r
- * * limitations under the License.\r
- * * ============LICENSE_END====================================================\r
- * *\r
- * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
- * *\r
- ******************************************************************************/\r
-package org.onap.aaf.cmd;\r
-\r
-import static org.junit.Assert.assertEquals;\r
-\r
-import java.io.IOException;\r
-import java.security.GeneralSecurityException;\r
-import java.util.Date;\r
-import java.util.GregorianCalendar;\r
-\r
-import javax.xml.datatype.DatatypeConfigurationException;\r
-import javax.xml.datatype.DatatypeFactory;\r
-import javax.xml.datatype.XMLGregorianCalendar;\r
-\r
-import org.junit.BeforeClass;\r
-import org.junit.Test;\r
-import org.junit.runner.RunWith;\r
-import org.mockito.runners.MockitoJUnitRunner;\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
-import org.onap.aaf.cadi.client.Future;\r
-import org.onap.aaf.inno.env.APIException;\r
-\r
-import aaf.v2_0.History;\r
-\r
-@RunWith(MockitoJUnitRunner.class)\r
-public class JU_BaseCmd {\r
-\r
-       private static AAFcli cli;\r
-       private static BaseCmd bCmd;\r
-\r
-       @BeforeClass\r
-       public static void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException {\r
-               cli = JU_AAFCli.getAAfCli();\r
-               bCmd = new BaseCmd<>(cli, "testString");\r
-       }\r
-\r
-       @Test\r
-       public void exec() throws CadiException, APIException, LocatorException {\r
-               assertEquals(bCmd._exec(4, "add", "del", "reset", "extend"), 0);\r
-\r
-       }\r
-       \r
-       @Test\r
-       public void exec1() throws CadiException, APIException, LocatorException {\r
-               assertEquals(bCmd._exec(0, "add", "del", "reset", "extend"), 0);\r
-\r
-       }\r
-\r
-       @Test\r
-       public void error() throws CadiException, APIException, LocatorException {\r
-               boolean noError = true;\r
-               Future<String> future = new Future<String>() {\r
-\r
-                       @Override\r
-                       public boolean get(int timeout) throws CadiException {\r
-                               // TODO Auto-generated method stub\r
-                               return false;\r
-                       }\r
-\r
-                       @Override\r
-                       public int code() {\r
-                               // TODO Auto-generated method stub\r
-                               return 0;\r
-                       }\r
-\r
-                       @Override\r
-                       public String body() {\r
-                               // TODO Auto-generated method stub\r
-                               return "{%}";\r
-                       }\r
-\r
-                       @Override\r
-                       public String header(String tag) {\r
-                               // TODO Auto-generated method stub\r
-                               return null;\r
-                       }\r
-               };\r
-               try {\r
-                       bCmd.error(future);\r
-               } catch (Exception e) {\r
-                       noError = false;\r
-               }\r
-               assertEquals(noError, true);\r
-\r
-       }\r
-\r
-\r
-\r
-       @Test\r
-       public void activity() throws DatatypeConfigurationException {\r
-               boolean noError = true;\r
-               History history = new History();\r
-               History.Item item = new History.Item();\r
-               item.setTarget("target");\r
-               item.setUser("user");\r
-               item.setMemo("memo");\r
-\r
-               GregorianCalendar c = new GregorianCalendar();\r
-               c.setTime(new Date());\r
-               XMLGregorianCalendar date = DatatypeFactory.newInstance().newXMLGregorianCalendar(c);\r
-               item.setTimestamp(date);\r
-               history.getItem().add(item);\r
-               try {\r
-                       bCmd.activity(history, "history");\r
-               } catch (Exception e) {\r
-                       noError = false;\r
-               }\r
-               assertEquals(noError, true);\r
-\r
-       }\r
-\r
-       @Test\r
-       public void activity1() throws DatatypeConfigurationException {\r
-               boolean noError = true;\r
-               History history = new History();\r
-               History.Item item = new History.Item();\r
-               item.setTarget("target");\r
-               item.setUser("user");\r
-               item.setMemo("memo");\r
-\r
-               GregorianCalendar c = new GregorianCalendar();\r
-               c.setTime(new Date());\r
-               XMLGregorianCalendar date = DatatypeFactory.newInstance().newXMLGregorianCalendar(c);\r
-               item.setTimestamp(date);\r
-               history.getItem().add(item);\r
-               try {\r
-                       bCmd.activity(history, "1[]");\r
-               } catch (Exception e) {\r
-                       noError = false;\r
-               }\r
-               assertEquals(noError, true);\r
-\r
-       }\r
-       \r
-\r
-\r
-       @Test\r
-       public void error1() {\r
-               boolean noError = true;\r
-               Future<String> future = new Future<String>() {\r
-\r
-                       @Override\r
-                       public boolean get(int timeout) throws CadiException {\r
-                               // TODO Auto-generated method stub\r
-                               return false;\r
-                       }\r
-\r
-                       @Override\r
-                       public int code() {\r
-                               // TODO Auto-generated method stub\r
-                               return 0;\r
-                       }\r
-\r
-                       @Override\r
-                       public String body() {\r
-                               // TODO Auto-generated method stub\r
-                               return "{<html><code>1</code></html>";\r
-                       }\r
-\r
-                       @Override\r
-                       public String header(String tag) {\r
-                               // TODO Auto-generated method stub\r
-                               return null;\r
-                       }\r
-               };\r
-               try {\r
-                       bCmd.error(future);\r
-               } catch (Exception e) {\r
-                       noError = false;\r
-               }\r
-               assertEquals(noError, true);\r
-\r
-       }\r
-\r
-       @Test\r
-       public void error2() {\r
-               boolean noError = true;\r
-               Future<String> future = new Future<String>() {\r
-\r
-                       @Override\r
-                       public boolean get(int timeout) throws CadiException {\r
-                               // TODO Auto-generated method stub\r
-                               return false;\r
-                       }\r
-\r
-                       @Override\r
-                       public int code() {\r
-                               // TODO Auto-generated method stub\r
-                               return 0;\r
-                       }\r
-\r
-                       @Override\r
-                       public String body() {\r
-                               // TODO Auto-generated method stub\r
-                               return "other";\r
-                       }\r
-\r
-                       @Override\r
-                       public String header(String tag) {\r
-                               // TODO Auto-generated method stub\r
-                               return null;\r
-                       }\r
-               };\r
-               try {\r
-                       bCmd.error(future);\r
-               } catch (Exception e) {\r
-                       noError = false;\r
-               }\r
-               assertEquals(noError, true);\r
-\r
-       }\r
-\r
-}\r