Improve code coverage for aaf cadi modules 67/16667/1
authorsg481n <sg481n@att.com>
Fri, 29 Sep 2017 17:20:35 +0000 (17:20 +0000)
committersg481n <sg481n@att.com>
Fri, 29 Sep 2017 17:20:41 +0000 (17:20 +0000)
Issue-ID: AAF-79
Change-Id: I6679f27eba438c7a02ea36fe4bd885eb405e2222
Signed-off-by: sg481n <sg481n@att.com>
core/src/test/java/org/onap/aaf/cadi/util/JU_NetMask.java [new file with mode: 0644]
core/src/test/java/org/onap/aaf/cadi/util/JU_Split.java [new file with mode: 0644]
core/src/test/java/org/onap/aaf/cadi/util/JU_TheConsole.java [new file with mode: 0644]
core/src/test/java/org/onap/aaf/cadi/util/JU_UserChainManip.java [new file with mode: 0644]
core/src/test/java/org/onap/aaf/cadi/util/JU_Vars.java [new file with mode: 0644]

diff --git a/core/src/test/java/org/onap/aaf/cadi/util/JU_NetMask.java b/core/src/test/java/org/onap/aaf/cadi/util/JU_NetMask.java
new file mode 100644 (file)
index 0000000..14eab47
--- /dev/null
@@ -0,0 +1,41 @@
+/*******************************************************************************\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.cadi.util;\r
+\r
+import static org.junit.Assert.assertEquals;\r
+\r
+import org.junit.Test;\r
+\r
+public class JU_NetMask {\r
+\r
+       @Test\r
+       public void deriveTest() {\r
+               String test = "test";\r
+               assertEquals(NetMask.derive(test.getBytes()), 0);\r
+       }\r
+\r
+       @Test\r
+       public void deriveTest2() {\r
+               String test = "1.2.3.4";\r
+               assertEquals(NetMask.derive(test.getBytes()), 0);\r
+       }\r
+}\r
diff --git a/core/src/test/java/org/onap/aaf/cadi/util/JU_Split.java b/core/src/test/java/org/onap/aaf/cadi/util/JU_Split.java
new file mode 100644 (file)
index 0000000..bf5a359
--- /dev/null
@@ -0,0 +1,45 @@
+/*******************************************************************************\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.cadi.util;\r
+\r
+import static org.junit.Assert.assertEquals;\r
+\r
+import org.junit.Test;\r
+\r
+public class JU_Split {\r
+\r
+       @Test\r
+       public void split() {\r
+               assertEquals(Split.split('c', "testctc").length,3);\r
+       }\r
+       \r
+       @Test\r
+       public void splitTrim() {\r
+               assertEquals(Split.splitTrim('c', "testctc").length,3);\r
+       }\r
+       \r
+       @Test\r
+       public void splitTrimWithSize() {\r
+               assertEquals(Split.splitTrim('c', "testcctc",2).length,2);\r
+       }\r
+\r
+}\r
diff --git a/core/src/test/java/org/onap/aaf/cadi/util/JU_TheConsole.java b/core/src/test/java/org/onap/aaf/cadi/util/JU_TheConsole.java
new file mode 100644 (file)
index 0000000..ae06295
--- /dev/null
@@ -0,0 +1,36 @@
+/*******************************************************************************\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.cadi.util;\r
+\r
+import static org.junit.Assert.assertEquals;\r
+\r
+import org.junit.Test;\r
+\r
+public class JU_TheConsole {\r
+       \r
+       @Test\r
+       public void implemented(){\r
+               assertEquals(TheConsole.implemented(),false);\r
+       }\r
+       \r
+       }\r
+       \r
diff --git a/core/src/test/java/org/onap/aaf/cadi/util/JU_UserChainManip.java b/core/src/test/java/org/onap/aaf/cadi/util/JU_UserChainManip.java
new file mode 100644 (file)
index 0000000..0808e88
--- /dev/null
@@ -0,0 +1,50 @@
+/*******************************************************************************\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.cadi.util;\r
+\r
+import static org.junit.Assert.assertEquals;\r
+\r
+import java.util.ArrayList;\r
+import java.util.List;\r
+\r
+import org.junit.Test;\r
+import org.onap.aaf.cadi.UserChain;\r
+\r
+public class JU_UserChainManip {\r
+\r
+       @Test\r
+       public void build(){\r
+               UserChain.Protocol baseAuth=UserChain.Protocol.BasicAuth;\r
+               assertEquals(UserChainManip.build(new StringBuilder(""), "app", "id", baseAuth, true).toString(), "app:id:BasicAuth:AS");\r
+       }\r
+       \r
+       @Test\r
+       public void idToNS(){\r
+               assertEquals(UserChainManip.idToNS(null), "");\r
+       }\r
+       \r
+       @Test\r
+       public void idToNS1(){\r
+               assertEquals(UserChainManip.idToNS("t@st"), "st");\r
+       }\r
+\r
+}\r
diff --git a/core/src/test/java/org/onap/aaf/cadi/util/JU_Vars.java b/core/src/test/java/org/onap/aaf/cadi/util/JU_Vars.java
new file mode 100644 (file)
index 0000000..6a2b4c0
--- /dev/null
@@ -0,0 +1,57 @@
+/*******************************************************************************\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.cadi.util;\r
+\r
+import static org.junit.Assert.assertEquals;\r
+\r
+import java.util.ArrayList;\r
+import java.util.List;\r
+\r
+import org.junit.Test;\r
+\r
+public class JU_Vars {\r
+\r
+       @Test\r
+       public void convert() {\r
+               String test = "test";\r
+               List<String> list = new ArrayList<String>();\r
+               list.add("method");\r
+               assertEquals(Vars.convert(test, list), test);\r
+       }\r
+\r
+       @Test\r
+       public void convertTest1() {\r
+               String test = "te%t";\r
+               List<String> list = new ArrayList<String>();\r
+               list.add("method");\r
+               assertEquals(Vars.convert("test", list), "test");\r
+       }\r
+\r
+       @Test\r
+       public void convertTest2() {\r
+               String test = "te%s%t";\r
+               List<String> list = new ArrayList<String>();\r
+               list.add("method");\r
+               assertEquals(Vars.convert("test", list), "test");\r
+       }\r
+\r
+}\r