X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=models-sim%2Fpolicy-models-simulators%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fpolicy%2Fmodels%2Fsimulators%2FMainTest.java;h=dc3cc26729e5e5e6ff732e49d61549aee802360d;hb=3e286399aec5a14f21fcde3d3a79727169f8cbc9;hp=e1517f3a8da500fc5824117b873a9664789f7d65;hpb=4cc2c2c01f366f6d5d7f3e47ce2d1c5ea5c76df8;p=policy%2Fmodels.git 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 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())