Update project structure to org.onap.aaf
[aaf/authz.git] / authz-fs / src / test / java / org / onap / aaf / authz / fs / JU_FileServer.java
diff --git a/authz-fs/src/test/java/org/onap/aaf/authz/fs/JU_FileServer.java b/authz-fs/src/test/java/org/onap/aaf/authz/fs/JU_FileServer.java
new file mode 100644 (file)
index 0000000..88858e7
--- /dev/null
@@ -0,0 +1,83 @@
+/*******************************************************************************\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.authz.fs;\r
+\r
+import static org.junit.Assert.*;\r
+import static org.onap.aaf.cssa.rserv.HttpMethods.GET;\r
+\r
+import java.io.File;\r
+import java.io.IOException;\r
+import java.net.URL;\r
+import java.util.Properties;\r
+\r
+import org.junit.Before;\r
+import org.junit.Test;\r
+import org.junit.runner.RunWith;\r
+import org.mockito.InjectMocks;\r
+import org.mockito.Matchers;\r
+import org.mockito.Mock;\r
+import org.mockito.Mockito;\r
+import org.mockito.runners.MockitoJUnitRunner;\r
+import org.onap.aaf.authz.env.AuthzEnv;\r
+import org.onap.aaf.authz.env.AuthzTrans;\r
+import org.onap.aaf.authz.fs.*;\r
+import org.onap.aaf.cssa.rserv.CachingFileAccess;\r
+import org.powermock.api.mockito.PowerMockito;\r
+import org.powermock.modules.junit4.PowerMockRunner;\r
+\r
+import org.onap.aaf.inno.env.APIException;\r
+\r
+@RunWith(MockitoJUnitRunner.class)\r
+public class JU_FileServer {   \r
+       @Mock\r
+       AuthzEnv authzEnvMock;\r
+       AuthzEnv authzEnv = new AuthzEnv();\r
+       \r
+       @Before\r
+       public void setUp() throws APIException, IOException{\r
+\r
+       }\r
+       \r
+       @SuppressWarnings("static-access")\r
+       @Test\r
+       public void testMain() throws Exception{\r
+               \r
+               String[] args = null;\r
+               Properties props = new Properties();\r
+               ClassLoader classLoader = getClass().getClassLoader();\r
+               File file = new File(classLoader.getResource("FileServer.props").getFile());\r
+\r
+//PowerMockito.whenNew(Something.class).withArguments(argument).thenReturn(mockSomething);\r
+               //                      env.setLog4JNames("log4j.properties","authz","fs","audit","init",null);\r
+    // PowerMockito.whenNew(AuthzEnv.class).withArguments(props).thenReturn(authzEnvMock);\r
+   //  PowerMockito.doNothing().when(authzEnvMock.setLog4JNames(Matchers.anyString(), Matchers.anyString(), Matchers.anyString(), Matchers.anyString(), Matchers.anyString(), Matchers.anyString()));\r
+  // PowerMockito.when(new AuthzEnv(props)).thenReturn(authzEnvMock);\r
+               //PowerMockito.doNothing().when(authzEnv).setLog4JNames(Matchers.anyString(), Matchers.anyString(), Matchers.anyString(), Matchers.anyString(), Matchers.anyString(), Matchers.anyString());\r
+       //PowerMockito.doNothing().when(authzEnvMock).setLog4JNames(" "," "," "," "," "," ");\r
+\r
+               FileServer.main(args);\r
+               //assertTrue(true);\r
+               \r
+       }\r
+       \r
+}\r