AT&T 1712 and 1802 release code
[so.git] / common / src / test / java / org / openecomp / mso / client / aai / AAIPServerTest.java
@@ -1,65 +1,57 @@
-/*-\r
- * ============LICENSE_START=======================================================\r
- * ONAP - SO\r
- * ================================================================================\r
- * Copyright (C) 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
-\r
-package org.openecomp.mso.client.aai;\r
-\r
-import java.io.File;\r
-import java.io.IOException;\r
-import java.security.NoSuchAlgorithmException;\r
-import java.util.List;\r
-import java.util.UUID;\r
-\r
-import org.junit.BeforeClass;\r
-import org.junit.Ignore;\r
-import org.junit.Test;\r
-import org.onap.aai.domain.yang.Pserver;\r
-import static org.junit.Assert.assertEquals;\r
-import com.fasterxml.jackson.core.JsonParseException;\r
-import com.fasterxml.jackson.databind.JsonMappingException;\r
-public class AAIPServerTest {\r
-\r
-       @BeforeClass\r
-       public static void setUp() {\r
-               System.setProperty("mso.config.path", "src/test/resources");\r
-               System.setProperty("javax.net.ssl.keyStore", "C:/etc/ecomp/mso/config/msoClientKeyStore.jks");\r
-               System.setProperty("javax.net.ssl.keyStorePassword", "mso4you");\r
-               System.setProperty("javax.net.ssl.trustStore", "C:/etc/ecomp/mso/config/msoTrustStore.jks");\r
-               System.setProperty("javax.net.ssl.trustStorePassword", "mso_Domain2.0_4you");\r
-       }\r
-       \r
-       @Test\r
-       @Ignore // IGNORED FOR 1710 MERGE TO ONAP\r
-       public void pserverTest() throws JsonParseException, JsonMappingException, IOException, NoSuchAlgorithmException {\r
-               AAIRestClientImpl client = new AAIRestClientImpl();\r
-               File file = new File("src/test/resources/__files/AAI/pserver.json");\r
-               List<Pserver> list = client.getListOfPservers(file);\r
-               \r
-               assertEquals("", list.get(0).getHostname(), "test");\r
-       }\r
-       \r
-       @Test\r
-       @Ignore // IGNORED FOR 1710 MERGE TO ONAP\r
-       public void pserverActualTest() throws JsonParseException, JsonMappingException, IOException, NoSuchAlgorithmException {\r
-               AAIRestClientImpl client = new AAIRestClientImpl();\r
-               List<Pserver> list = client.getPhysicalServerByVnfId("d946afed-8ebe-4c5d-9665-54fcc043b8e7", UUID.randomUUID().toString());\r
-               assertEquals("", list.size(), 0);\r
-       }\r
-\r
-}\r
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP - SO
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.openecomp.mso.client.aai;
+
+import static org.junit.Assert.assertEquals;
+
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.security.NoSuchAlgorithmException;
+import java.util.List;
+import java.util.UUID;
+
+import org.junit.Ignore;
+import org.junit.Test;
+import org.onap.aai.domain.yang.Pserver;
+
+import com.fasterxml.jackson.core.JsonParseException;
+import com.fasterxml.jackson.databind.JsonMappingException;
+public class AAIPServerTest {
+
+       @Test
+       public void pserverTest() throws JsonParseException, JsonMappingException, IOException, NoSuchAlgorithmException {
+               AAIRestClientImpl client = new AAIRestClientImpl();
+               String json = new String(Files.readAllBytes(Paths.get("src/test/resources/__files/aai/pserver.json")));
+               List<Pserver> list = client.getListOfPservers(json);
+               
+               assertEquals("", list.get(0).getHostname(), "test");
+       }
+       
+       @Test
+       @Ignore // IGNORED FOR 1710 MERGE TO ONAP
+       public void pserverActualTest() throws JsonParseException, JsonMappingException, IOException, NoSuchAlgorithmException {
+               AAIRestClientImpl client = new AAIRestClientImpl();
+               List<Pserver> list = client.getPhysicalServerByVnfId("d946afed-8ebe-4c5d-9665-54fcc043b8e7", UUID.randomUUID().toString());
+               assertEquals("", list.size(), 0);
+       }
+
+}