From 025301d08b061482c1f046d562bf017c8cbcfe8d Mon Sep 17 00:00:00 2001 From: ChrisC Date: Tue, 31 Jan 2017 11:40:03 +0100 Subject: Initial OpenECOMP MSO commit Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d Signed-off-by: ChrisC --- .../client/CreateNetworkNotificationESTest.java | 213 +++++++++++++++ ...CreateNetworkNotificationESTestscaffolding.java | 83 ++++++ .../CreateNetworkNotificationResponseESTest.java | 20 ++ ...tworkNotificationResponseESTestscaffolding.java | 78 ++++++ .../client/DeleteNetworkNotificationESTest.java | 114 ++++++++ ...DeleteNetworkNotificationESTestscaffolding.java | 79 ++++++ .../DeleteNetworkNotificationResponseESTest.java | 20 ++ ...tworkNotificationResponseESTestscaffolding.java | 78 ++++++ .../async/client/MsoExceptionCategoryESTest.java | 97 +++++++ .../MsoExceptionCategoryESTestscaffolding.java | 83 ++++++ .../network/async/client/MsoRequestESTest.java | 72 +++++ .../async/client/MsoRequestESTestscaffolding.java | 78 ++++++ .../async/client/NetworkRollbackESTest.java | 301 +++++++++++++++++++++ .../client/NetworkRollbackESTestscaffolding.java | 79 ++++++ .../network/async/client/NetworkStatusESTest.java | 91 +++++++ .../client/NetworkStatusESTestscaffolding.java | 83 ++++++ .../network/async/client/ObjectFactoryESTest.java | 154 +++++++++++ .../client/ObjectFactoryESTestscaffolding.java | 103 +++++++ .../client/QueryNetworkNotificationESTest.java | 266 ++++++++++++++++++ .../QueryNetworkNotificationESTestscaffolding.java | 82 ++++++ .../QueryNetworkNotificationResponseESTest.java | 20 ++ ...tworkNotificationResponseESTestscaffolding.java | 78 ++++++ .../client/RollbackNetworkNotificationESTest.java | 116 ++++++++ ...llbackNetworkNotificationESTestscaffolding.java | 79 ++++++ .../RollbackNetworkNotificationResponseESTest.java | 20 ++ ...tworkNotificationResponseESTestscaffolding.java | 78 ++++++ .../client/UpdateNetworkNotificationESTest.java | 202 ++++++++++++++ ...UpdateNetworkNotificationESTestscaffolding.java | 83 ++++++ .../UpdateNetworkNotificationResponseESTest.java | 20 ++ ...tworkNotificationResponseESTestscaffolding.java | 78 ++++++ 30 files changed, 2948 insertions(+) create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTestscaffolding.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTest.java create mode 100644 adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTestscaffolding.java (limited to 'adapters/mso-network-adapter-async-client/src/test') diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTest.java new file mode 100644 index 0000000000..ce129e47d5 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTest.java @@ -0,0 +1,213 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:38:53 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import java.util.List; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class CreateNetworkNotificationESTest extends CreateNetworkNotificationESTestscaffolding { + + @Test(timeout = 4000) + public void test00() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + CreateNetworkNotification.SubnetIdMap createNetworkNotification_SubnetIdMap0 = new CreateNetworkNotification.SubnetIdMap(); + createNetworkNotification0.setSubnetIdMap(createNetworkNotification_SubnetIdMap0); + CreateNetworkNotification.SubnetIdMap createNetworkNotification_SubnetIdMap1 = createNetworkNotification0.getSubnetIdMap(); + assertSame(createNetworkNotification_SubnetIdMap1, createNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test01() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.neutronNetworkId = "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory"; + String string0 = createNetworkNotification0.getNeutronNetworkId(); + assertEquals("org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", string0); + } + + @Test(timeout = 4000) + public void test02() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.neutronNetworkId = ""; + String string0 = createNetworkNotification0.getNeutronNetworkId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test03() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.setNetworkId("IO"); + String string0 = createNetworkNotification0.getNetworkId(); + assertEquals("IO", string0); + } + + @Test(timeout = 4000) + public void test04() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.setMessageId(",x!0'6/o1Bj\"nxg JH"); + String string0 = createNetworkNotification0.getMessageId(); + assertEquals(",x!0'6/o1Bj\"nxg JH", string0); + } + + @Test(timeout = 4000) + public void test05() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.messageId = ""; + String string0 = createNetworkNotification0.getMessageId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test06() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.errorMessage = ""; + String string0 = createNetworkNotification0.getErrorMessage(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test07() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + String string0 = createNetworkNotification0.getNetworkId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test08() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + NetworkRollback networkRollback0 = createNetworkNotification0.getRollback(); + assertNull(networkRollback0); + } + + @Test(timeout = 4000) + public void test09() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + boolean boolean0 = createNetworkNotification0.isCompleted(); + assertFalse(boolean0); + } + + @Test(timeout = 4000) + public void test10() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.getException(); + } + + @Test(timeout = 4000) + public void test11() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.setErrorMessage("org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory"); + String string0 = createNetworkNotification0.getErrorMessage(); + assertEquals("org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", string0); + } + + @Test(timeout = 4000) + public void test12() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + String string0 = createNetworkNotification0.getNeutronNetworkId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test13() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.setNeutronNetworkId(""); + assertNull(createNetworkNotification0.getErrorMessage()); + } + + @Test(timeout = 4000) + public void test14() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.OPENSTACK; + createNetworkNotification0.setException(msoExceptionCategory0); + MsoExceptionCategory msoExceptionCategory1 = createNetworkNotification0.getException(); + assertEquals(MsoExceptionCategory.OPENSTACK, msoExceptionCategory1); + } + + @Test(timeout = 4000) + public void test15() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.setRollback((NetworkRollback) null); + assertNull(createNetworkNotification0.getMessageId()); + } + + @Test(timeout = 4000) + public void test16() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.setCompleted(true); + boolean boolean0 = createNetworkNotification0.isCompleted(); + assertTrue(boolean0); + } + + @Test(timeout = 4000) + public void test17() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + createNetworkNotification0.setNetworkId(""); + String string0 = createNetworkNotification0.getNetworkId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test18() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + CreateNetworkNotification.SubnetIdMap createNetworkNotification_SubnetIdMap0 = createNetworkNotification0.getSubnetIdMap(); + assertNull(createNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test19() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + String string0 = createNetworkNotification0.getErrorMessage(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test20() throws Throwable { + CreateNetworkNotification createNetworkNotification0 = new CreateNetworkNotification(); + String string0 = createNetworkNotification0.getMessageId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test21() throws Throwable { + CreateNetworkNotification.SubnetIdMap.Entry createNetworkNotification_SubnetIdMap_Entry0 = new CreateNetworkNotification.SubnetIdMap.Entry(); + createNetworkNotification_SubnetIdMap_Entry0.setKey(""); + assertEquals("", createNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test22() throws Throwable { + CreateNetworkNotification.SubnetIdMap.Entry createNetworkNotification_SubnetIdMap_Entry0 = new CreateNetworkNotification.SubnetIdMap.Entry(); + String string0 = createNetworkNotification_SubnetIdMap_Entry0.getValue(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test23() throws Throwable { + CreateNetworkNotification.SubnetIdMap.Entry createNetworkNotification_SubnetIdMap_Entry0 = new CreateNetworkNotification.SubnetIdMap.Entry(); + createNetworkNotification_SubnetIdMap_Entry0.setValue("'G^M#'lcLg6Gw}"); + assertNull(createNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test24() throws Throwable { + CreateNetworkNotification.SubnetIdMap.Entry createNetworkNotification_SubnetIdMap_Entry0 = new CreateNetworkNotification.SubnetIdMap.Entry(); + String string0 = createNetworkNotification_SubnetIdMap_Entry0.getKey(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test25() throws Throwable { + CreateNetworkNotification.SubnetIdMap createNetworkNotification_SubnetIdMap0 = new CreateNetworkNotification.SubnetIdMap(); + createNetworkNotification_SubnetIdMap0.getEntry(); + List list0 = createNetworkNotification_SubnetIdMap0.getEntry(); + assertTrue(list0.isEmpty()); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTestscaffolding.java new file mode 100644 index 0000000000..358324cb4b --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationESTestscaffolding.java @@ -0,0 +1,83 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:38:53 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class CreateNetworkNotificationESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotification"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(CreateNetworkNotificationESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotification$SubnetIdMap", + "org.openecomp.mso.adapters.network.async.client.MsoRequest", + "org.openecomp.mso.adapters.network.async.client.NetworkRollback", + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotification$SubnetIdMap$Entry", + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotification" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTest.java new file mode 100644 index 0000000000..411bb0ed4f --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTest.java @@ -0,0 +1,20 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:37:26 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class CreateNetworkNotificationResponseESTest extends CreateNetworkNotificationResponseESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + CreateNetworkNotificationResponse createNetworkNotificationResponse0 = new CreateNetworkNotificationResponse(); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTestscaffolding.java new file mode 100644 index 0000000000..63ec1f4479 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/CreateNetworkNotificationResponseESTestscaffolding.java @@ -0,0 +1,78 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:37:26 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class CreateNetworkNotificationResponseESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotificationResponse"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(CreateNetworkNotificationResponseESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotificationResponse" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTest.java new file mode 100644 index 0000000000..2023b62d0e --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTest.java @@ -0,0 +1,114 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:34:29 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class DeleteNetworkNotificationESTest extends DeleteNetworkNotificationESTestscaffolding { + + @Test(timeout = 4000) + public void test00() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.completed = true; + boolean boolean0 = deleteNetworkNotification0.isCompleted(); + assertTrue(boolean0); + } + + @Test(timeout = 4000) + public void test01() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.messageId = ""; + String string0 = deleteNetworkNotification0.getMessageId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test02() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.IO; + deleteNetworkNotification0.setException(msoExceptionCategory0); + MsoExceptionCategory msoExceptionCategory1 = deleteNetworkNotification0.getException(); + assertEquals(MsoExceptionCategory.IO, msoExceptionCategory1); + } + + @Test(timeout = 4000) + public void test03() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.setErrorMessage(""); + String string0 = deleteNetworkNotification0.getErrorMessage(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test04() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.setMessageId("doA"); + String string0 = deleteNetworkNotification0.getMessageId(); + assertEquals("doA", string0); + } + + @Test(timeout = 4000) + public void test05() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.setErrorMessage("aZ"); + String string0 = deleteNetworkNotification0.getErrorMessage(); + assertEquals("aZ", string0); + } + + @Test(timeout = 4000) + public void test06() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + String string0 = deleteNetworkNotification0.getErrorMessage(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test07() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + boolean boolean0 = deleteNetworkNotification0.isCompleted(); + assertFalse(boolean0); + } + + @Test(timeout = 4000) + public void test08() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.setNetworkDeleted((Boolean) null); + assertFalse(deleteNetworkNotification0.isCompleted()); + } + + @Test(timeout = 4000) + public void test09() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + Boolean boolean0 = deleteNetworkNotification0.isNetworkDeleted(); + assertNull(boolean0); + } + + @Test(timeout = 4000) + public void test10() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.setCompleted(false); + assertFalse(deleteNetworkNotification0.isCompleted()); + } + + @Test(timeout = 4000) + public void test11() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + deleteNetworkNotification0.getException(); + } + + @Test(timeout = 4000) + public void test12() throws Throwable { + DeleteNetworkNotification deleteNetworkNotification0 = new DeleteNetworkNotification(); + String string0 = deleteNetworkNotification0.getMessageId(); + assertNull(string0); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTestscaffolding.java new file mode 100644 index 0000000000..368b7d23c9 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationESTestscaffolding.java @@ -0,0 +1,79 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:34:29 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class DeleteNetworkNotificationESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.DeleteNetworkNotification"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(DeleteNetworkNotificationESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.DeleteNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTest.java new file mode 100644 index 0000000000..f2a20f89e7 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTest.java @@ -0,0 +1,20 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:37:19 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class DeleteNetworkNotificationResponseESTest extends DeleteNetworkNotificationResponseESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + DeleteNetworkNotificationResponse deleteNetworkNotificationResponse0 = new DeleteNetworkNotificationResponse(); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTestscaffolding.java new file mode 100644 index 0000000000..ff40a148d7 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/DeleteNetworkNotificationResponseESTestscaffolding.java @@ -0,0 +1,78 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:37:19 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class DeleteNetworkNotificationResponseESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.DeleteNetworkNotificationResponse"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(DeleteNetworkNotificationResponseESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.DeleteNetworkNotificationResponse" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTest.java new file mode 100644 index 0000000000..90f41368f7 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTest.java @@ -0,0 +1,97 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:36:01 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; +import static org.evosuite.runtime.EvoAssertions.*; + +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class MsoExceptionCategoryESTest extends MsoExceptionCategoryESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + MsoExceptionCategory[] msoExceptionCategoryArray0 = MsoExceptionCategory.values(); + assertNotNull(msoExceptionCategoryArray0); + } + + @Test(timeout = 4000) + public void test1() throws Throwable { + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.valueOf("IO"); + assertEquals(MsoExceptionCategory.IO, msoExceptionCategory0); + } + + @Test(timeout = 4000) + public void test2() throws Throwable { + // Undeclared exception! + try { + MsoExceptionCategory.valueOf((String) null); + fail("Expecting exception: NullPointerException"); + + } catch(NullPointerException e) { + // + // Name is null + // + verifyException("java.lang.Enum", e); + } + } + + @Test(timeout = 4000) + public void test3() throws Throwable { + // Undeclared exception! + try { + MsoExceptionCategory.valueOf(""); + fail("Expecting exception: IllegalArgumentException"); + + } catch(IllegalArgumentException e) { + // + // No enum constant org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory. + // + verifyException("java.lang.Enum", e); + } + } + + @Test(timeout = 4000) + public void test4() throws Throwable { + // Undeclared exception! + try { + MsoExceptionCategory.fromValue("v@;'v:U'4Kk;"); + fail("Expecting exception: IllegalArgumentException"); + + } catch(IllegalArgumentException e) { + // + // No enum constant org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory.v@;'v:U'4Kk; + // + verifyException("java.lang.Enum", e); + } + } + + @Test(timeout = 4000) + public void test5() throws Throwable { + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.fromValue("INTERNAL"); + String string0 = msoExceptionCategory0.value(); + assertEquals("INTERNAL", string0); + } + + @Test(timeout = 4000) + public void test6() throws Throwable { + // Undeclared exception! + try { + MsoExceptionCategory.fromValue((String) null); + fail("Expecting exception: NullPointerException"); + + } catch(NullPointerException e) { + // + // Name is null + // + verifyException("java.lang.Enum", e); + } + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTestscaffolding.java new file mode 100644 index 0000000000..aff7063169 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoExceptionCategoryESTestscaffolding.java @@ -0,0 +1,83 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:36:01 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class MsoExceptionCategoryESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(MsoExceptionCategoryESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory" + ); + } + + private static void resetClasses() { + org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(MsoExceptionCategoryESTestscaffolding.class.getClassLoader()); + + org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses( + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory" + ); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTest.java new file mode 100644 index 0000000000..3d53643207 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTest.java @@ -0,0 +1,72 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:33:43 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class MsoRequestESTest extends MsoRequestESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + MsoRequest msoRequest0 = new MsoRequest(); + msoRequest0.setServiceInstanceId(""); + String string0 = msoRequest0.getServiceInstanceId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test1() throws Throwable { + MsoRequest msoRequest0 = new MsoRequest(); + msoRequest0.requestId = ""; + msoRequest0.requestId = "0[73oqjz<&DT/q@"; + String string0 = msoRequest0.getRequestId(); + assertEquals("0[73oqjz<&DT/q@", string0); + } + + @Test(timeout = 4000) + public void test2() throws Throwable { + MsoRequest msoRequest0 = new MsoRequest(); + msoRequest0.requestId = null; + msoRequest0.requestId = ""; + String string0 = msoRequest0.getRequestId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test3() throws Throwable { + MsoRequest msoRequest0 = new MsoRequest(); + msoRequest0.setRequestId(""); + assertEquals("", msoRequest0.getRequestId()); + } + + @Test(timeout = 4000) + public void test4() throws Throwable { + MsoRequest msoRequest0 = new MsoRequest(); + msoRequest0.setServiceInstanceId("0[73oqjz<&DT/q@"); + String string0 = msoRequest0.getServiceInstanceId(); + assertEquals("0[73oqjz<&DT/q@", string0); + } + + @Test(timeout = 4000) + public void test5() throws Throwable { + MsoRequest msoRequest0 = new MsoRequest(); + String string0 = msoRequest0.getServiceInstanceId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test6() throws Throwable { + MsoRequest msoRequest0 = new MsoRequest(); + String string0 = msoRequest0.getRequestId(); + assertNull(string0); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTestscaffolding.java new file mode 100644 index 0000000000..266db77f23 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/MsoRequestESTestscaffolding.java @@ -0,0 +1,78 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:33:43 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class MsoRequestESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.MsoRequest"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(MsoRequestESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.MsoRequest" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTest.java new file mode 100644 index 0000000000..524d5d0b5f --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTest.java @@ -0,0 +1,301 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:33:22 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import java.util.LinkedList; +import java.util.List; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class NetworkRollbackESTest extends NetworkRollbackESTestscaffolding { + + @Test(timeout = 4000) + public void test00() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.networkUpdated = true; + boolean boolean0 = networkRollback0.isNetworkUpdated(); + assertTrue(boolean0); + } + + @Test(timeout = 4000) + public void test01() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + LinkedList linkedList0 = new LinkedList(); + linkedList0.add((Integer) null); + networkRollback0.vlans = (List) linkedList0; + List list0 = networkRollback0.getVlans(); + assertEquals(1, list0.size()); + } + + @Test(timeout = 4000) + public void test02() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.tenantId = "&Ks9_, 2}e``"; + String string0 = networkRollback0.getTenantId(); + assertEquals("&Ks9_, 2}e``", string0); + } + + @Test(timeout = 4000) + public void test03() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.tenantId = ""; + String string0 = networkRollback0.getTenantId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test04() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.physicalNetwork = "'@3 VI0"; + String string0 = networkRollback0.getPhysicalNetwork(); + assertEquals("'@3 VI0", string0); + } + + @Test(timeout = 4000) + public void test05() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.physicalNetwork = ""; + String string0 = networkRollback0.getPhysicalNetwork(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test06() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.neutronNetworkId = ""; + String string0 = networkRollback0.getNeutronNetworkId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test07() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setNetworkType("INXI`s_hhn8 |A"); + String string0 = networkRollback0.getNetworkType(); + assertEquals("INXI`s_hhn8 |A", string0); + } + + @Test(timeout = 4000) + public void test08() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.networkType = ""; + String string0 = networkRollback0.getNetworkType(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test09() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.networkStackId = "{vfF!&8J>*u,6e"; + String string0 = networkRollback0.getNetworkStackId(); + assertEquals("{vfF!&8J>*u,6e", string0); + } + + @Test(timeout = 4000) + public void test10() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.networkStackId = ""; + String string0 = networkRollback0.getNetworkStackId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test11() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.networkName = "!mdg>u#"; + String string0 = networkRollback0.getNetworkName(); + assertEquals("!mdg>u#", string0); + } + + @Test(timeout = 4000) + public void test12() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setNetworkName(""); + String string0 = networkRollback0.getNetworkName(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test13() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setNetworkId(">jKMf7CejKMf7Ce list0 = networkRollback0.getVlans(); + assertEquals(0, list0.size()); + } + + @Test(timeout = 4000) + public void test19() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getNetworkName(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test20() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setNetworkCreated(true); + boolean boolean0 = networkRollback0.isNetworkCreated(); + assertTrue(boolean0); + } + + @Test(timeout = 4000) + public void test21() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getTenantId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test22() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setPhysicalNetwork("T(SG{/@|z:"); + assertNull(networkRollback0.getNetworkName()); + } + + @Test(timeout = 4000) + public void test23() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + MsoRequest msoRequest0 = networkRollback0.getMsoRequest(); + assertNull(msoRequest0); + } + + @Test(timeout = 4000) + public void test24() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + boolean boolean0 = networkRollback0.isNetworkCreated(); + assertFalse(boolean0); + } + + @Test(timeout = 4000) + public void test25() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getNetworkStackId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test26() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getCloudId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test27() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setNetworkUpdated(false); + assertFalse(networkRollback0.isNetworkUpdated()); + } + + @Test(timeout = 4000) + public void test28() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getNetworkType(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test29() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setMsoRequest((MsoRequest) null); + assertNull(networkRollback0.getNetworkType()); + } + + @Test(timeout = 4000) + public void test30() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setNeutronNetworkId("hiSG;1>|vJ^&^D"); + String string0 = networkRollback0.getNeutronNetworkId(); + assertEquals("hiSG;1>|vJ^&^D", string0); + } + + @Test(timeout = 4000) + public void test31() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + boolean boolean0 = networkRollback0.isNetworkUpdated(); + assertFalse(boolean0); + } + + @Test(timeout = 4000) + public void test32() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getNetworkId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test33() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setTenantId(""); + assertFalse(networkRollback0.isNetworkCreated()); + } + + @Test(timeout = 4000) + public void test34() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getPhysicalNetwork(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test35() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + String string0 = networkRollback0.getNeutronNetworkId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test36() throws Throwable { + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.setNetworkStackId("hiSG;1>|vJ^&^D"); + assertNull(networkRollback0.getNetworkType()); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTestscaffolding.java new file mode 100644 index 0000000000..b493406634 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkRollbackESTestscaffolding.java @@ -0,0 +1,79 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:33:22 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class NetworkRollbackESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.NetworkRollback"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(NetworkRollbackESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.MsoRequest", + "org.openecomp.mso.adapters.network.async.client.NetworkRollback" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java new file mode 100644 index 0000000000..ac2729ac9e --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTest.java @@ -0,0 +1,91 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:37:01 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; +import static org.evosuite.runtime.EvoAssertions.*; + +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class NetworkStatusESTest extends NetworkStatusESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + NetworkStatus[] networkStatusArray0 = NetworkStatus.values(); + assertNotNull(networkStatusArray0); + } + + @Test(timeout = 4000) + public void test2() throws Throwable { + // Undeclared exception! + try { + NetworkStatus.valueOf((String) null); + fail("Expecting exception: NullPointerException"); + + } catch(NullPointerException e) { + // + // Name is null + // + verifyException("java.lang.Enum", e); + } + } + + @Test(timeout = 4000) + public void test3() throws Throwable { + // Undeclared exception! + try { + NetworkStatus.valueOf("RjP-NHISY|sp*/M"); + fail("Expecting exception: IllegalArgumentException"); + + } catch(IllegalArgumentException e) { + // + // No enum constant org.openecomp.mso.adapters.network.async.client.NetworkStatus.RjP-NHISY|sp*_/M + // + verifyException("java.lang.Enum", e); + } + } + + @Test(timeout = 4000) + public void test4() throws Throwable { + // Undeclared exception! + try { + NetworkStatus.fromValue((String) null); + fail("Expecting exception: NullPointerException"); + + } catch(NullPointerException e) { + // + // Name is null + // + verifyException("java.lang.Enum", e); + } + } + + @Test(timeout = 4000) + public void test5() throws Throwable { + // Undeclared exception! + try { + NetworkStatus.fromValue(""); + fail("Expecting exception: IllegalArgumentException"); + + } catch(IllegalArgumentException e) { + // + // No enum constant org.openecomp.mso.adapters.network.async.client.NetworkStatus. + // + verifyException("java.lang.Enum", e); + } + } + + @Test(timeout = 4000) + public void test6() throws Throwable { + NetworkStatus networkStatus0 = NetworkStatus.ACTIVE; + String string0 = networkStatus0.value(); + assertEquals("ACTIVE", string0); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTestscaffolding.java new file mode 100644 index 0000000000..0d9c2effd4 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/NetworkStatusESTestscaffolding.java @@ -0,0 +1,83 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:37:01 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class NetworkStatusESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.NetworkStatus"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(NetworkStatusESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.NetworkStatus" + ); + } + + private static void resetClasses() { + org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(NetworkStatusESTestscaffolding.class.getClassLoader()); + + org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses( + "org.openecomp.mso.adapters.network.async.client.NetworkStatus" + ); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTest.java new file mode 100644 index 0000000000..d897ae678a --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTest.java @@ -0,0 +1,154 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:38:17 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import javax.xml.bind.JAXBElement; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class ObjectFactoryESTest extends ObjectFactoryESTestscaffolding { + + @Test(timeout = 4000) + public void test00() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + MsoRequest msoRequest0 = objectFactory0.createMsoRequest(); + assertNull(msoRequest0.getServiceInstanceId()); + } + + @Test(timeout = 4000) + public void test01() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + NetworkRollback networkRollback0 = objectFactory0.createNetworkRollback(); + assertNull(networkRollback0.getPhysicalNetwork()); + } + + @Test(timeout = 4000) + public void test02() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + CreateNetworkNotification.SubnetIdMap.Entry createNetworkNotification_SubnetIdMap_Entry0 = objectFactory0.createCreateNetworkNotificationSubnetIdMapEntry(); + assertNull(createNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test03() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + CreateNetworkNotification.SubnetIdMap createNetworkNotification_SubnetIdMap0 = objectFactory0.createCreateNetworkNotificationSubnetIdMap(); + assertNotNull(createNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test04() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + UpdateNetworkNotification.SubnetIdMap.Entry updateNetworkNotification_SubnetIdMap_Entry0 = objectFactory0.createUpdateNetworkNotificationSubnetIdMapEntry(); + assertNull(updateNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test05() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + UpdateNetworkNotification.SubnetIdMap updateNetworkNotification_SubnetIdMap0 = objectFactory0.createUpdateNetworkNotificationSubnetIdMap(); + assertNotNull(updateNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test06() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + QueryNetworkNotification.SubnetIdMap.Entry queryNetworkNotification_SubnetIdMap_Entry0 = objectFactory0.createQueryNetworkNotificationSubnetIdMapEntry(); + assertNull(queryNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test07() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + DeleteNetworkNotification deleteNetworkNotification0 = objectFactory0.createDeleteNetworkNotification(); + JAXBElement jAXBElement0 = objectFactory0.createDeleteNetworkNotification(deleteNetworkNotification0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test08() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + QueryNetworkNotification.SubnetIdMap queryNetworkNotification_SubnetIdMap0 = objectFactory0.createQueryNetworkNotificationSubnetIdMap(); + assertNotNull(queryNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test09() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + DeleteNetworkNotificationResponse deleteNetworkNotificationResponse0 = objectFactory0.createDeleteNetworkNotificationResponse(); + JAXBElement jAXBElement0 = objectFactory0.createDeleteNetworkNotificationResponse(deleteNetworkNotificationResponse0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test10() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + RollbackNetworkNotificationResponse rollbackNetworkNotificationResponse0 = objectFactory0.createRollbackNetworkNotificationResponse(); + JAXBElement jAXBElement0 = objectFactory0.createRollbackNetworkNotificationResponse(rollbackNetworkNotificationResponse0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test11() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + CreateNetworkNotificationResponse createNetworkNotificationResponse0 = objectFactory0.createCreateNetworkNotificationResponse(); + JAXBElement jAXBElement0 = objectFactory0.createCreateNetworkNotificationResponse(createNetworkNotificationResponse0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test12() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + RollbackNetworkNotification rollbackNetworkNotification0 = objectFactory0.createRollbackNetworkNotification(); + JAXBElement jAXBElement0 = objectFactory0.createRollbackNetworkNotification(rollbackNetworkNotification0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test13() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + UpdateNetworkNotification updateNetworkNotification0 = objectFactory0.createUpdateNetworkNotification(); + JAXBElement jAXBElement0 = objectFactory0.createUpdateNetworkNotification(updateNetworkNotification0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test14() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + QueryNetworkNotification queryNetworkNotification0 = objectFactory0.createQueryNetworkNotification(); + JAXBElement jAXBElement0 = objectFactory0.createQueryNetworkNotification(queryNetworkNotification0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test15() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + UpdateNetworkNotificationResponse updateNetworkNotificationResponse0 = objectFactory0.createUpdateNetworkNotificationResponse(); + JAXBElement jAXBElement0 = objectFactory0.createUpdateNetworkNotificationResponse(updateNetworkNotificationResponse0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test16() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + QueryNetworkNotificationResponse queryNetworkNotificationResponse0 = objectFactory0.createQueryNetworkNotificationResponse(); + JAXBElement jAXBElement0 = objectFactory0.createQueryNetworkNotificationResponse(queryNetworkNotificationResponse0); + assertNotNull(jAXBElement0); + } + + @Test(timeout = 4000) + public void test17() throws Throwable { + ObjectFactory objectFactory0 = new ObjectFactory(); + CreateNetworkNotification createNetworkNotification0 = objectFactory0.createCreateNetworkNotification(); + JAXBElement jAXBElement0 = objectFactory0.createCreateNetworkNotification(createNetworkNotification0); + assertNotNull(jAXBElement0); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTestscaffolding.java new file mode 100644 index 0000000000..1ac0a53880 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/ObjectFactoryESTestscaffolding.java @@ -0,0 +1,103 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:38:17 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class ObjectFactoryESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.ObjectFactory"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(ObjectFactoryESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.MsoRequest", + "org.openecomp.mso.adapters.network.async.client.DeleteNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.NetworkRollback", + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotificationResponse", + "org.openecomp.mso.adapters.network.async.client.NetworkStatus", + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotification$SubnetIdMap$Entry", + "org.openecomp.mso.adapters.network.async.client.RollbackNetworkNotificationResponse", + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotification$SubnetIdMap", + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotification$SubnetIdMap", + "org.openecomp.mso.adapters.network.async.client.DeleteNetworkNotificationResponse", + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotification$SubnetIdMap$Entry", + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotification$SubnetIdMap", + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotificationResponse", + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotification$SubnetIdMap$Entry", + "org.openecomp.mso.adapters.network.async.client.RollbackNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.ObjectFactory", + "org.openecomp.mso.adapters.network.async.client.CreateNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotificationResponse" + ); + } + + private static void resetClasses() { + org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(ObjectFactoryESTestscaffolding.class.getClassLoader()); + + org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses( + "org.openecomp.mso.adapters.network.async.client.ObjectFactory" + ); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTest.java new file mode 100644 index 0000000000..f5e0f951bb --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTest.java @@ -0,0 +1,266 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:33:21 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import java.util.LinkedList; +import java.util.List; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class QueryNetworkNotificationESTest extends QueryNetworkNotificationESTestscaffolding { + + @Test(timeout = 4000) + public void test00() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + Boolean boolean0 = new Boolean(true); + queryNetworkNotification0.networkExists = boolean0; + Boolean boolean1 = queryNetworkNotification0.isNetworkExists(); + assertTrue(boolean1); + } + + @Test(timeout = 4000) + public void test01() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + Boolean boolean0 = new Boolean("EY"); + queryNetworkNotification0.networkExists = boolean0; + Boolean boolean1 = queryNetworkNotification0.isNetworkExists(); + assertFalse(boolean1); + } + + @Test(timeout = 4000) + public void test02() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + LinkedList linkedList0 = new LinkedList(); + queryNetworkNotification0.vlans = (List) linkedList0; + Integer integer0 = new Integer((-1490)); + linkedList0.add(integer0); + List list0 = queryNetworkNotification0.getVlans(); + assertEquals(1, list0.size()); + } + + @Test(timeout = 4000) + public void test03() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + QueryNetworkNotification.SubnetIdMap queryNetworkNotification_SubnetIdMap0 = new QueryNetworkNotification.SubnetIdMap(); + queryNetworkNotification0.setSubnetIdMap(queryNetworkNotification_SubnetIdMap0); + QueryNetworkNotification.SubnetIdMap queryNetworkNotification_SubnetIdMap1 = queryNetworkNotification0.getSubnetIdMap(); + assertSame(queryNetworkNotification_SubnetIdMap1, queryNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test04() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + NetworkStatus networkStatus0 = NetworkStatus.ERROR; + queryNetworkNotification0.setStatus(networkStatus0); + NetworkStatus networkStatus1 = queryNetworkNotification0.getStatus(); + assertEquals(NetworkStatus.ERROR, networkStatus1); + } + + @Test(timeout = 4000) + public void test05() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setNeutronNetworkId("\"9\"@lJ*tfb"); + String string0 = queryNetworkNotification0.getNeutronNetworkId(); + assertEquals("\"9\"@lJ*tfb", string0); + } + + @Test(timeout = 4000) + public void test06() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setNetworkId("uuPPD.~Xq(<)vCwo`"); + String string0 = queryNetworkNotification0.getNetworkId(); + assertEquals("uuPPD.~Xq(<)vCwo`", string0); + } + + @Test(timeout = 4000) + public void test07() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.messageId = "[P/"; + String string0 = queryNetworkNotification0.getMessageId(); + assertEquals("[P/", string0); + } + + @Test(timeout = 4000) + public void test08() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.messageId = ""; + String string0 = queryNetworkNotification0.getMessageId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test09() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setErrorMessage("Q39tT8q6(`"); + String string0 = queryNetworkNotification0.getErrorMessage(); + assertEquals("Q39tT8q6(`", string0); + } + + @Test(timeout = 4000) + public void test10() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setErrorMessage(""); + String string0 = queryNetworkNotification0.getErrorMessage(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test11() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + List list0 = queryNetworkNotification0.getVlans(); + assertEquals(0, list0.size()); + } + + @Test(timeout = 4000) + public void test12() throws Throwable { + QueryNetworkNotification.SubnetIdMap queryNetworkNotification_SubnetIdMap0 = new QueryNetworkNotification.SubnetIdMap(); + queryNetworkNotification_SubnetIdMap0.getEntry(); + List list0 = queryNetworkNotification_SubnetIdMap0.getEntry(); + assertEquals(0, list0.size()); + } + + @Test(timeout = 4000) + public void test13() throws Throwable { + QueryNetworkNotification.SubnetIdMap.Entry queryNetworkNotification_SubnetIdMap_Entry0 = new QueryNetworkNotification.SubnetIdMap.Entry(); + String string0 = queryNetworkNotification_SubnetIdMap_Entry0.getKey(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test14() throws Throwable { + QueryNetworkNotification.SubnetIdMap.Entry queryNetworkNotification_SubnetIdMap_Entry0 = new QueryNetworkNotification.SubnetIdMap.Entry(); + queryNetworkNotification_SubnetIdMap_Entry0.setKey(""); + assertEquals("", queryNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test15() throws Throwable { + QueryNetworkNotification.SubnetIdMap.Entry queryNetworkNotification_SubnetIdMap_Entry0 = new QueryNetworkNotification.SubnetIdMap.Entry(); + String string0 = queryNetworkNotification_SubnetIdMap_Entry0.getValue(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test16() throws Throwable { + QueryNetworkNotification.SubnetIdMap.Entry queryNetworkNotification_SubnetIdMap_Entry0 = new QueryNetworkNotification.SubnetIdMap.Entry(); + queryNetworkNotification_SubnetIdMap_Entry0.setValue(""); + assertNull(queryNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test17() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setCompleted(true); + boolean boolean0 = queryNetworkNotification0.isCompleted(); + assertTrue(boolean0); + } + + @Test(timeout = 4000) + public void test18() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + QueryNetworkNotification.SubnetIdMap queryNetworkNotification_SubnetIdMap0 = queryNetworkNotification0.getSubnetIdMap(); + assertNull(queryNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test19() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + String string0 = queryNetworkNotification0.getNeutronNetworkId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test20() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setMessageId("q;G$a9I6oMF_p-Zy4"); + assertNull(queryNetworkNotification0.getNetworkId()); + } + + @Test(timeout = 4000) + public void test21() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + String string0 = queryNetworkNotification0.getMessageId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test22() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + String string0 = queryNetworkNotification0.getErrorMessage(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test23() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.OPENSTACK; + queryNetworkNotification0.setException(msoExceptionCategory0); + MsoExceptionCategory msoExceptionCategory1 = queryNetworkNotification0.getException(); + assertSame(msoExceptionCategory1, msoExceptionCategory0); + } + + @Test(timeout = 4000) + public void test24() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.getException(); + } + + @Test(timeout = 4000) + public void test25() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + Boolean boolean0 = Boolean.TRUE; + queryNetworkNotification0.setNetworkExists(boolean0); + assertFalse(queryNetworkNotification0.isCompleted()); + } + + @Test(timeout = 4000) + public void test26() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + String string0 = queryNetworkNotification0.getNetworkId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test27() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.getStatus(); + } + + @Test(timeout = 4000) + public void test28() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + boolean boolean0 = queryNetworkNotification0.isCompleted(); + assertFalse(boolean0); + } + + @Test(timeout = 4000) + public void test29() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + Boolean boolean0 = queryNetworkNotification0.isNetworkExists(); + assertNull(boolean0); + } + + @Test(timeout = 4000) + public void test30() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setNetworkId(""); + String string0 = queryNetworkNotification0.getNetworkId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test31() throws Throwable { + QueryNetworkNotification queryNetworkNotification0 = new QueryNetworkNotification(); + queryNetworkNotification0.setNeutronNetworkId(""); + String string0 = queryNetworkNotification0.getNeutronNetworkId(); + assertEquals("", string0); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTestscaffolding.java new file mode 100644 index 0000000000..944237955c --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationESTestscaffolding.java @@ -0,0 +1,82 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:33:21 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class QueryNetworkNotificationESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotification"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(QueryNetworkNotificationESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.NetworkStatus", + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotification$SubnetIdMap$Entry", + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotification$SubnetIdMap" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTest.java new file mode 100644 index 0000000000..5ffce39508 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTest.java @@ -0,0 +1,20 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:36:18 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class QueryNetworkNotificationResponseESTest extends QueryNetworkNotificationResponseESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + QueryNetworkNotificationResponse queryNetworkNotificationResponse0 = new QueryNetworkNotificationResponse(); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTestscaffolding.java new file mode 100644 index 0000000000..cee34092f5 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/QueryNetworkNotificationResponseESTestscaffolding.java @@ -0,0 +1,78 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:36:18 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class QueryNetworkNotificationResponseESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotificationResponse"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(QueryNetworkNotificationResponseESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.QueryNetworkNotificationResponse" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTest.java new file mode 100644 index 0000000000..2e1ec50642 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTest.java @@ -0,0 +1,116 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:37:41 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class RollbackNetworkNotificationESTest extends RollbackNetworkNotificationESTestscaffolding { + + @Test(timeout = 4000) + public void test00() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.completed = true; + boolean boolean0 = rollbackNetworkNotification0.isCompleted(); + assertTrue(boolean0); + } + + @Test(timeout = 4000) + public void test01() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.messageId = ""; + rollbackNetworkNotification0.messageId = "V^{b/%gy^"; + String string0 = rollbackNetworkNotification0.getMessageId(); + assertEquals("V^{b/%gy^", string0); + } + + @Test(timeout = 4000) + public void test02() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.messageId = ""; + String string0 = rollbackNetworkNotification0.getMessageId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test03() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.IO; + rollbackNetworkNotification0.exception = msoExceptionCategory0; + MsoExceptionCategory msoExceptionCategory1 = rollbackNetworkNotification0.getException(); + assertEquals(MsoExceptionCategory.IO, msoExceptionCategory1); + } + + @Test(timeout = 4000) + public void test04() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.setErrorMessage("06SZ x\"@[d5*iJ"); + String string0 = rollbackNetworkNotification0.getErrorMessage(); + assertEquals("06SZ x\"@[d5*iJ", string0); + } + + @Test(timeout = 4000) + public void test05() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.errorMessage = ""; + String string0 = rollbackNetworkNotification0.getErrorMessage(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test06() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.setCompleted(false); + assertFalse(rollbackNetworkNotification0.isCompleted()); + } + + @Test(timeout = 4000) + public void test07() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + boolean boolean0 = rollbackNetworkNotification0.isCompleted(); + assertFalse(boolean0); + } + + @Test(timeout = 4000) + public void test08() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + String string0 = rollbackNetworkNotification0.getErrorMessage(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test09() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.IO; + rollbackNetworkNotification0.setException(msoExceptionCategory0); + assertFalse(rollbackNetworkNotification0.isCompleted()); + } + + @Test(timeout = 4000) + public void test10() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + String string0 = rollbackNetworkNotification0.getMessageId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test11() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.getException(); + } + + @Test(timeout = 4000) + public void test12() throws Throwable { + RollbackNetworkNotification rollbackNetworkNotification0 = new RollbackNetworkNotification(); + rollbackNetworkNotification0.setMessageId("!!IDL8"); + assertNull(rollbackNetworkNotification0.getErrorMessage()); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTestscaffolding.java new file mode 100644 index 0000000000..fc15f61b1f --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationESTestscaffolding.java @@ -0,0 +1,79 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:37:41 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class RollbackNetworkNotificationESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.RollbackNetworkNotification"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(RollbackNetworkNotificationESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", + "org.openecomp.mso.adapters.network.async.client.RollbackNetworkNotification" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTest.java new file mode 100644 index 0000000000..1858a8eac7 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTest.java @@ -0,0 +1,20 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:37:09 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class RollbackNetworkNotificationResponseESTest extends RollbackNetworkNotificationResponseESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + RollbackNetworkNotificationResponse rollbackNetworkNotificationResponse0 = new RollbackNetworkNotificationResponse(); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTestscaffolding.java new file mode 100644 index 0000000000..15f739f8bf --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/RollbackNetworkNotificationResponseESTestscaffolding.java @@ -0,0 +1,78 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:37:09 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class RollbackNetworkNotificationResponseESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.RollbackNetworkNotificationResponse"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(RollbackNetworkNotificationResponseESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.RollbackNetworkNotificationResponse" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTest.java new file mode 100644 index 0000000000..eff07d3026 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTest.java @@ -0,0 +1,202 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:35:17 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import static org.junit.Assert.*; + +import java.util.List; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class UpdateNetworkNotificationESTest extends UpdateNetworkNotificationESTestscaffolding { + + @Test(timeout = 4000) + public void test00() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.setCompleted(true); + boolean boolean0 = updateNetworkNotification0.isCompleted(); + assertTrue(boolean0); + } + + @Test(timeout = 4000) + public void test01() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + UpdateNetworkNotification.SubnetIdMap updateNetworkNotification_SubnetIdMap0 = new UpdateNetworkNotification.SubnetIdMap(); + updateNetworkNotification0.subnetIdMap = updateNetworkNotification_SubnetIdMap0; + UpdateNetworkNotification.SubnetIdMap updateNetworkNotification_SubnetIdMap1 = updateNetworkNotification0.getSubnetIdMap(); + assertSame(updateNetworkNotification_SubnetIdMap1, updateNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test02() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + NetworkRollback networkRollback0 = new NetworkRollback(); + networkRollback0.networkCreated = true; + updateNetworkNotification0.rollback = networkRollback0; + NetworkRollback networkRollback1 = updateNetworkNotification0.getRollback(); + assertNull(networkRollback1.getCloudId()); + } + + @Test(timeout = 4000) + public void test03() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + NetworkRollback networkRollback0 = new NetworkRollback(); + updateNetworkNotification0.rollback = networkRollback0; + NetworkRollback networkRollback1 = updateNetworkNotification0.getRollback(); + assertSame(networkRollback1, networkRollback0); + } + + @Test(timeout = 4000) + public void test04() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.messageId = "Uc.S9x&9M[n"; + String string0 = updateNetworkNotification0.getMessageId(); + assertEquals("Uc.S9x&9M[n", string0); + } + + @Test(timeout = 4000) + public void test05() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.messageId = ""; + String string0 = updateNetworkNotification0.getMessageId(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test06() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.IO; + updateNetworkNotification0.exception = msoExceptionCategory0; + MsoExceptionCategory msoExceptionCategory1 = updateNetworkNotification0.getException(); + assertEquals(MsoExceptionCategory.IO, msoExceptionCategory1); + } + + @Test(timeout = 4000) + public void test07() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.setErrorMessage("org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory"); + String string0 = updateNetworkNotification0.getErrorMessage(); + assertEquals("org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", string0); + } + + @Test(timeout = 4000) + public void test08() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.errorMessage = ""; + String string0 = updateNetworkNotification0.getErrorMessage(); + assertEquals("", string0); + } + + @Test(timeout = 4000) + public void test09() throws Throwable { + UpdateNetworkNotification.SubnetIdMap updateNetworkNotification_SubnetIdMap0 = new UpdateNetworkNotification.SubnetIdMap(); + updateNetworkNotification_SubnetIdMap0.getEntry(); + List list0 = updateNetworkNotification_SubnetIdMap0.getEntry(); + assertTrue(list0.isEmpty()); + } + + @Test(timeout = 4000) + public void test10() throws Throwable { + UpdateNetworkNotification.SubnetIdMap.Entry updateNetworkNotification_SubnetIdMap_Entry0 = new UpdateNetworkNotification.SubnetIdMap.Entry(); + updateNetworkNotification_SubnetIdMap_Entry0.setValue(""); + assertEquals("", updateNetworkNotification_SubnetIdMap_Entry0.getValue()); + } + + @Test(timeout = 4000) + public void test11() throws Throwable { + UpdateNetworkNotification.SubnetIdMap.Entry updateNetworkNotification_SubnetIdMap_Entry0 = new UpdateNetworkNotification.SubnetIdMap.Entry(); + String string0 = updateNetworkNotification_SubnetIdMap_Entry0.getValue(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test12() throws Throwable { + UpdateNetworkNotification.SubnetIdMap.Entry updateNetworkNotification_SubnetIdMap_Entry0 = new UpdateNetworkNotification.SubnetIdMap.Entry(); + String string0 = updateNetworkNotification_SubnetIdMap_Entry0.getKey(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test13() throws Throwable { + UpdateNetworkNotification.SubnetIdMap.Entry updateNetworkNotification_SubnetIdMap_Entry0 = new UpdateNetworkNotification.SubnetIdMap.Entry(); + updateNetworkNotification_SubnetIdMap_Entry0.setKey("F"); + assertEquals("F", updateNetworkNotification_SubnetIdMap_Entry0.getKey()); + } + + @Test(timeout = 4000) + public void test14() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + UpdateNetworkNotification.SubnetIdMap updateNetworkNotification_SubnetIdMap0 = new UpdateNetworkNotification.SubnetIdMap(); + updateNetworkNotification0.setSubnetIdMap(updateNetworkNotification_SubnetIdMap0); + assertFalse(updateNetworkNotification0.isCompleted()); + } + + @Test(timeout = 4000) + public void test15() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.getException(); + } + + @Test(timeout = 4000) + public void test16() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.setMessageId(""); + assertEquals("", updateNetworkNotification0.getMessageId()); + } + + @Test(timeout = 4000) + public void test17() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + updateNetworkNotification0.setRollback((NetworkRollback) null); + assertFalse(updateNetworkNotification0.isCompleted()); + } + + @Test(timeout = 4000) + public void test18() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + String string0 = updateNetworkNotification0.getErrorMessage(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test19() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + boolean boolean0 = updateNetworkNotification0.isCompleted(); + assertFalse(boolean0); + } + + @Test(timeout = 4000) + public void test20() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + NetworkRollback networkRollback0 = updateNetworkNotification0.getRollback(); + assertNull(networkRollback0); + } + + @Test(timeout = 4000) + public void test21() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + String string0 = updateNetworkNotification0.getMessageId(); + assertNull(string0); + } + + @Test(timeout = 4000) + public void test22() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + UpdateNetworkNotification.SubnetIdMap updateNetworkNotification_SubnetIdMap0 = updateNetworkNotification0.getSubnetIdMap(); + assertNull(updateNetworkNotification_SubnetIdMap0); + } + + @Test(timeout = 4000) + public void test23() throws Throwable { + UpdateNetworkNotification updateNetworkNotification0 = new UpdateNetworkNotification(); + MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.OPENSTACK; + updateNetworkNotification0.setException(msoExceptionCategory0); + assertNull(updateNetworkNotification0.getMessageId()); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTestscaffolding.java new file mode 100644 index 0000000000..8c4e0ed56f --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationESTestscaffolding.java @@ -0,0 +1,83 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:35:17 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class UpdateNetworkNotificationESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotification"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(UpdateNetworkNotificationESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.MsoRequest", + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotification", + "org.openecomp.mso.adapters.network.async.client.MsoExceptionCategory", + "org.openecomp.mso.adapters.network.async.client.NetworkRollback", + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotification$SubnetIdMap$Entry", + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotification$SubnetIdMap" + ); + } + + private static void resetClasses() { + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTest.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTest.java new file mode 100644 index 0000000000..a493ce1119 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTest.java @@ -0,0 +1,20 @@ +/* + * This file was automatically generated by EvoSuite + * Mon Nov 14 09:38:03 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.junit.Test; +import org.evosuite.runtime.EvoRunner; +import org.evosuite.runtime.EvoRunnerParameters; +import org.junit.runner.RunWith; + +@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) +public class UpdateNetworkNotificationResponseESTest extends UpdateNetworkNotificationResponseESTestscaffolding { + + @Test(timeout = 4000) + public void test0() throws Throwable { + UpdateNetworkNotificationResponse updateNetworkNotificationResponse0 = new UpdateNetworkNotificationResponse(); + } +} diff --git a/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTestscaffolding.java b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTestscaffolding.java new file mode 100644 index 0000000000..f897b276a5 --- /dev/null +++ b/adapters/mso-network-adapter-async-client/src/test/java/org/openecomp/mso/adapters/network/async/client/UpdateNetworkNotificationResponseESTestscaffolding.java @@ -0,0 +1,78 @@ +/** + * Scaffolding file used to store all the setups needed to run + * tests automatically generated by EvoSuite + * Mon Nov 14 09:38:03 GMT 2016 + */ + +package org.openecomp.mso.adapters.network.async.client; + +import org.evosuite.runtime.annotation.EvoSuiteClassExclude; +import org.junit.BeforeClass; +import org.junit.Before; +import org.junit.After; +import org.junit.AfterClass; +import org.evosuite.runtime.sandbox.Sandbox; + +@EvoSuiteClassExclude +public class UpdateNetworkNotificationResponseESTestscaffolding { + + @org.junit.Rule + public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); + + private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); + + private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); + + @BeforeClass + public static void initEvoSuiteFramework() { + org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotificationResponse"; + org.evosuite.runtime.GuiSupport.initialize(); + org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; + org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; + org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; + org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; + org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); + org.evosuite.runtime.classhandling.JDKClassResetter.init(); + initializeClasses(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + } + + @AfterClass + public static void clearEvoSuiteFramework(){ + Sandbox.resetDefaultSecurityManager(); + java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); + } + + @Before + public void initTestCase(){ + threadStopper.storeCurrentThreads(); + threadStopper.startRecordingTime(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); + org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); + + org.evosuite.runtime.GuiSupport.setHeadless(); + org.evosuite.runtime.Runtime.getInstance().resetRuntime(); + org.evosuite.runtime.agent.InstrumentingAgent.activate(); + } + + @After + public void doneWithTestCase(){ + threadStopper.killAndJoinClientThreads(); + org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); + org.evosuite.runtime.classhandling.JDKClassResetter.reset(); + resetClasses(); + org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); + org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); + org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); + } + + + private static void initializeClasses() { + org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(UpdateNetworkNotificationResponseESTestscaffolding.class.getClassLoader() , + "org.openecomp.mso.adapters.network.async.client.UpdateNetworkNotificationResponse" + ); + } + + private static void resetClasses() { + } +} -- cgit 1.2.3-korg