Improve code coverage for aaf authz modules
[aaf/authz.git] / authz-cmd / src / test / java / org / onap / aaf / cmd / JU_BaseCmd.java
index a1d19dd..77243e9 100644 (file)
@@ -26,33 +26,204 @@ import static org.junit.Assert.assertEquals;
 \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.cmd.AAFcli;\r
-import org.onap.aaf.cmd.BaseCmd;\r
-\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
+\r
        private static AAFcli cli;\r
        private static BaseCmd bCmd;\r
-       \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
+\r
        @Test\r
        public void exec() throws CadiException, APIException, LocatorException {\r
-               assertEquals(bCmd._exec(0, "add","del","reset","extend"), 0);\r
-               \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