aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc
diff options
context:
space:
mode:
Diffstat (limited to 'vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc')
-rw-r--r--vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceMetadataGet.java50
-rw-r--r--vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceToscaModelGet.java30
-rw-r--r--vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java22
3 files changed, 102 insertions, 0 deletions
diff --git a/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceMetadataGet.java b/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceMetadataGet.java
new file mode 100644
index 000000000..7ec6e0e2b
--- /dev/null
+++ b/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceMetadataGet.java
@@ -0,0 +1,50 @@
+package org.opencomp.simulator.presetGenerator.presets.sdc;
+
+import org.springframework.http.HttpMethod;
+
+/**
+ * Created by itzikliderman on 21/12/2017.
+ */
+public class PresetSDCGetServiceMetadataGet extends SdcPresetWithModelVersionId {
+
+ public PresetSDCGetServiceMetadataGet(String modelVersionId, String modelInvariantId, String zipFileName) {
+ super(modelVersionId);
+ this.modelInvariantId = modelInvariantId;
+ this.zipFileName = zipFileName;
+ }
+
+ private final String zipFileName;
+ private final String modelInvariantId;
+
+
+ @Override
+ public Object getResponseBody() {
+ return "{" +
+ " \"uuid\": \""+getModelVersionId()+"\"," +
+ " \"invariantUUID\": \""+getModelInvariantId()+"\"," +
+ " \"name\": \"action-data\"," +
+ " \"version\": \"1.0\"," +
+ " \"toscaModelURL\": \"./"+zipFileName+"\"," +
+ " \"category\": \"Mobility\"," +
+ " \"lifecycleState\": \"CERTIFIED\"," +
+ " \"lastUpdaterUserId\": \"rg276b\"," +
+ " \"lastUpdaterFullName\": null," +
+ " \"distributionStatus\": \"DISTRIBUTED\"," +
+ " \"artifacts\": null," +
+ " \"resources\": null" +
+ " }";
+ }
+
+ public HttpMethod getReqMethod() {
+ return HttpMethod.GET;
+ }
+
+ @Override
+ public String getReqPath() {
+ return super.getReqPath()+"/metadata";
+ }
+
+ public String getModelInvariantId() {
+ return modelInvariantId;
+ }
+}
diff --git a/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceToscaModelGet.java b/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceToscaModelGet.java
new file mode 100644
index 000000000..cb2276829
--- /dev/null
+++ b/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/PresetSDCGetServiceToscaModelGet.java
@@ -0,0 +1,30 @@
+package org.opencomp.simulator.presetGenerator.presets.sdc;
+
+import org.springframework.http.HttpMethod;
+
+/**
+ * Created by itzikliderman on 21/12/2017.
+ */
+public class PresetSDCGetServiceToscaModelGet extends SdcPresetWithModelVersionId {
+
+ private String file;
+
+ public PresetSDCGetServiceToscaModelGet(String modelVersionId, String file) {
+ super(modelVersionId);
+ this.file = file;
+ }
+
+ public HttpMethod getReqMethod() {
+ return HttpMethod.GET;
+ }
+
+ @Override
+ public String getReqPath() {
+ return super.getReqPath()+"/toscaModel";
+ }
+
+ @Override
+ public String getFile() {
+ return file;
+ }
+}
diff --git a/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java b/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java
new file mode 100644
index 000000000..e8fdfa2b9
--- /dev/null
+++ b/vid-automation/src/main/java/org/opencomp/simulator/presetGenerator/presets/sdc/SdcPresetWithModelVersionId.java
@@ -0,0 +1,22 @@
+package org.opencomp.simulator.presetGenerator.presets.sdc;
+
+import org.opencomp.simulator.presetGenerator.presets.BasePresets.BaseSDCPreset;
+
+public abstract class SdcPresetWithModelVersionId extends BaseSDCPreset {
+
+ public SdcPresetWithModelVersionId(String modelVersionId) {
+ this.modelVersionId = modelVersionId;
+ }
+
+ protected String modelVersionId;
+
+ public String getModelVersionId() {
+ return modelVersionId;
+ }
+
+ public String getReqPath() {
+ return getRootPath() + "/"+getModelVersionId();
+ }
+
+
+}