aboutsummaryrefslogtreecommitdiffstats
path: root/data-migrator/src/test/java
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2022-02-03 11:20:27 -0500
committerDan Timoney <dtimoney@att.com>2022-02-08 08:20:14 -0500
commitab8492989092ed8fccdc7f063c9ddb982cce1a8a (patch)
tree863148249b222a15b05d96098e0023412a51f1e7 /data-migrator/src/test/java
parent2a546f93ac1c3686f099549fc88cd8bf2d39bd20 (diff)
Remove unused data-migrator code
Remove data-migrator code, which is no longer being actively used or supported, and which contains log4j vulnerability. Issue-ID: SDNC-1591 Signed-off-by: Dan Timoney <dtimoney@att.com> Change-Id: Id022338b0ab8643efa751296c94760387dc384e7 Former-commit-id: e7593db6f1a55c135a2c381a7d8d4ad3d666a839
Diffstat (limited to 'data-migrator/src/test/java')
-rw-r--r--data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/DataMigrationInternalTest.java92
-rw-r--r--data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/common/RestconfClientTest.java107
-rw-r--r--data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/datamigrator/PreloadInformationMigratorTest.java80
3 files changed, 0 insertions, 279 deletions
diff --git a/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/DataMigrationInternalTest.java b/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/DataMigrationInternalTest.java
deleted file mode 100644
index 18cd662f..00000000
--- a/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/DataMigrationInternalTest.java
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * ============LICENSE_START=======================================================
- * ONAP : SDNC
- * ================================================================================
- * Copyright 2019 AMDOCS
- *=================================================================================
- * 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.onap.sdnc.oam.datamigrator;
-
-import com.github.tomakehurst.wiremock.client.WireMock;
-import com.github.tomakehurst.wiremock.junit.WireMockRule;
-import org.junit.Rule;
-import org.junit.Test;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import java.io.ByteArrayOutputStream;
-import java.io.IOException;
-import java.io.PrintStream;
-import java.net.URISyntaxException;
-import java.nio.file.Files;
-import java.nio.file.Paths;
-
-import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
-import static com.github.tomakehurst.wiremock.client.WireMock.get;
-import static com.github.tomakehurst.wiremock.client.WireMock.put;
-import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
-import static org.hamcrest.MatcherAssert.assertThat;
-
-public class DataMigrationInternalTest {
-
- @Rule
- public WireMockRule source = new WireMockRule(8081);
- @Rule
- public WireMockRule target = new WireMockRule(8082);
-
- private static final Logger LOG = LoggerFactory.getLogger(DataMigrationInternal.class);
- DataMigrationInternal dataMigrationInternal = new DataMigrationInternal(LOG);
- private ClassLoader classLoader = getClass().getClassLoader();
- private String preloadVnfResponseJson = new String(Files.readAllBytes(Paths.get(classLoader.getResource("wiremock/preloadVnfResponse.json").toURI())));
- private String preloadInformationRequestJson = new String(Files.readAllBytes(Paths.get(classLoader.getResource("wiremock/preloadInformationRequest.json").toURI())));
-
- public DataMigrationInternalTest() throws IOException, URISyntaxException {
- }
-
- @Test
- public void runPositiveTest() {
- String [] args = {"-c","migration/props"};
- PrintStream oldOutputStream = System.out;
- final ByteArrayOutputStream myOut = new ByteArrayOutputStream();
- System.setOut(new PrintStream(myOut));
- source.stubFor(get(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-vnfs")).willReturn(
- aResponse()
- .withStatus(200)
- .withBody(preloadVnfResponseJson)));
- target.stubFor(put(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-information")).withRequestBody(WireMock.equalTo(preloadInformationRequestJson)).willReturn(
- aResponse()
- .withStatus(200)));
- dataMigrationInternal.run(args);
- String content = myOut.toString();
- assertThat("Migration failed", content.contains("MIGRATE operation completed Successfully."));
- System.setOut(oldOutputStream);
- }
-
- @Test
- public void runTestWithNoData() {
- String [] args = {"-c","migration/props"};
- PrintStream oldOutputStream = System.out;
- final ByteArrayOutputStream myOut = new ByteArrayOutputStream();
- System.setOut(new PrintStream(myOut));
- source.stubFor(get(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-vnfs"))
- .willReturn(aResponse().withStatus(404)));
- target.stubFor(put(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-information"))
- .withRequestBody(WireMock.equalTo(preloadInformationRequestJson)).willReturn(aResponse().withStatus(200)));
- dataMigrationInternal.run(args);
- String content = myOut.toString();
- assertThat("Migration failed", content.contains("MIGRATE operation completed Successfully."));
- System.setOut(oldOutputStream);
- }
-} \ No newline at end of file
diff --git a/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/common/RestconfClientTest.java b/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/common/RestconfClientTest.java
deleted file mode 100644
index bbffd608..00000000
--- a/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/common/RestconfClientTest.java
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * ============LICENSE_START=======================================================
- * ONAP : SDNC
- * ================================================================================
- * Copyright 2019 AMDOCS
- *=================================================================================
- * 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.onap.sdnc.oam.datamigrator.common;
-
-import com.github.tomakehurst.wiremock.client.WireMock;
-import com.github.tomakehurst.wiremock.junit.WireMockRule;
-import com.google.gson.JsonObject;
-import com.google.gson.JsonParser;
-import org.junit.Rule;
-import org.junit.Test;
-import org.onap.sdnc.oam.datamigrator.exceptions.RestconfException;
-
-import java.io.IOException;
-import java.net.URISyntaxException;
-import java.nio.file.Files;
-import java.nio.file.Paths;
-
-import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
-import static com.github.tomakehurst.wiremock.client.WireMock.get;
-import static com.github.tomakehurst.wiremock.client.WireMock.put;
-import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNull;
-import static org.junit.Assert.assertTrue;
-
-public class RestconfClientTest {
-
- @Rule
- public WireMockRule service = new WireMockRule(8081);
- private RestconfClient restconfClient = new RestconfClient("http://localhost:8081","admin","Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U");
- private ClassLoader classLoader = getClass().getClassLoader();
- private String preloadVnfResponseJson = new String(Files.readAllBytes(Paths.get(classLoader.getResource("wiremock/preloadVnfResponse.json").toURI())));
- private String preloadInformationRequestJson = new String(Files.readAllBytes(Paths.get(classLoader.getResource("wiremock/preloadInformationRequest.json").toURI())));
-
-
- JsonObject expectedJsonObject = new JsonParser().parse(preloadVnfResponseJson).getAsJsonObject();
-
- public RestconfClientTest() throws IOException, URISyntaxException {
- }
-
- @Test
- public void getPositiveTest() {
- service.stubFor(get(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-vnfs"))
- .willReturn(aResponse().withStatus(200).withBody(preloadVnfResponseJson)));
- JsonObject actualResponse=null;
- try {
- actualResponse = restconfClient.get("GENERIC-RESOURCE-API:preload-vnfs");
- } catch (RestconfException e) {
- e.printStackTrace();
- }
- assertEquals(expectedJsonObject,actualResponse);
- }
-
- @Test
- public void getNegativeTest() {
- service.stubFor(get(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-vnfs"))
- .willReturn(aResponse().withStatus(404)));
- JsonObject actualResponse=null;
- try {
- actualResponse = restconfClient.get("GENERIC-RESOURCE-API:preload-vnfs");
- } catch (RestconfException e) {
- e.printStackTrace();
- }
- assertNull(actualResponse);
- }
-
- @Test
- public void putPositiveTest() {
- service.stubFor(put(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-information"))
- .withRequestBody(WireMock.equalTo(preloadInformationRequestJson)).willReturn(aResponse().withStatus(200)));
- Exception ex = null;
- try {
- restconfClient.put("GENERIC-RESOURCE-API:preload-information", preloadInformationRequestJson);
- } catch (RestconfException e) {
- ex =e;
- }
- assertNull(ex);
- }
-
- @Test
- public void putNegativeTest() {
- service.stubFor(put(urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-information"))
- .withRequestBody(WireMock.equalTo(preloadInformationRequestJson)).willReturn(aResponse().withStatus(500)));
- try {
- restconfClient.put("GENERIC-RESOURCE-API:preload-information", preloadInformationRequestJson);
- } catch (RestconfException e) {
- assertTrue(e.getErrorMessage().contains("Error during restconf operation: PUT."));
- }
- }
-} \ No newline at end of file
diff --git a/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/datamigrator/PreloadInformationMigratorTest.java b/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/datamigrator/PreloadInformationMigratorTest.java
deleted file mode 100644
index 7972b7ab..00000000
--- a/data-migrator/src/test/java/org/onap/sdnc/oam/datamigrator/datamigrator/PreloadInformationMigratorTest.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * ============LICENSE_START=======================================================
- * ONAP : SDNC
- * ================================================================================
- * Copyright 2019 AMDOCS
- *=================================================================================
- * 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.onap.sdnc.oam.datamigrator.datamigrator;
-
-import com.github.tomakehurst.wiremock.client.WireMock;
-import com.github.tomakehurst.wiremock.junit.WireMockRule;
-import org.junit.Rule;
-import org.junit.Test;
-import org.onap.sdnc.oam.datamigrator.common.Operation;
-import org.onap.sdnc.oam.datamigrator.common.RestconfClient;
-import org.onap.sdnc.oam.datamigrator.migrators.PreloadInformationMigrator;
-
-import java.io.IOException;
-import java.net.URISyntaxException;
-import java.nio.file.Files;
-import java.nio.file.Paths;
-
-public class PreloadInformationMigratorTest {
-
- @Rule
- public WireMockRule service1 = new WireMockRule(8081);
-
- @Rule
- public WireMockRule service2 = new WireMockRule(8082);
- PreloadInformationMigrator migrator = new PreloadInformationMigrator();
- private ClassLoader classLoader = getClass().getClassLoader();
- private String preloadVnfResponseJson = new String(Files.readAllBytes(Paths.get(classLoader.getResource("wiremock/preloadVnfResponse.json").toURI())));
- private String preloadInformationRequestJson = new String(Files.readAllBytes(Paths.get(classLoader.getResource("wiremock/preloadInformationRequest.json").toURI())));
-
- public PreloadInformationMigratorTest() throws IOException, URISyntaxException {
- }
-
- @Test
- public void testRun (){
- service1.stubFor(WireMock.get(WireMock.urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-vnfs")).willReturn(
- WireMock.aResponse()
- .withStatus(200)
- .withBody(preloadVnfResponseJson)));
- service2.stubFor(WireMock.put(WireMock.urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-information")).withRequestBody(WireMock.equalTo(preloadInformationRequestJson)).willReturn(
- WireMock.aResponse()
- .withStatus(200)));
- RestconfClient sourceClient = new RestconfClient("http://localhost:8081","admin","Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U");
- migrator.setSourceClient(sourceClient);
- RestconfClient targetClient = new RestconfClient("http://localhost:8082","admin","Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U");
- migrator.setTargetClient(targetClient);
- migrator.run(Operation.MIGRATE);
- }
-
- @Test
- public void testRunNoData (){
- service1.stubFor(WireMock.get(WireMock.urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-vnfs")).willReturn(
- WireMock.aResponse()
- .withStatus(404)));
- service2.stubFor(WireMock.put(WireMock.urlEqualTo("/restconf/config/GENERIC-RESOURCE-API:preload-information")).withRequestBody(WireMock.equalTo(preloadInformationRequestJson)).willReturn(
- WireMock.aResponse()
- .withStatus(200)));
- RestconfClient sourceClient = new RestconfClient("http://localhost:8081","admin","Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U");
- migrator.setSourceClient(sourceClient);
- RestconfClient targetClient = new RestconfClient("http://localhost:8082","admin","Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U");
- migrator.setTargetClient(targetClient);
- migrator.run(Operation.MIGRATE);
- }
-}