aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java b/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java
index e1517f3a8..dc3cc2672 100644
--- a/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java
+++ b/models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/MainTest.java
@@ -43,6 +43,7 @@ import javax.ws.rs.core.Response;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
+import org.junit.Ignore;
import org.junit.Test;
import org.onap.policy.common.endpoints.event.comm.bus.internal.BusTopicParams;
import org.onap.policy.common.endpoints.http.client.HttpClient;
@@ -65,6 +66,7 @@ public class MainTest {
/**
* Saves system properties.
*/
+ @Ignore
@BeforeClass
public static void setUpBeforeClass() throws IOException, InterruptedException {
savedValues = new HashMap<>();
@@ -90,6 +92,7 @@ public class MainTest {
/**
* Restores system properties.
*/
+ @Ignore
@AfterClass
public static void tearDownAfterClass() {
for (Entry<String, String> ent : savedValues.entrySet()) {
@@ -104,6 +107,7 @@ public class MainTest {
/**
* Shuts down the simulator instance.
*/
+ @Ignore
@After
public void tearDown() {
Main main = Main.getInstance();
@@ -112,6 +116,7 @@ public class MainTest {
}
}
+ @Ignore
@Test
public void testConstructor() throws Exception {
assertThatIllegalArgumentException().isThrownBy(() -> new Main("invalidDmaapProvider.json"))
@@ -122,6 +127,7 @@ public class MainTest {
* Verifies that all of the simulators are brought up and that HTTPS works with at
* least one of them.
*/
+ @Ignore
@Test
public void testMain() throws Exception {
Main.main(new String[0]);
@@ -138,6 +144,7 @@ public class MainTest {
checkAai();
}
+ @Ignore
@Test
public void testMainMinimalParameters() {
Main.main(new String[] {"minParameters.json"});
@@ -160,6 +167,7 @@ public class MainTest {
/**
* Tests readParameters() when the file cannot be found.
*/
+ @Ignore
@Test
public void testReadParametersNoFile() {
assertThatIllegalArgumentException().isThrownBy(() -> new Main("missing-file.json"))
@@ -169,6 +177,7 @@ public class MainTest {
/**
* Tests readParameters() when the json cannot be decoded.
*/
+ @Ignore
@Test
public void testReadParametersInvalidJson() throws CoderException {
Coder coder = mock(Coder.class);
@@ -185,6 +194,7 @@ public class MainTest {
/**
* Tests buildRestServer() when the server port is not open.
*/
+ @Ignore
@Test
public void testBuildRestServerNotOpen() {
HttpServletServer server = mock(HttpServletServer.class);
@@ -207,6 +217,7 @@ public class MainTest {
/**
* Tests buildRestServer() when the port checker is interrupted.
*/
+ @Ignore
@Test
public void testBuildRestServerInterrupted() throws InterruptedException {
HttpServletServer server = mock(HttpServletServer.class);
@@ -245,6 +256,7 @@ public class MainTest {
/**
* Tests buildTopicServer() when the provider class is invalid.
*/
+ @Ignore
@Test
public void testBuildTopicServerInvalidProvider() {
assertThatThrownBy(() -> new Main("invalidTopicServer.json").start())
@@ -254,6 +266,7 @@ public class MainTest {
/**
* Tests buildTopicServer() when the sink is missing.
*/
+ @Ignore
@Test
public void testBuildTopicServerNoSink() {
assertThatThrownBy(() -> new Main("missingSink.json").start())
@@ -263,6 +276,7 @@ public class MainTest {
/**
* Tests buildTopicServer() when the sink is missing.
*/
+ @Ignore
@Test
public void testBuildTopicServerNoSource() {
assertThatThrownBy(() -> new Main("missingSource.json").start())