aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop/common/rules-test/src/test
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2020-08-14 19:29:51 -0400
committerJim Hahn <jrh3@att.com>2020-08-14 19:31:48 -0400
commit6656a9fc98c178351122fd326940fbb6923d292f (patch)
tree2546787bbd1cc7530b20bb0036224a8f2335d6ff /controlloop/common/rules-test/src/test
parent8d0516fd693ae0224100b74a81d09e62cea8ba62 (diff)
Remove legacy operational policy from drools-apps
Issue-ID: POLICY-2766 Change-Id: I1ff7bbc4e301cfe6fa746f38c839acf83f7584b6 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'controlloop/common/rules-test/src/test')
-rw-r--r--controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/BaseTestTest.java36
-rw-r--r--controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/DroolsRuleTestTest.java2
2 files changed, 4 insertions, 34 deletions
diff --git a/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/BaseTestTest.java b/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/BaseTestTest.java
index ecff7e0bb..ea90a6ba6 100644
--- a/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/BaseTestTest.java
+++ b/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/BaseTestTest.java
@@ -136,8 +136,8 @@ public class BaseTestTest {
any(StandardCoder.class))).thenReturn(appcLcmRead);
when(topics.createListener(eq(BaseTest.APPC_CL_TOPIC), eq(Request.class),
any(StandardCoderInstantAsMillis.class))).thenReturn(appcClSink);
- when(topics.createListener(eq(BaseTest.SDNR_CL_TOPIC), eq(PciMessage.class),
- any(StandardCoder.class))).thenReturn(sdnrClSink);
+ when(topics.createListener(eq(BaseTest.SDNR_CL_TOPIC), eq(PciMessage.class), any(StandardCoder.class)))
+ .thenReturn(sdnrClSink);
Supplier<HttpClients> httpClientMaker = this::makeHttpClients;
Supplier<Simulators> simMaker = this::makeSim;
@@ -204,7 +204,7 @@ public class BaseTestTest {
@Test
public void testInit() {
- assertSame(topics, base.getTopics());
+ assertSame(topics, BaseTest.getTopics());
}
@Test
@@ -265,11 +265,6 @@ public class BaseTestTest {
}
@Test
- public void testTestVcpeSunnyDayLegacy() {
- checkAppcLcmPolicy("restart", base::testVcpeSunnyDayLegacy);
- }
-
- @Test
public void testTestVcpeSunnyDayCompliant() {
checkAppcLcmPolicy("restart", base::testVcpeSunnyDayCompliant);
}
@@ -296,11 +291,6 @@ public class BaseTestTest {
}
@Test
- public void testTestVdnsSunnyDayLegacy() {
- checkHttpPolicy(base::testVdnsSunnyDayLegacy);
- }
-
- @Test
public void testTestVdnsSunnyDayCompliant() {
checkHttpPolicy(base::testVdnsSunnyDayCompliant);
}
@@ -311,21 +301,11 @@ public class BaseTestTest {
}
@Test
- public void testTestVfwSunnyDayLegacy() {
- checkAppcLegacyPolicy("ModifyConfig", base::testVfwSunnyDayLegacy);
- }
-
- @Test
public void testTestVfwSunnyDayCompliant() {
checkAppcLegacyPolicy("ModifyConfig", base::testVfwSunnyDayCompliant);
}
@Test
- public void testTestVfwRainyDayLegacyFailure() {
- checkAppcLegacyPolicyOperationFailure("ModifyConfig", base::testVfwRainyDayLegacyFailure);
- }
-
- @Test
public void testTestVfwRainyDayOverallTimeout() {
checkAppcLegacyPolicyFinalFailure("ModifyConfig", base::testVfwRainyDayOverallTimeout);
}
@@ -336,21 +316,11 @@ public class BaseTestTest {
}
@Test
- public void testTestVpciSunnyDayLegacy() {
- checkSdnrPolicy("ModifyConfig", base::testVpciSunnyDayLegacy);
- }
-
- @Test
public void testTestVpciSunnyDayCompliant() {
checkSdnrPolicy("ModifyConfig", base::testVpciSunnyDayCompliant);
}
@Test
- public void testTestVsonhSunnyDayLegacy() {
- checkSdnrPolicy("ModifyConfigANR", base::testVsonhSunnyDayLegacy);
- }
-
- @Test
public void testTestVsonhSunnyDayCompliant() {
checkSdnrPolicy("ModifyConfigANR", base::testVsonhSunnyDayCompliant);
}
diff --git a/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/DroolsRuleTestTest.java b/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/DroolsRuleTestTest.java
index a21fa0a93..43392b9bb 100644
--- a/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/DroolsRuleTestTest.java
+++ b/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/DroolsRuleTestTest.java
@@ -204,7 +204,7 @@ public class DroolsRuleTestTest {
@Test
public void testInit() {
- assertSame(topics, base.getTopics());
+ assertSame(topics, BaseTest.getTopics());
assertSame(controller, base.controller);
}