Improve code coverage for aaf cadi modules 07/16807/1
authorsg481n <sg481n@att.com>
Sun, 1 Oct 2017 23:47:48 +0000 (23:47 +0000)
committersg481n <sg481n@att.com>
Sun, 1 Oct 2017 23:47:55 +0000 (23:47 +0000)
Issue-ID: AAF-79
Change-Id: Ia116c12709f005c6bc6aa3b5f59b17c198893459
Signed-off-by: sg481n <sg481n@att.com>
client/src/test/java/org/onap/aaf/cadi/dme2/DME2ClientSSTest.java [new file with mode: 0644]
client/src/test/java/org/onap/aaf/cadi/http/HBasicAuthSSTest.java [new file with mode: 0644]
core/src/test/java/org/onap/aaf/cadi/PropAccessTest.java [new file with mode: 0644]
core/src/test/java/org/onap/aaf/cadi/lur/ConfigPrincipalTest.java [new file with mode: 0644]

diff --git a/client/src/test/java/org/onap/aaf/cadi/dme2/DME2ClientSSTest.java b/client/src/test/java/org/onap/aaf/cadi/dme2/DME2ClientSSTest.java
new file mode 100644 (file)
index 0000000..0971939
--- /dev/null
@@ -0,0 +1,55 @@
+/*******************************************************************************\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.cadi.dme2;\r
+\r
+import static org.junit.Assert.*;\r
+\r
+import java.io.File;\r
+import java.io.IOException;\r
+\r
+import javax.servlet.annotation.HttpMethodConstraint;\r
+\r
+import org.junit.Before;\r
+import org.junit.Test;\r
+\r
+import com.att.aft.dme2.api.DME2Client;\r
+import com.att.aft.dme2.api.DME2Exception;\r
+\r
+public class DME2ClientSSTest {\r
+       \r
+\r
+       @Before\r
+       public void setUp() throws Exception {\r
+       }\r
+\r
+       @Test\r
+       public void test() throws IOException, DME2Exception {\r
+               DME2ClientSS client = new DME2ClientSS(null, "user", "pass");\r
+               \r
+               assertNotNull(client);\r
+\r
+               assertEquals(client.getID(), "user");\r
+               assertEquals(client.setLastResponse(0), 0);\r
+       }\r
+\r
+}\r
diff --git a/client/src/test/java/org/onap/aaf/cadi/http/HBasicAuthSSTest.java b/client/src/test/java/org/onap/aaf/cadi/http/HBasicAuthSSTest.java
new file mode 100644 (file)
index 0000000..446585b
--- /dev/null
@@ -0,0 +1,58 @@
+/*******************************************************************************\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.cadi.http;\r
+\r
+import static org.junit.Assert.*;\r
+\r
+import java.io.IOException;\r
+\r
+import org.junit.Before;\r
+import org.junit.Test;\r
+\r
+public class HBasicAuthSSTest {\r
+\r
+       @Before\r
+       public void setUp() throws Exception {\r
+       }\r
+\r
+       @Test\r
+       public void testHBasicAuthSSStringStringSecurityInfoCOfHttpURLConnection() throws IOException {\r
+               HBasicAuthSS basicAuth = new HBasicAuthSS("user", "pass", null); \r
+               \r
+               assertEquals(basicAuth.getID(), "user");\r
+               assertFalse(basicAuth.isDenied());\r
+               assertEquals(basicAuth.count(), 0);\r
+               assertEquals(basicAuth.setLastResponse(401), 1);\r
+       }\r
+       \r
+       @Test\r
+       public void testHBasicAuthSSStringStringSecurityInfoCOfHttpURLConnection1() throws IOException {\r
+               HBasicAuthSS basicAuth = new HBasicAuthSS("demo", "demopass", null); \r
+               \r
+               assertEquals(basicAuth.getID(), "demo");\r
+               assertFalse(basicAuth.isDenied());\r
+               assertEquals(basicAuth.count(), 0);\r
+               assertEquals(basicAuth.setLastResponse(401), 1);\r
+       }\r
+\r
+}\r
diff --git a/core/src/test/java/org/onap/aaf/cadi/PropAccessTest.java b/core/src/test/java/org/onap/aaf/cadi/PropAccessTest.java
new file mode 100644 (file)
index 0000000..80e3134
--- /dev/null
@@ -0,0 +1,88 @@
+/*******************************************************************************\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.cadi;\r
+\r
+\r
+import static org.junit.Assert.assertEquals;\r
+import static org.junit.Assert.assertFalse;\r
+import static org.junit.Assert.assertNotNull;\r
+import static org.junit.Assert.assertNull;\r
+import static org.junit.Assert.assertTrue;\r
+\r
+import java.io.IOException;\r
+\r
+import org.junit.Before;\r
+import org.junit.Test;\r
+import org.onap.aaf.cadi.Access.Level;\r
+import org.onap.aaf.cadi.config.Config;\r
+\r
+public class PropAccessTest {\r
+\r
+       @Before\r
+       public void setUp() throws Exception {\r
+       }\r
+\r
+       @Test\r
+       public void testPropAccess() throws IOException {\r
+               PropAccess p = new PropAccess(new Object());\r
+               \r
+               assertNotNull(p);\r
+               assertNotNull(p.getProperties());\r
+               assertNull(p.getProperty("anything"));\r
+               \r
+               p.setProperty("prop", "value");\r
+               assertEquals(p.getProperty("prop"), "value");\r
+               \r
+               p.setProperty(Config.CADI_KEYFILE, "value");\r
+               assertEquals(p.getProperty("prop"), "value");\r
+               \r
+               p.setLogLevel(Level.INFO);\r
+               assertTrue(p.willLog(Level.INFO));\r
+               p.log(Level.DEBUG, new Object());\r
+               String[] args = {"key=value","wow=wow"};\r
+               p = new PropAccess(args);\r
+       }\r
+       \r
+       @Test\r
+       public void testPropAccessone() throws IOException {\r
+               PropAccess p = new PropAccess(new Object());\r
+               \r
+               assertNotNull(p);\r
+               assertNotNull(p.getProperties());\r
+               assertNull(p.getProperty("everything"));\r
+               \r
+               p.setProperty("prop1", "value1");\r
+               assertEquals(p.getProperty("prop1"), "value1");\r
+               \r
+               p.setProperty(Config.CADI_KEYFILE, "value1");\r
+               assertEquals(p.getProperty("prop1"), "value1");\r
+               \r
+               p.setLogLevel(Level.INFO);\r
+               assertTrue(p.willLog(Level.INFO));\r
+               p.log(Level.DEBUG, new Object());\r
+               String[] args = {"key=value1","wow=wow1"};\r
+               p = new PropAccess(args);\r
+       }\r
+\r
+}\r
+\r
diff --git a/core/src/test/java/org/onap/aaf/cadi/lur/ConfigPrincipalTest.java b/core/src/test/java/org/onap/aaf/cadi/lur/ConfigPrincipalTest.java
new file mode 100644 (file)
index 0000000..174686a
--- /dev/null
@@ -0,0 +1,78 @@
+/*******************************************************************************\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.cadi.lur;\r
+\r
+import static org.junit.Assert.*;\r
+\r
+import java.io.IOException;\r
+\r
+import org.junit.Before;\r
+import org.junit.Test;\r
+\r
+public class ConfigPrincipalTest {\r
+\r
+       @Before\r
+       public void setUp() throws Exception {\r
+       }\r
+\r
+       @Test\r
+       public void testConfigPrincipalStringString() {\r
+               ConfigPrincipal p =  new ConfigPrincipal("User", "pass");\r
+               \r
+               assertEquals(p.getName(), "User");\r
+               assertEquals(p.toString(), "User");\r
+               \r
+       }\r
+\r
+       @Test\r
+       public void testConfigPrincipalStringByteArray() throws IOException {\r
+               byte[] bytes = "pass".getBytes();\r
+               ConfigPrincipal p =  new ConfigPrincipal("User", bytes);\r
+               \r
+               assertEquals(p.getName(), "User");\r
+               assertEquals(p.getCred(), bytes);\r
+               assertEquals(p.toString(), "User");\r
+               assertTrue(p.getAsBasicAuthHeader().startsWith("Basic"));\r
+       }\r
+       \r
+       @Test\r
+       public void testConfigPrincipalStringString1() {\r
+               ConfigPrincipal p =  new ConfigPrincipal("Demo", "password");\r
+               \r
+               assertEquals(p.getName(), "Demo");\r
+               assertEquals(p.toString(), "Demo");\r
+               \r
+       }\r
+\r
+       @Test\r
+       public void testConfigPrincipalStringByteArray1() throws IOException {\r
+               byte[] bytes = "password".getBytes();\r
+               ConfigPrincipal p =  new ConfigPrincipal("Demo", bytes);\r
+               \r
+               assertEquals(p.getName(), "Demo");\r
+               assertEquals(p.getCred(), bytes);\r
+               assertEquals(p.toString(), "Demo");\r
+               assertTrue(p.getAsBasicAuthHeader().startsWith("Basic"));\r
+       }\r
+\r
+}\r