summaryrefslogtreecommitdiffstats
path: root/controlloop/m2/appclcm
diff options
context:
space:
mode:
Diffstat (limited to 'controlloop/m2/appclcm')
-rw-r--r--controlloop/m2/appclcm/pom.xml2
-rw-r--r--controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmHealthCheckOperationTest.java16
-rw-r--r--controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmOperationTest.java48
3 files changed, 33 insertions, 33 deletions
diff --git a/controlloop/m2/appclcm/pom.xml b/controlloop/m2/appclcm/pom.xml
index 78200454a..8c4ff9068 100644
--- a/controlloop/m2/appclcm/pom.xml
+++ b/controlloop/m2/appclcm/pom.xml
@@ -72,7 +72,7 @@
<dependency>
<groupId>org.powermock</groupId>
- <artifactId>powermock-api-mockito</artifactId>
+ <artifactId>powermock-api-mockito2</artifactId>
<scope>test</scope>
</dependency>
diff --git a/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmHealthCheckOperationTest.java b/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmHealthCheckOperationTest.java
index 0748b6ee0..5f436c2d4 100644
--- a/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmHealthCheckOperationTest.java
+++ b/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmHealthCheckOperationTest.java
@@ -111,7 +111,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void getVnfHealthCheckRequestTest() throws ControlLoopException {
+ public void testGetVnfHealthCheckRequest() throws ControlLoopException {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
@@ -141,7 +141,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void incomingHealthCheckMessageHealthyStateTest() {
+ public void testIncomingHealthCheckMessageHealthyState() {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmHealthCheckOperation(transaction, policy, event, 1);
@@ -160,7 +160,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void incomingHealthCheckMessageUnhealthyStateTest() {
+ public void testIncomingHealthCheckMessageUnhealthyState() {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmHealthCheckOperation(transaction, policy, event, 1);
@@ -181,7 +181,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void incomingHealthCheckMessageUnknownStateTest() {
+ public void testIncomingHealthCheckMessageUnknownState() {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmHealthCheckOperation(transaction, policy, event, 1);
@@ -202,7 +202,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void incomingHealthCheckMessageNoStateTest() {
+ public void testIncomingHealthCheckMessageNoState() {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmHealthCheckOperation(transaction, policy, event, 1);
@@ -223,7 +223,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void incomingHealthCheckMessageUnsuccessfulTest() {
+ public void testIncomingHealthCheckMessageUnsuccessful() {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmHealthCheckOperation(transaction, policy, event, 1);
@@ -244,7 +244,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void incomingHealthCheckMessageNoPayloadTest() {
+ public void testIncomingHealthCheckMessageNoPayload() {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmHealthCheckOperation(transaction, policy, event, 1);
@@ -262,7 +262,7 @@ public class AppcLcmHealthCheckOperationTest {
}
@Test
- public void incomingHealthCheckMessageEmptyPayloadTest() {
+ public void testIncomingHealthCheckMessageEmptyPayload() {
policy.setRecipe("HEALTHCHECK");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmHealthCheckOperation(transaction, policy, event, 1);
diff --git a/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmOperationTest.java b/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmOperationTest.java
index 0ddfb5b2c..6611a9da2 100644
--- a/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmOperationTest.java
+++ b/controlloop/m2/appclcm/src/test/java/appclcm/AppcLcmOperationTest.java
@@ -114,7 +114,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVmRestartRequestTest() throws ControlLoopException {
+ public void testGetVmRestartRequest() throws ControlLoopException {
policy.setRecipe("RESTART");
policy.getTarget().setType(TargetType.VM);
@@ -144,7 +144,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVnfRestartRequestTest() throws ControlLoopException {
+ public void testGetVnfRestartRequest() throws ControlLoopException {
policy.setRecipe("RESTART");
policy.getTarget().setType(TargetType.VNF);
@@ -174,7 +174,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVmRebuildRequestTest() throws ControlLoopException {
+ public void testGetVmRebuildRequest() throws ControlLoopException {
policy.setRecipe("REBUILD");
policy.getTarget().setType(TargetType.VM);
@@ -204,7 +204,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVnfRebuildRequestTest() throws ControlLoopException {
+ public void testGetVnfRebuildRequest() throws ControlLoopException {
policy.setRecipe("REBUILD");
policy.getTarget().setType(TargetType.VNF);
@@ -234,7 +234,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVmMigrateRequestTest() throws ControlLoopException {
+ public void testGetVmMigrateRequest() throws ControlLoopException {
policy.setRecipe("MIGRATE");
policy.getTarget().setType(TargetType.VM);
@@ -264,7 +264,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVnfMigrateRequestTest() throws ControlLoopException {
+ public void testGetVnfMigrateRequest() throws ControlLoopException {
policy.setRecipe("MIGRATE");
policy.getTarget().setType(TargetType.VNF);
@@ -294,7 +294,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVmEvacuateRequestTest() throws ControlLoopException {
+ public void testGetVmEvacuateRequest() throws ControlLoopException {
policy.setRecipe("EVACUATE");
policy.getTarget().setType(TargetType.VM);
@@ -324,7 +324,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVnfEvacuateRequestTest() throws ControlLoopException {
+ public void testGetVnfEvacuateRequest() throws ControlLoopException {
policy.setRecipe("EVACUATE");
policy.getTarget().setType(TargetType.VNF);
@@ -354,7 +354,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVmRebootRequestTest() throws ControlLoopException {
+ public void testGetVmRebootRequest() throws ControlLoopException {
policy.setRecipe("REBOOT");
policy.getTarget().setType(TargetType.VM);
@@ -386,7 +386,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVnfRebootRequestTest() throws ControlLoopException {
+ public void testGetVnfRebootRequest() throws ControlLoopException {
policy.setRecipe("REBOOT");
policy.getTarget().setType(TargetType.VNF);
@@ -418,7 +418,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVnfStartRequestTest() throws ControlLoopException {
+ public void testGetVnfStartRequest() throws ControlLoopException {
policy.setRecipe("START");
policy.getTarget().setType(TargetType.VNF);
@@ -448,7 +448,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVmStartRequestTest() throws ControlLoopException {
+ public void testGetVmStartRequest() throws ControlLoopException {
policy.setRecipe("START");
policy.getTarget().setType(TargetType.VM);
@@ -478,7 +478,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVnfStopRequestTest() throws ControlLoopException {
+ public void testGetVnfStopRequest() throws ControlLoopException {
policy.setRecipe("STOP");
policy.getTarget().setType(TargetType.VNF);
@@ -508,7 +508,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void getVmStopRequestTest() throws ControlLoopException {
+ public void testGetVmStopRequest() throws ControlLoopException {
policy.setRecipe("STOP");
policy.getTarget().setType(TargetType.VM);
@@ -546,7 +546,7 @@ public class AppcLcmOperationTest {
*/
@Test
- public void incomingVmSuccessMessageTest() {
+ public void testIncomingVmSuccessMessage() {
policy.setRecipe("RESTART");
policy.getTarget().setType(TargetType.VM);
operation = new AppcLcmOperation(transaction, policy, event, 1);
@@ -559,7 +559,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void incomingVnfSuccessMessageTest() {
+ public void testIncomingVnfSuccessMessage() {
policy.setRecipe("RESTART");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmOperation(transaction, policy, event, 1);
@@ -580,7 +580,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void incomingVmFailureMessageTest() {
+ public void testIncomingVmFailureMessage() {
policy.setRecipe("RESTART");
policy.getTarget().setType(TargetType.VM);
operation = new AppcLcmOperation(transaction, policy, event, 1);
@@ -593,7 +593,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void incomingAllVnfFailureMessageTest() {
+ public void testIncomingAllVnfFailureMessage() {
policy.setRecipe("RESTART");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmOperation(transaction, policy, event, 1);
@@ -616,7 +616,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void incomingPartialVnfFailureMessageTest() {
+ public void testIncomingPartialVnfFailureMessage() {
policy.setRecipe("RESTART");
policy.getTarget().setType(TargetType.VNF);
operation = new AppcLcmOperation(transaction, policy, event, 1);
@@ -657,7 +657,7 @@ public class AppcLcmOperationTest {
*/
@Test
- public void validAaiSubtagTest() {
+ public void testValidAaiSubtag() {
transaction.setNotificationMessage(null);
VirtualControlLoopEvent validEvent = new VirtualControlLoopEvent();
validEvent.setTarget("vserver.vserver-name");
@@ -668,7 +668,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void noAaiSubtagTest() {
+ public void testNoAaiSubtag() {
transaction.setNotificationMessage(null);
VirtualControlLoopEvent noAaiTag = new VirtualControlLoopEvent();
noAaiTag.setAai(null);
@@ -677,7 +677,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void noClosedLoopDisabledInAaiTest() {
+ public void testNoClosedLoopDisabledInAai() {
transaction.setNotificationMessage(null);
VirtualControlLoopEvent invalidEvent = new VirtualControlLoopEvent();
assertFalse(AppcLcmOperation.isAaiValid(transaction, invalidEvent));
@@ -686,7 +686,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void closedLoopDisabledInAaiTest() {
+ public void testClosedLoopDisabledInAai() {
transaction.setNotificationMessage(null);
VirtualControlLoopEvent invalidEvent = new VirtualControlLoopEvent();
invalidEvent.getAai().put(AppcLcmOperation.DCAE_CLOSEDLOOP_DISABLED_FIELD, "true");
@@ -696,7 +696,7 @@ public class AppcLcmOperationTest {
}
@Test
- public void targetMismatchInAaiTest() {
+ public void testTargetMismatchInAai() {
transaction.setNotificationMessage(null);
VirtualControlLoopEvent validEvent = new VirtualControlLoopEvent();
validEvent.setTarget("vserver.vserver-name");