Remove Code from cadi, it is now in authz
[aaf/cadi.git] / core / src / test / java / org / onap / aaf / cadi / JU_PropAccessTest.java
diff --git a/core/src/test/java/org/onap/aaf/cadi/JU_PropAccessTest.java b/core/src/test/java/org/onap/aaf/cadi/JU_PropAccessTest.java
deleted file mode 100644 (file)
index 9b18aa6..0000000
+++ /dev/null
@@ -1,75 +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.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
-import java.util.Properties;\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 JU_PropAccessTest {\r
-\r
-       @Test\r
-       public void test() {\r
-               PropAccess prop = new PropAccess(new Object());\r
-               \r
-               prop = new PropAccess("cadi_name=user","cadi_loglevel=DEBUG","cadi_prop_files=test/cadi.properties");\r
-               \r
-               assertTrue(prop.getProperties().keySet().contains("cadi_name"));\r
-               assertTrue(prop.getProperty("cadi_name").equals("user"));\r
-               \r
-               prop.setProperty("cadi_keyfile", "file");\r
-               prop.setLogLevel(Level.DEBUG);\r
-               assertEquals(prop.getProperty("cadi_keyfile"),"file");\r
-               prop.log(Level.DEBUG);\r
-               assertTrue(prop.getDME2Properties().keySet().contains("AFT_DME2_SSL_INCLUDE_PROTOCOLS"));\r
-       }\r
-       \r
-       @Test\r
-       public void testWithProperties() {\r
-               Properties p = new Properties();\r
-               p.put("cadi_name", "user");\r
-               p.put("cadi_loglevel", "DEBUG");\r
-               \r
-               PropAccess prop = new PropAccess(p);\r
-               \r
-               assertTrue(prop.getProperties().keySet().contains("cadi_name"));\r
-               assertTrue(prop.getProperty("cadi_name").equals("user"));\r
-               \r
-               prop.setProperty("cadi_keyfile", "file");\r
-               prop.setLogLevel(Level.DEBUG);\r
-               assertEquals(prop.getProperty("cadi_keyfile"),"file");\r
-               prop.log(Level.DEBUG);\r
-               assertTrue(prop.getDME2Properties().keySet().contains("AFT_DME2_SSL_INCLUDE_PROTOCOLS"));\r
-       }\r
-}\r