From bf74c24500acf037e24ff75008bbda83fe1be72b Mon Sep 17 00:00:00 2001 From: Ittay Stern Date: Tue, 29 Oct 2019 14:27:44 +0200 Subject: Test aai_get_service_instance_topology with vf-module placement data Issue-ID: VID-603 Change-Id: I2ce89cac91417ef4b60a3943da80f0ff03f865ad Signed-off-by: Ittay Stern --- .../presetGenerator/presets/aai/Placement.java | 46 +++++++++++++++++++++ .../presets/aai/PresetAAIGetVfModulesByVnf.java | 16 ++++++++ .../presets/aai/PresetAAIStandardQueryGet.java | 48 ++++------------------ 3 files changed, 71 insertions(+), 39 deletions(-) (limited to 'vid-automation/src/main/java/org/onap/simulator') diff --git a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/Placement.java b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/Placement.java index b665fc30f..3018f5f06 100644 --- a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/Placement.java +++ b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/Placement.java @@ -10,5 +10,51 @@ public class Placement { this.lcpRegionId = lcpRegionId; this.tenantId = tenantId; } + + public static class Util { + static String placementRelationship(String relatedTo, Placement placement) { + return "" + + "{" + + " \"related-to\": \"" + relatedTo + "\"," + + " \"relationship-label\": \"org.onap.relationships.inventory.Uses\"," + + " \"related-link\": " + relatedLink(placement) + "," + + " \"relationship-data\": [" + + " {" + + " \"relationship-key\": \"cloud-region.cloud-owner\"," + + " \"relationship-value\": \"" + placement.cloudOwner + "\"" + + " }," + + " {" + + " \"relationship-key\": \"cloud-region.cloud-region-id\"," + + " \"relationship-value\": \"" + placement.lcpRegionId + "\"" + + " }," + + " {" + + " \"relationship-key\": \"tenant.tenant-id\"," + + " \"relationship-value\": \"" + placement.tenantId + "\"" + + " }," + + " {" + + " \"relationship-key\": \"vserver.vserver-id\"," + + " \"relationship-value\": \"5eef9f6d-9933-4bc6-9a1a-862d61309437\"" + + " }" + + " ]," + + " \"related-to-property\": [" + + " {" + + " \"property-key\": \"vserver.vserver-name\"," + + " \"property-value\": \"zolson5bfapn01dns002\"" + + " }" + + " ]" + + "}"; + } + + private static String relatedLink(Placement placement) { + return "" + + "\"" + + "/aai/v12/cloud-infrastructure/cloud-regions/cloud-region/irma-aic/" + + placement.lcpRegionId + + "/tenants/tenant/" + + placement.tenantId + + "/vservers/vserver/5eef9f6d-9933-4bc6-9a1a-862d61309437" + + "\""; + } + } } diff --git a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIGetVfModulesByVnf.java b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIGetVfModulesByVnf.java index 798a02642..7a35abc12 100644 --- a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIGetVfModulesByVnf.java +++ b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIGetVfModulesByVnf.java @@ -5,9 +5,16 @@ import org.springframework.http.HttpMethod; public class PresetAAIGetVfModulesByVnf extends BaseAAIPreset { private final String vnfInstanceId; + private final Placement vfModule1Placement; public PresetAAIGetVfModulesByVnf(String vnfInstanceId) { this.vnfInstanceId = vnfInstanceId; + vfModule1Placement = null; + } + + public PresetAAIGetVfModulesByVnf(String vnfInstanceId, Placement vfModule2Placement) { + this.vnfInstanceId = vnfInstanceId; + this.vfModule1Placement = vfModule2Placement; } @Override @@ -20,6 +27,14 @@ public class PresetAAIGetVfModulesByVnf extends BaseAAIPreset { return getRootPath() + "/network/generic-vnfs/generic-vnf/" + this.vnfInstanceId + "/vf-modules"; } + private String placementRelationship(Placement placement) { + if (placement != null) { + return "," + Placement.Util.placementRelationship("vserver", placement); + } else { + return ""; + } + } + @Override public Object getResponseBody() { return "" + @@ -72,6 +87,7 @@ public class PresetAAIGetVfModulesByVnf extends BaseAAIPreset { " }" + " ]" + " }" + + placementRelationship(vfModule1Placement) + " ]" + " }" + " }" + diff --git a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIStandardQueryGet.java b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIStandardQueryGet.java index 642f941e8..7709a0abc 100644 --- a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIStandardQueryGet.java +++ b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIStandardQueryGet.java @@ -1,23 +1,22 @@ package org.onap.simulator.presetGenerator.presets.aai; +import static org.apache.commons.lang3.ObjectUtils.defaultIfNull; +import static org.apache.commons.text.StringEscapeUtils.escapeJson; +import static org.onap.simulator.presetGenerator.presets.aai.PresetAAIGetCloudOwnersByCloudRegionId.ATT_AIC; +import static org.onap.simulator.presetGenerator.presets.aai.PresetAAIGetCloudOwnersByCloudRegionId.hvf6; + import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableMultimap; import com.google.common.collect.Multimap; +import java.util.UUID; +import java.util.stream.Collectors; +import java.util.stream.Stream; import org.apache.commons.lang3.RandomStringUtils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.text.StrSubstitutor; import org.onap.simulator.presetGenerator.presets.BasePresets.BaseAAIPreset; import org.springframework.http.HttpMethod; -import java.util.UUID; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -import static org.apache.commons.lang3.ObjectUtils.defaultIfNull; -import static org.apache.commons.text.StringEscapeUtils.escapeJson; -import static org.onap.simulator.presetGenerator.presets.aai.PresetAAIGetCloudOwnersByCloudRegionId.ATT_AIC; -import static org.onap.simulator.presetGenerator.presets.aai.PresetAAIGetCloudOwnersByCloudRegionId.hvf6; - public class PresetAAIStandardQueryGet extends BaseAAIPreset { private final String instanceId; private final String instanceName; @@ -289,36 +288,7 @@ public class PresetAAIStandardQueryGet extends BaseAAIPreset { private String buildPlacementRelationship() { String relatedTo = StringUtils.equals(instanceType,"vf-module")? "vserver": "tenant"; - return "" + - " {" + - " \"related-to\": \"" + relatedTo + "\"," + - " \"relationship-label\": \"org.onap.relationships.inventory.Uses\"," + - " \"related-link\": \"/aai/v12/cloud-infrastructure/cloud-regions/cloud-region/irma-aic/" + this.placement.lcpRegionId + "/tenants/tenant/" + this.placement.tenantId+ "/vservers/vserver/5eef9f6d-9933-4bc6-9a1a-862d61309437\"," + - " \"relationship-data\": [" + - " {" + - " \"relationship-key\": \"cloud-region.cloud-owner\"," + - " \"relationship-value\": \""+ this.placement.cloudOwner+"\"" + - " }," + - " {" + - " \"relationship-key\": \"cloud-region.cloud-region-id\"," + - " \"relationship-value\": \"" + this.placement.lcpRegionId + "\"" + - " }," + - " {" + - " \"relationship-key\": \"tenant.tenant-id\"," + - " \"relationship-value\": \"" + this.placement.tenantId + "\"" + - " }," + - " {" + - " \"relationship-key\": \"vserver.vserver-id\"," + - " \"relationship-value\": \"5eef9f6d-9933-4bc6-9a1a-862d61309437\"" + - " }" + - " ]," + - " \"related-to-property\": [" + - " {" + - " \"property-key\": \"vserver.vserver-name\"," + - " \"property-value\": \"zolson5bfapn01dns002\"" + - " }" + - " ]" + - " }" ; + return Placement.Util.placementRelationship(relatedTo, placement); } @Override -- cgit 1.2.3-korg