From c5c60bfb5889bfe63e310448d863192dd60078c5 Mon Sep 17 00:00:00 2001 From: sebdet Date: Tue, 25 Aug 2020 12:31:39 +0200 Subject: Add sdc startup in IT Remove main method and move test suites for backend in a specific folder Issue-ID: SDC-3232 Signed-off-by: sebdet Change-Id: Ic38534f5b5105c56fb5fe3124431c8146f9200d0 --- .../ci/tests/execute/devCI/ArtifactFromCsar.java | 11 - .../ci/tests/utils/rest/EcompUserRestUtils.java | 29 --- .../src/test/resources/ci/conf/attsdc.yaml | 2 +- .../test/resources/ci/testSuites/CRUDArtifacts.xml | 42 ---- .../resources/ci/testSuites/ExternalApiSanity.xml | 68 ------ .../resources/ci/testSuites/SearchExternalAPI.xml | 23 --- .../src/test/resources/ci/testSuites/artifacts.xml | 11 - .../ci/testSuites/backend/CRUDArtifacts.xml | 42 ++++ .../ci/testSuites/backend/ExternalApiSanity.xml | 68 ++++++ .../ci/testSuites/backend/SearchExternalAPI.xml | 23 +++ .../resources/ci/testSuites/backend/artifacts.xml | 11 + .../resources/ci/testSuites/backend/cap_req.xml | 10 + .../resources/ci/testSuites/backend/category.xml | 10 + .../resources/ci/testSuites/backend/ciFull.xml | 97 +++++++++ .../ci/testSuites/backend/externalAPIs.xml | 33 +++ .../resources/ci/testSuites/backend/general.xml | 9 + .../resources/ci/testSuites/backend/imports.xml | 9 + .../resources/ci/testSuites/backend/normatives.xml | 25 +++ .../ci/testSuites/backend/onapApiSanity.xml | 11 + .../test/resources/ci/testSuites/backend/pass.xml | 18 ++ .../resources/ci/testSuites/backend/product.xml | 12 ++ .../ci/testSuites/backend/productAPIs.xml | 15 ++ .../resources/ci/testSuites/backend/property.xml | 10 + .../resources/ci/testSuites/backend/resource.xml | 123 +++++++++++ .../resources/ci/testSuites/backend/sanity.xml | 228 +++++++++++++++++++++ .../resources/ci/testSuites/backend/service.xml | 18 ++ .../ci/testSuites/backend/testngLifeCycle.xml | 9 + .../test/resources/ci/testSuites/backend/user.xml | 9 + .../src/test/resources/ci/testSuites/cap_req.xml | 10 - .../src/test/resources/ci/testSuites/category.xml | 10 - .../src/test/resources/ci/testSuites/ciFull.xml | 97 --------- .../test/resources/ci/testSuites/externalAPIs.xml | 33 --- .../src/test/resources/ci/testSuites/general.xml | 9 - .../src/test/resources/ci/testSuites/imports.xml | 9 - .../test/resources/ci/testSuites/normatives.xml | 25 --- .../test/resources/ci/testSuites/onapApiSanity.xml | 11 - .../src/test/resources/ci/testSuites/pass.xml | 18 -- .../src/test/resources/ci/testSuites/product.xml | 12 -- .../test/resources/ci/testSuites/productAPIs.xml | 15 -- .../src/test/resources/ci/testSuites/property.xml | 10 - .../src/test/resources/ci/testSuites/resource.xml | 123 ----------- .../src/test/resources/ci/testSuites/sanity.xml | 228 --------------------- .../src/test/resources/ci/testSuites/service.xml | 18 -- .../resources/ci/testSuites/testngLifeCycle.xml | 9 - .../src/test/resources/ci/testSuites/user.xml | 9 - .../src/test/resources/integration-test.json | 104 ---------- 46 files changed, 791 insertions(+), 935 deletions(-) delete mode 100644 integration-tests/src/test/resources/ci/testSuites/CRUDArtifacts.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/ExternalApiSanity.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/SearchExternalAPI.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/artifacts.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/CRUDArtifacts.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/ExternalApiSanity.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/SearchExternalAPI.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/artifacts.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/cap_req.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/category.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/ciFull.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/externalAPIs.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/general.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/imports.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/normatives.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/pass.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/product.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/productAPIs.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/property.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/resource.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/sanity.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/service.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/testngLifeCycle.xml create mode 100644 integration-tests/src/test/resources/ci/testSuites/backend/user.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/cap_req.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/category.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/ciFull.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/externalAPIs.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/general.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/imports.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/normatives.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/onapApiSanity.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/pass.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/product.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/productAPIs.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/property.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/resource.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/sanity.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/service.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/testngLifeCycle.xml delete mode 100644 integration-tests/src/test/resources/ci/testSuites/user.xml delete mode 100644 integration-tests/src/test/resources/integration-test.json (limited to 'integration-tests/src') diff --git a/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/execute/devCI/ArtifactFromCsar.java b/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/execute/devCI/ArtifactFromCsar.java index 4d5847cbb6..84b34d16f7 100644 --- a/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/execute/devCI/ArtifactFromCsar.java +++ b/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/execute/devCI/ArtifactFromCsar.java @@ -42,18 +42,7 @@ import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; public class ArtifactFromCsar { - - public static void main(String[] args) throws Exception { - String zipFile = "C:\\Users\\rp955r\\Documents\\InTesting\\resource-CivfonboardedFdnt2f792348-csar.csar"; - -// Map combinedMap = combineHeatArtifacstWithFolderArtifacsToMap(zipFile); - - Map vfcArtifacts = ArtifactFromCsar.getVFCArtifacts(zipFile); - - System.out.println("1234o"); - } - public static Map combineHeatArtifacstWithFolderArtifacsToMap(String pathToCsar) throws Exception { return combineHeatArtifacstWithFolderArtifacsToMap(pathToCsar, "output"); } diff --git a/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/utils/rest/EcompUserRestUtils.java b/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/utils/rest/EcompUserRestUtils.java index 52f6e12880..133b4b5403 100644 --- a/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/utils/rest/EcompUserRestUtils.java +++ b/integration-tests/src/test/java/org/onap/sdc/backend/ci/tests/utils/rest/EcompUserRestUtils.java @@ -215,33 +215,4 @@ public class EcompUserRestUtils extends BaseRestUtils { return sendGetUserRolesRequest; } - - // TODO !!!!!!!!!!!!!! - /* - * Ask Eli if implementation of users is needed DELETE ECOMP USER - */ - - /* - * public static void main(String[] args) { EcompUser ecompUser = new - * EcompUser(); ecompUser.setFirstName("Test"); - * ecompUser.setLastName("Testovich"); - * ecompUser.setActive(true); - * - * EcompRole roleToUpdate = new EcompRole(); roleToUpdate.setId(new - * Long(6)); roleToUpdate.setName("PRODUCT_STRATEGIST"); List - * listOfRoles = new LinkedList<>(); listOfRoles.add(roleToUpdate); - * - * try { - * System.out.println("\n-----------------------------\n Testing pushUser"); - * System.out.println(pushUser(ecompUser)); - * System.out.println("\n-----------------------------\n Testing editUser"); - * System.out.println("\n-----------------------------\n Testing getUser"); - * // System.out.println(getUser(ecompUser.getLoginId())); System.out. - * println("\n-----------------------------\n Testing getAllUsers"); // - * System.out.println(getAllUsers()); System.out. - * println("\n-----------------------------\n Testing getAllAvailableRoles" - * ); // System.out.println(getAllAvailableRoles().toString()); System.out. - * println("\n-----------------------------\n Testing pushUserRoles"); - * TODO Auto-generated catch block e.printStackTrace(); } } - */ } diff --git a/integration-tests/src/test/resources/ci/conf/attsdc.yaml b/integration-tests/src/test/resources/ci/conf/attsdc.yaml index 29357b28b2..21dbe64d14 100644 --- a/integration-tests/src/test/resources/ci/conf/attsdc.yaml +++ b/integration-tests/src/test/resources/ci/conf/attsdc.yaml @@ -26,7 +26,7 @@ configurationFile: ../catalog-be/src/main/resources/config/configuration.yaml importTypesConfigDir: src/test/resources/CI/importTypesTest -janusGraphPropertiesFile: src/main/resources/ci/conf/janusgraph.properties +janusGraphPropertiesFile: src/test/resources/ci/conf/janusgraph.properties cassandraHost: 127.0.0.1 cassandraAuthenticate: false cassandraUsername: koko diff --git a/integration-tests/src/test/resources/ci/testSuites/CRUDArtifacts.xml b/integration-tests/src/test/resources/ci/testSuites/CRUDArtifacts.xml deleted file mode 100644 index 0306e469ea..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/CRUDArtifacts.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/ExternalApiSanity.xml b/integration-tests/src/test/resources/ci/testSuites/ExternalApiSanity.xml deleted file mode 100644 index b17a8e69a0..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/ExternalApiSanity.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/SearchExternalAPI.xml b/integration-tests/src/test/resources/ci/testSuites/SearchExternalAPI.xml deleted file mode 100644 index b401c281bf..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/SearchExternalAPI.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/artifacts.xml b/integration-tests/src/test/resources/ci/testSuites/artifacts.xml deleted file mode 100644 index 1e27b81c66..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/artifacts.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/CRUDArtifacts.xml b/integration-tests/src/test/resources/ci/testSuites/backend/CRUDArtifacts.xml new file mode 100644 index 0000000000..0306e469ea --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/CRUDArtifacts.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/ExternalApiSanity.xml b/integration-tests/src/test/resources/ci/testSuites/backend/ExternalApiSanity.xml new file mode 100644 index 0000000000..b17a8e69a0 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/ExternalApiSanity.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/SearchExternalAPI.xml b/integration-tests/src/test/resources/ci/testSuites/backend/SearchExternalAPI.xml new file mode 100644 index 0000000000..b401c281bf --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/SearchExternalAPI.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/artifacts.xml b/integration-tests/src/test/resources/ci/testSuites/backend/artifacts.xml new file mode 100644 index 0000000000..1e27b81c66 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/artifacts.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/cap_req.xml b/integration-tests/src/test/resources/ci/testSuites/backend/cap_req.xml new file mode 100644 index 0000000000..9b1c6e54d3 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/cap_req.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/category.xml b/integration-tests/src/test/resources/ci/testSuites/backend/category.xml new file mode 100644 index 0000000000..ef2c26fa5f --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/category.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/ciFull.xml b/integration-tests/src/test/resources/ci/testSuites/backend/ciFull.xml new file mode 100644 index 0000000000..963c568a8f --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/ciFull.xml @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/externalAPIs.xml b/integration-tests/src/test/resources/ci/testSuites/backend/externalAPIs.xml new file mode 100644 index 0000000000..637ec3e4fa --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/externalAPIs.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/general.xml b/integration-tests/src/test/resources/ci/testSuites/backend/general.xml new file mode 100644 index 0000000000..9ee63871bf --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/general.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/imports.xml b/integration-tests/src/test/resources/ci/testSuites/backend/imports.xml new file mode 100644 index 0000000000..56d9010383 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/imports.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/normatives.xml b/integration-tests/src/test/resources/ci/testSuites/backend/normatives.xml new file mode 100644 index 0000000000..8e633e2bac --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/normatives.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml b/integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml new file mode 100644 index 0000000000..9f189107a5 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/pass.xml b/integration-tests/src/test/resources/ci/testSuites/backend/pass.xml new file mode 100644 index 0000000000..00df382cef --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/pass.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/product.xml b/integration-tests/src/test/resources/ci/testSuites/backend/product.xml new file mode 100644 index 0000000000..559fc54514 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/product.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/productAPIs.xml b/integration-tests/src/test/resources/ci/testSuites/backend/productAPIs.xml new file mode 100644 index 0000000000..bd5f06da15 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/productAPIs.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/property.xml b/integration-tests/src/test/resources/ci/testSuites/backend/property.xml new file mode 100644 index 0000000000..cb8875ac64 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/property.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/resource.xml b/integration-tests/src/test/resources/ci/testSuites/backend/resource.xml new file mode 100644 index 0000000000..c2dd49011c --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/resource.xml @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/sanity.xml b/integration-tests/src/test/resources/ci/testSuites/backend/sanity.xml new file mode 100644 index 0000000000..09323f2ea2 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/sanity.xml @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/service.xml b/integration-tests/src/test/resources/ci/testSuites/backend/service.xml new file mode 100644 index 0000000000..05300baf4b --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/service.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/testngLifeCycle.xml b/integration-tests/src/test/resources/ci/testSuites/backend/testngLifeCycle.xml new file mode 100644 index 0000000000..9ae3cfda21 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/testngLifeCycle.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/user.xml b/integration-tests/src/test/resources/ci/testSuites/backend/user.xml new file mode 100644 index 0000000000..ddd90b1aa8 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/backend/user.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/integration-tests/src/test/resources/ci/testSuites/cap_req.xml b/integration-tests/src/test/resources/ci/testSuites/cap_req.xml deleted file mode 100644 index 9b1c6e54d3..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/cap_req.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/category.xml b/integration-tests/src/test/resources/ci/testSuites/category.xml deleted file mode 100644 index ef2c26fa5f..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/category.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/ciFull.xml b/integration-tests/src/test/resources/ci/testSuites/ciFull.xml deleted file mode 100644 index 963c568a8f..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/ciFull.xml +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/externalAPIs.xml b/integration-tests/src/test/resources/ci/testSuites/externalAPIs.xml deleted file mode 100644 index 637ec3e4fa..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/externalAPIs.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/general.xml b/integration-tests/src/test/resources/ci/testSuites/general.xml deleted file mode 100644 index 9ee63871bf..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/general.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/imports.xml b/integration-tests/src/test/resources/ci/testSuites/imports.xml deleted file mode 100644 index 56d9010383..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/imports.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/normatives.xml b/integration-tests/src/test/resources/ci/testSuites/normatives.xml deleted file mode 100644 index 8e633e2bac..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/normatives.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/onapApiSanity.xml b/integration-tests/src/test/resources/ci/testSuites/onapApiSanity.xml deleted file mode 100644 index 9f189107a5..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/onapApiSanity.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/pass.xml b/integration-tests/src/test/resources/ci/testSuites/pass.xml deleted file mode 100644 index 00df382cef..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/pass.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/product.xml b/integration-tests/src/test/resources/ci/testSuites/product.xml deleted file mode 100644 index 559fc54514..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/product.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/productAPIs.xml b/integration-tests/src/test/resources/ci/testSuites/productAPIs.xml deleted file mode 100644 index bd5f06da15..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/productAPIs.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/property.xml b/integration-tests/src/test/resources/ci/testSuites/property.xml deleted file mode 100644 index cb8875ac64..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/property.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/resource.xml b/integration-tests/src/test/resources/ci/testSuites/resource.xml deleted file mode 100644 index c2dd49011c..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/resource.xml +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/sanity.xml b/integration-tests/src/test/resources/ci/testSuites/sanity.xml deleted file mode 100644 index 09323f2ea2..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/sanity.xml +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/service.xml b/integration-tests/src/test/resources/ci/testSuites/service.xml deleted file mode 100644 index 05300baf4b..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/service.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/testngLifeCycle.xml b/integration-tests/src/test/resources/ci/testSuites/testngLifeCycle.xml deleted file mode 100644 index 9ae3cfda21..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/testngLifeCycle.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/integration-tests/src/test/resources/ci/testSuites/user.xml b/integration-tests/src/test/resources/ci/testSuites/user.xml deleted file mode 100644 index ddd90b1aa8..0000000000 --- a/integration-tests/src/test/resources/ci/testSuites/user.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/integration-tests/src/test/resources/integration-test.json b/integration-tests/src/test/resources/integration-test.json deleted file mode 100644 index dec9c2f042..0000000000 --- a/integration-tests/src/test/resources/integration-test.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "name": "${it.env.name}", - "description": "OpenSource-${it.env.name}", - "json_class": "Chef::Environment", - "chef_type": "environment", - - "default_attributes": { - "disableHttp": false, - "CS_VIP": "sdc-cs", - "BE_VIP": "sdc-BE", - "ONBOARDING_BE_VIP": "sdc-onboard-BE", - "FE_VIP": "sdc-FE", - "DCAE_BE_VIP": "localhost", - "DCAE_FE_VIP": "localhost", - "DCAE_TOSCA_LAB_VIP": "localhost", - "interfaces": { - "application": "eth0", - "private": "eth1" - }, - "ECompP": { - "ecomp_rest_url": "http://portal.api.simpledemo.onap.org:8989/ONAPPORTAL/auxapi", - "ecomp_redirect_url": "http://portal.api.simpledemo.openecomp.org:8989/ECOMPPORTAL/login.htm", - "cipher_key": "AGLDdG4D04BKm2IxIWEr8o==", - "portal_user": "Ipwxi2oLvDxctMA1royaRw1W0jhucLx+grHzci3ePIA=", - "portal_pass": "j85yNhyIs7zKYbR1VlwEfNhS6b7Om4l0Gx5O8931sCI=", - "portal_app_name": "Ipwxi2oLvDxctMA1royaRw1W0jhucLx+grHzci3ePIA=" - }, - "UEB": { - "PublicKey": "iPIxkpAMI8qTcQj8", - "SecretKey": "Ehq3WyT4bkif4zwgEbvshGal", - "fqdn": ["10.0.11.1", "10.0.11.1"] - }, - "Nodes": { - "CS": [ - "sdc-cs" - ], - "BE": "sdc-BE", - "ONBOARDING_BE": "sdc-onboard-BE", - "FE": "sdc-FE" - }, - "VnfRepo": { - "vnfRepoPort": "8702", - "vnfRepoHost": "10.0.14.1" - } - }, - "override_attributes": { - "FE": { - "http_port": "8181", - "https_port": "9443", - "domain_name": "sdc" - }, - "BE": { - "http_port": "8080", - "https_port": "8443", - "domain_name": "sdc" - }, - "ONBOARDING_BE": { - "http_port": "8081", - "https_port": "8445", - "domain_name": "sdc", - "catalog_notification_url": "%s://%s:%s/sdc2/rest/v1/catalog/notif/vsp/" - }, - "cassandra": { - "cassandra_port": 9042, - "concurrent_reads": "32", - "num_tokens": "256", - "data_dir": "/var/lib/cassandra/data", - "hinted_handoff_enabled": "true", - "cassandra_user": "${it.sdc.user}", - "cassandra_password": "${it.sdc.password}", - "concurrent_writes": "32", - "cluster_name": "${it.sdc.cluster.name}", - "datacenter_name": "${it.sdc.cluster.name}", - "multithreaded_compaction": "false", - "cache_dir": "/var/lib/cassandra/saved_caches", - "log_file": "/var/lib/cassandra/log/system.log", - "phi_convict_threshold": "8", - "commitlog_dir": "/var/lib/cassandra/commitlog", - "socket_read_timeout": "40000", - "socket_connect_timeout": "40000", - "janusgraph_connection_timeout": "20000", - "replication_factor": "1" - }, - "DMAAP": { - "consumer": { - "host": "dcae-mrtr.com:3905", - "topic": "operationalEnvironmentEvent", - "serviceName": "dcae-mrtr.com:3905/events", - "environment": "${it.env.name}", - "partner": "BOT_R", - "username": "user1@sdc.com", - "password": "password==" - }, - "producer": { - "host": "olsd004.com:3905", - "topic": "SDC-FACADE-NOTIF-v1 ", - "serviceName": "dmaap.com:3905/events", - "environment": "${it.env.name}", - "username": "user1@sdc.com", - "password": "password==" - } - } - } -} -- cgit 1.2.3-korg