aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationComposition.java24
-rw-r--r--models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionElement.java12
-rw-r--r--models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionInfo.java3
-rw-r--r--models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionOrderedState.java47
-rw-r--r--models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionState.java67
-rw-r--r--models/src/main/java/org/onap/policy/clamp/models/acm/concepts/ParticipantDeploy.java5
-rw-r--r--models/src/main/java/org/onap/policy/clamp/models/acm/messages/dmaap/participant/AutomationCompositionStateChange.java7
-rw-r--r--participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/AutomationCompositionHandler.java1
-rw-r--r--participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandler.java28
-rw-r--r--participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/DummyAcElementListener.java40
-rw-r--r--participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandlerTest.java24
-rw-r--r--testsuites/performance/src/main/resources/testplans/performance.jmx8
-rwxr-xr-xtestsuites/run-s3p-test.sh49
-rw-r--r--testsuites/stability/src/main/resources/testplans/stability.jmx8
14 files changed, 150 insertions, 173 deletions
diff --git a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationComposition.java b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationComposition.java
index 363668619..dc8a39b34 100644
--- a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationComposition.java
+++ b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationComposition.java
@@ -26,7 +26,6 @@ import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.NonNull;
-import org.apache.commons.collections4.MapUtils;
import org.onap.policy.models.base.PfUtils;
import org.onap.policy.models.tosca.authorative.concepts.ToscaEntity;
@@ -44,12 +43,6 @@ public class AutomationComposition extends ToscaEntity implements Comparable<Aut
private UUID compositionId;
@NonNull
- private AutomationCompositionState state = AutomationCompositionState.UNINITIALISED;
-
- @NonNull
- private AutomationCompositionOrderedState orderedState = AutomationCompositionOrderedState.UNINITIALISED;
-
- @NonNull
private DeployState deployState = DeployState.UNDEPLOYED;
@NonNull
@@ -66,8 +59,6 @@ public class AutomationComposition extends ToscaEntity implements Comparable<Aut
super(otherAutomationComposition);
this.instanceId = otherAutomationComposition.instanceId;
this.compositionId = otherAutomationComposition.compositionId;
- this.state = otherAutomationComposition.state;
- this.orderedState = otherAutomationComposition.orderedState;
this.deployState = otherAutomationComposition.deployState;
this.lockState = otherAutomationComposition.lockState;
this.elements = PfUtils.mapMap(otherAutomationComposition.elements, AutomationCompositionElement::new);
@@ -77,19 +68,4 @@ public class AutomationComposition extends ToscaEntity implements Comparable<Aut
public int compareTo(final AutomationComposition other) {
return compareNameVersion(this, other);
}
-
- /**
- * Set the ordered state on the automation composition and on all its automation composition elements.
- *
- * @param orderedState the state we want the automation composition to transition to
- */
- public void setCascadedOrderedState(final AutomationCompositionOrderedState orderedState) {
- this.orderedState = orderedState;
-
- if (MapUtils.isEmpty(elements)) {
- return;
- }
-
- elements.values().forEach(element -> element.setOrderedState(orderedState));
- }
}
diff --git a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionElement.java b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionElement.java
index ab234f604..018031624 100644
--- a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionElement.java
+++ b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionElement.java
@@ -31,7 +31,6 @@ import lombok.ToString;
import org.onap.policy.models.base.PfConceptKey;
import org.onap.policy.models.base.PfUtils;
import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
-import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
/**
* Class to represent a automation composition instance.
@@ -50,19 +49,11 @@ public class AutomationCompositionElement {
private UUID participantId = UUID.randomUUID();
@NonNull
- private AutomationCompositionState state = AutomationCompositionState.UNINITIALISED;
-
- @NonNull
private DeployState deployState = DeployState.UNDEPLOYED;
@NonNull
private LockState lockState = LockState.LOCKED;
- @NonNull
- private AutomationCompositionOrderedState orderedState = AutomationCompositionOrderedState.UNINITIALISED;
-
- private ToscaServiceTemplate toscaServiceTemplateFragment;
-
private String description;
// A map indexed by the property name. Each map entry is the serialized value of the property,
@@ -78,9 +69,6 @@ public class AutomationCompositionElement {
this.id = otherElement.id;
this.definition = new ToscaConceptIdentifier(otherElement.definition);
this.participantId = otherElement.participantId;
- this.state = otherElement.state;
- this.orderedState = otherElement.orderedState;
- this.toscaServiceTemplateFragment = otherElement.toscaServiceTemplateFragment;
this.description = otherElement.description;
this.properties = PfUtils.mapMap(otherElement.properties, UnaryOperator.identity());
this.deployState = otherElement.deployState;
diff --git a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionInfo.java b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionInfo.java
index 954665bfb..17875c429 100644
--- a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionInfo.java
+++ b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionInfo.java
@@ -35,8 +35,6 @@ public class AutomationCompositionInfo {
private UUID automationCompositionId;
- private AutomationCompositionState state = AutomationCompositionState.UNINITIALISED;
-
private DeployState deployState = DeployState.UNDEPLOYED;
private LockState lockState = LockState.LOCKED;
@@ -48,7 +46,6 @@ public class AutomationCompositionInfo {
*/
public AutomationCompositionInfo(final AutomationCompositionInfo otherElement) {
this.automationCompositionId = otherElement.automationCompositionId;
- this.state = otherElement.state;
this.deployState = otherElement.deployState;
this.lockState = otherElement.lockState;
}
diff --git a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionOrderedState.java b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionOrderedState.java
deleted file mode 100644
index 3be5ffa2f..000000000
--- a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionOrderedState.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * Copyright (C) 2021 Nordix Foundation.
- * ================================================================================
- * 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.
- *
- * SPDX-License-Identifier: Apache-2.0
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.policy.clamp.models.acm.concepts;
-
-public enum AutomationCompositionOrderedState {
- /**
- * The automation composition or automation composition element should become uninitialised on participants, it
- * should not exist on participants.
- */
- UNINITIALISED,
- /**
- * The automation composition or automation composition element should initialised on the participants and be
- * passive, that is, it is not handling automation composition messages yet.
- */
- PASSIVE,
- /**
- * The automation composition or automation composition element should running and is executing automation
- * compositions.
- */
- RUNNING;
-
- public boolean equalsAutomationCompositionState(final AutomationCompositionState automationCompositionState) {
- return this.name().equals(automationCompositionState.name());
- }
-
- public AutomationCompositionState asState() {
- return AutomationCompositionState.valueOf(this.name());
- }
-}
diff --git a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionState.java b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionState.java
deleted file mode 100644
index aa6fcfd1d..000000000
--- a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/AutomationCompositionState.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * Copyright (C) 2021 Nordix Foundation.
- * ================================================================================
- * 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.
- *
- * SPDX-License-Identifier: Apache-2.0
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.policy.clamp.models.acm.concepts;
-
-public enum AutomationCompositionState {
- /**
- * The automation composition or automation composition element is not initialised on participants, it does not
- * exist on participants.
- */
- UNINITIALISED,
- /**
- * The automation composition or automation composition element is changing from unitialised to passive, it is being
- * initialised onto participants.
- */
- UNINITIALISED2PASSIVE,
- /**
- * The automation composition or automation composition element is initialised on the participants but is passive,
- * that is, it is not handling automation composition messages yet.
- */
- PASSIVE,
- /**
- * The automation composition or automation composition element is changing from passive to running, the
- * participants are preparing to execute automation compositions.
- */
- PASSIVE2RUNNING,
- /**
- * The automation composition or automation composition element is running and is executing automation compositions.
- */
- RUNNING,
- /**
- * The automation composition or automation composition element is completing execution of current automation
- * compositions but will not start running any more automation compositions and will become passive.
- */
- RUNNING2PASSIVE,
- /**
- * The automation composition or automation composition element is changing from passive to unitialised, the
- * automation composition is being removed from participants.
- */
- PASSIVE2UNINITIALISED;
-
- public boolean equalsAutomationCompositionOrderedState(
- final AutomationCompositionOrderedState automationCompositionOrderedState) {
- return this.name().equals(automationCompositionOrderedState.name());
- }
-
- public AutomationCompositionOrderedState asOrderedState() {
- return AutomationCompositionOrderedState.valueOf(this.name());
- }
-}
diff --git a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/ParticipantDeploy.java b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/ParticipantDeploy.java
index 337a09d17..7d3b4ca98 100644
--- a/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/ParticipantDeploy.java
+++ b/models/src/main/java/org/onap/policy/clamp/models/acm/concepts/ParticipantDeploy.java
@@ -40,9 +40,6 @@ public class ParticipantDeploy {
private UUID participantId;
- // List of AutomationCompositionElement values for a particular participant
- private List<AutomationCompositionElement> automationCompositionElementList = new ArrayList<>();
-
// List of Automation Composition Element Deploy for a particular participant
private List<AcElementDeploy> acElementList = new ArrayList<>();
@@ -53,8 +50,6 @@ public class ParticipantDeploy {
*/
public ParticipantDeploy(final ParticipantDeploy copyConstructor) {
this.participantId = copyConstructor.participantId;
- this.automationCompositionElementList = PfUtils.mapList(
- copyConstructor.automationCompositionElementList, AutomationCompositionElement::new);
this.acElementList = PfUtils.mapList(copyConstructor.acElementList, AcElementDeploy::new);
}
}
diff --git a/models/src/main/java/org/onap/policy/clamp/models/acm/messages/dmaap/participant/AutomationCompositionStateChange.java b/models/src/main/java/org/onap/policy/clamp/models/acm/messages/dmaap/participant/AutomationCompositionStateChange.java
index 64102e607..2b4c9f996 100644
--- a/models/src/main/java/org/onap/policy/clamp/models/acm/messages/dmaap/participant/AutomationCompositionStateChange.java
+++ b/models/src/main/java/org/onap/policy/clamp/models/acm/messages/dmaap/participant/AutomationCompositionStateChange.java
@@ -23,8 +23,6 @@ package org.onap.policy.clamp.models.acm.messages.dmaap.participant;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
-import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionOrderedState;
-import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionState;
import org.onap.policy.clamp.models.acm.messages.rest.instantiation.DeployOrder;
import org.onap.policy.clamp.models.acm.messages.rest.instantiation.LockOrder;
@@ -36,8 +34,6 @@ import org.onap.policy.clamp.models.acm.messages.rest.instantiation.LockOrder;
@Setter
@ToString(callSuper = true)
public class AutomationCompositionStateChange extends ParticipantMessage {
- private AutomationCompositionOrderedState orderedState;
- private AutomationCompositionState currentState;
private DeployOrder deployOrderedState = DeployOrder.NONE;
private LockOrder lockOrderedState = LockOrder.NONE;
private Integer startPhase;
@@ -58,9 +54,6 @@ public class AutomationCompositionStateChange extends ParticipantMessage {
*/
public AutomationCompositionStateChange(AutomationCompositionStateChange source) {
super(source);
-
- this.orderedState = source.orderedState;
- this.currentState = source.currentState;
this.deployOrderedState = source.deployOrderedState;
this.lockOrderedState = source.lockOrderedState;
this.startPhase = source.startPhase;
diff --git a/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/AutomationCompositionHandler.java b/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/AutomationCompositionHandler.java
index 2d845d4c8..d76700171 100644
--- a/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/AutomationCompositionHandler.java
+++ b/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/AutomationCompositionHandler.java
@@ -333,6 +333,7 @@ public class AutomationCompositionHandler {
for (var element : participantDeploy.getAcElementList()) {
var acElement = new AutomationCompositionElement();
acElement.setId(element.getId());
+ acElement.setParticipantId(participantDeploy.getParticipantId());
acElement.setDefinition(element.getDefinition());
acElement.setDeployState(DeployState.DEPLOYING);
acElement.setLockState(LockState.NONE);
diff --git a/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandler.java b/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandler.java
index 719c428be..bf9fbbcd2 100644
--- a/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandler.java
+++ b/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandler.java
@@ -31,6 +31,7 @@ import java.util.UUID;
import lombok.Getter;
import org.onap.policy.clamp.acm.participant.intermediary.comm.ParticipantMessagePublisher;
import org.onap.policy.clamp.acm.participant.intermediary.parameters.ParticipantParameters;
+import org.onap.policy.clamp.models.acm.concepts.AutomationComposition;
import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionElementDefinition;
import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionInfo;
import org.onap.policy.clamp.models.acm.concepts.ParticipantDefinition;
@@ -48,6 +49,7 @@ import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantRe
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantRegisterAck;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantStatus;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantStatusReq;
+import org.onap.policy.models.base.PfModelException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
@@ -171,9 +173,35 @@ public class ParticipantHandler {
var participantDeregister = new ParticipantDeregister();
participantDeregister.setParticipantId(participantId);
+ undeployInstancesOnParticipant();
publisher.sendParticipantDeregister(participantDeregister);
}
+ private void undeployInstancesOnParticipant() {
+ automationCompositionHandler.getAutomationCompositionMap().values().forEach(ac ->
+ undeployInstanceOnParticipant(ac)
+ );
+ }
+
+ private void undeployInstanceOnParticipant(AutomationComposition automationComposition) {
+ automationComposition.getElements().values().forEach(element -> {
+ if (element.getParticipantId().equals(participantId)) {
+ undeployInstanceElementsOnParticipant(automationComposition.getInstanceId(), element.getId());
+ }
+ });
+ }
+
+ private void undeployInstanceElementsOnParticipant(UUID instanceId, UUID elementId) {
+ var acElementListeners = automationCompositionHandler.getListeners();
+ for (var acElementListener : acElementListeners) {
+ try {
+ acElementListener.undeploy(instanceId, elementId);
+ } catch (PfModelException e) {
+ LOGGER.debug("Automation composition element update failed {}", instanceId);
+ }
+ }
+ }
+
/**
* Handle a participantDeregister Ack message.
*
diff --git a/participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/DummyAcElementListener.java b/participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/DummyAcElementListener.java
new file mode 100644
index 000000000..b88ea03e5
--- /dev/null
+++ b/participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/DummyAcElementListener.java
@@ -0,0 +1,40 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2023 Nordix Foundation.
+ * ================================================================================
+ * 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.policy.clamp.acm.participant.intermediary.handler;
+
+import java.util.Map;
+import java.util.UUID;
+import org.onap.policy.clamp.acm.participant.intermediary.api.AutomationCompositionElementListener;
+import org.onap.policy.clamp.models.acm.concepts.AcElementDeploy;
+import org.onap.policy.models.base.PfModelException;
+
+public class DummyAcElementListener implements AutomationCompositionElementListener {
+ @Override
+ public void undeploy(UUID automationCompositionId, UUID automationCompositionElementId) throws PfModelException {
+
+ }
+
+ @Override
+ public void deploy(UUID automationCompositionId, AcElementDeploy element, Map<String, Object> properties)
+ throws PfModelException {
+
+ }
+}
diff --git a/participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandlerTest.java b/participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandlerTest.java
index 7349ab9c0..3fed5bb56 100644
--- a/participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandlerTest.java
+++ b/participant/participant-intermediary/src/test/java/org/onap/policy/clamp/acm/participant/intermediary/handler/ParticipantHandlerTest.java
@@ -28,6 +28,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
import java.time.Instant;
import java.util.List;
@@ -37,11 +38,13 @@ import org.onap.policy.clamp.acm.participant.intermediary.comm.ParticipantMessag
import org.onap.policy.clamp.acm.participant.intermediary.main.parameters.CommonTestData;
import org.onap.policy.clamp.models.acm.concepts.ParticipantDefinition;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantAckMessage;
+import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantDeregister;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantMessage;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantMessageType;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantPrime;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantRegisterAck;
import org.onap.policy.common.utils.coder.CoderException;
+import org.onap.policy.models.base.PfModelException;
class ParticipantHandlerTest {
@@ -131,4 +134,25 @@ class ParticipantHandlerTest {
participantHandler.handleParticipantRegisterAck(new ParticipantRegisterAck());
verify(publisher).sendParticipantStatus(any());
}
+
+ @Test
+ void testSendParticipantDeregister() throws PfModelException {
+ var commonTestData = new CommonTestData();
+ var automationCompositionMap = commonTestData.getTestAutomationCompositionMap();
+ var automationCompositionHandler = mock(AutomationCompositionHandler.class);
+ var listener = mock(DummyAcElementListener.class);
+
+ when(automationCompositionHandler.getListeners()).thenReturn(List.of(listener));
+ automationCompositionMap.values().iterator().next().getElements().values().iterator().next()
+ .setParticipantId(CommonTestData.getParticipantId());
+ when(automationCompositionHandler.getAutomationCompositionMap()).thenReturn(automationCompositionMap);
+
+ var publisher = mock(ParticipantMessagePublisher.class);
+ var parameters = CommonTestData.getParticipantParameters();
+ var participantHandler = new ParticipantHandler(parameters, publisher, automationCompositionHandler);
+
+ participantHandler.sendParticipantDeregister();
+ verify(publisher).sendParticipantDeregister(any(ParticipantDeregister.class));
+ verify(listener).undeploy(any(), any());
+ }
}
diff --git a/testsuites/performance/src/main/resources/testplans/performance.jmx b/testsuites/performance/src/main/resources/testplans/performance.jmx
index b8a07e82f..f8aaf41c5 100644
--- a/testsuites/performance/src/main/resources/testplans/performance.jmx
+++ b/testsuites/performance/src/main/resources/testplans/performance.jmx
@@ -10,22 +10,22 @@
<collectionProp name="Arguments.arguments">
<elementProp name="RUNTIME_HOST" elementType="Argument">
<stringProp name="Argument.name">RUNTIME_HOST</stringProp>
- <stringProp name="Argument.value">192.168.32.9</stringProp>
+ <stringProp name="Argument.value">localhost</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="RUNTIME_PORT" elementType="Argument">
<stringProp name="Argument.name">RUNTIME_PORT</stringProp>
- <stringProp name="Argument.value">6969</stringProp>
+ <stringProp name="Argument.value">30007</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="POLICY_PARTICIPANT_HOST" elementType="Argument">
<stringProp name="Argument.name">POLICY_PARTICIPANT_HOST</stringProp>
- <stringProp name="Argument.value">192.168.32.8</stringProp>
+ <stringProp name="Argument.value">localhost</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="POLICY_PARTICIPANT_PORT" elementType="Argument">
<stringProp name="Argument.name">POLICY_PARTICIPANT_PORT</stringProp>
- <stringProp name="Argument.value">6970</stringProp>
+ <stringProp name="Argument.value">30008</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="HOME_PATH" elementType="Argument">
diff --git a/testsuites/run-s3p-test.sh b/testsuites/run-s3p-test.sh
new file mode 100755
index 000000000..9a4d044f0
--- /dev/null
+++ b/testsuites/run-s3p-test.sh
@@ -0,0 +1,49 @@
+#!/bin/bash
+# ============LICENSE_START=======================================================
+# Copyright (C) 2023 Nordix Foundation. 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.
+#
+# SPDX-License-Identifier: Apache-2.0
+# ============LICENSE_END=========================================================
+
+#===MAIN===#
+if [ -z "${WORKSPACE}" ]; then
+ export WORKSPACE=$(git rev-parse --show-toplevel)
+fi
+
+export TESTDIR=${WORKSPACE}/testsuites
+export ACM_PERF_TEST_FILE=$TESTDIR/performance/src/main/resources/testplans/performance.jmx
+export ACM_STAB_TEST_FILE=$TESTDIR/stability/src/main/resources/testplans/stability.jmx
+
+if [ $1 == "run" ]
+then
+
+ mkdir automate-performance;cd automate-performance;
+ git clone "https://gerrit.onap.org/r/policy/docker"
+ cd docker/csit
+
+ if [ $2 == "performance" ]
+ then
+ bash start-s3p-tests.sh run $ACM_PERF_TEST_FILE;
+ elif [ $2 == "stability" ]
+ then
+ bash start-s3p-tests.sh run $ACM_STAB_TEST_FILE;
+ else
+ echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}"
+ fi
+
+else
+ echo "Invalid arguments provided. Usage: $0 [option..] {run | uninstall}"
+fi
+
diff --git a/testsuites/stability/src/main/resources/testplans/stability.jmx b/testsuites/stability/src/main/resources/testplans/stability.jmx
index 3e90be285..8fe84c86c 100644
--- a/testsuites/stability/src/main/resources/testplans/stability.jmx
+++ b/testsuites/stability/src/main/resources/testplans/stability.jmx
@@ -10,22 +10,22 @@
<collectionProp name="Arguments.arguments">
<elementProp name="RUNTIME_HOST" elementType="Argument">
<stringProp name="Argument.name">RUNTIME_HOST</stringProp>
- <stringProp name="Argument.value">192.168.48.9</stringProp>
+ <stringProp name="Argument.value">localhost</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="RUNTIME_PORT" elementType="Argument">
<stringProp name="Argument.name">RUNTIME_PORT</stringProp>
- <stringProp name="Argument.value">6969</stringProp>
+ <stringProp name="Argument.value">30007</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="POLICY_PARTICIPANT_HOST" elementType="Argument">
<stringProp name="Argument.name">POLICY_PARTICIPANT_HOST</stringProp>
- <stringProp name="Argument.value">192.168.48.8</stringProp>
+ <stringProp name="Argument.value">localhost</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="POLICY_PARTICIPANT_HOST_PORT" elementType="Argument">
<stringProp name="Argument.name">POLICY_PARTICIPANT_HOST_PORT</stringProp>
- <stringProp name="Argument.value">6973</stringProp>
+ <stringProp name="Argument.value">20008</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
</collectionProp>