Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSystemTestEnvironment.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSystemTestEnvironment.java128
1 files changed, 0 insertions, 128 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSystemTestEnvironment.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSystemTestEnvironment.java
deleted file mode 100644
index 67326b83b08..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSystemTestEnvironment.java
+++ /dev/null
@@ -1,128 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.ote.message;
-
-import java.lang.reflect.InvocationTargetException;
-import java.net.URL;
-import java.util.ArrayList;
-import java.util.List;
-
-import org.eclipse.osee.ote.Configuration;
-import org.eclipse.osee.ote.core.IUserSession;
-import org.eclipse.osee.ote.core.ServiceUtility;
-import org.eclipse.osee.ote.core.TestScript;
-import org.eclipse.osee.ote.core.environment.TestEnvironment;
-import org.eclipse.osee.ote.core.environment.interfaces.BasicTimeout;
-import org.eclipse.osee.ote.core.environment.interfaces.IEnvironmentFactory;
-import org.eclipse.osee.ote.core.environment.interfaces.ITimeout;
-import org.eclipse.osee.ote.core.model.IModelManager;
-import org.eclipse.osee.ote.message.instrumentation.IOInstrumentation;
-import org.eclipse.osee.ote.message.interfaces.IMessageManager;
-import org.eclipse.osee.ote.message.interfaces.ITestEnvironmentMessageSystemAccessor;
-
-/**
- * @author Ryan D. Brooks
- * @author Robert A. Fisher
- * @author Andrew M. Finkbeiner
- */
-public abstract class MessageSystemTestEnvironment extends TestEnvironment implements ITestEnvironmentMessageSystemAccessor, IMessageTestContext {
- protected URL[] clientClasses;
- private final List<IPreScriptInstantiation> preInstantiation = new ArrayList<>();
- protected boolean promptResponse = false;
- private IOInstrumentationDB ioInstrumentation;
-
- protected MessageSystemTestEnvironment(IEnvironmentFactory factory) {
- super(factory);
- getScriptCtrl().setScriptReady(false);
- }
-
- private void setupIOInstrumentation() {
- if (ioInstrumentation == null) {
- ioInstrumentation = new IOInstrumentationDB();
- }
- }
-
- public void envWait(int milliseconds) throws InterruptedException {
- envWait(new BasicTimeout(), milliseconds);
- }
-
- public void envWait(ITimeout obj, int milliseconds) throws InterruptedException {
- setTimerFor(obj, milliseconds);
- synchronized (obj) {
- obj.wait();
- }
- }
-
- @SuppressWarnings("rawtypes")
- @Override
- public IMessageManager getMsgManager() {
- return ServiceUtility.getService(IMessageManager.class, false);
- }
-
- public IModelManager getModelManager() {
- return ServiceUtility.getService(IModelManager.class, 5000);
- }
-
- /**
- * provides a way for sub classes to instantiate test scripts in their own way.
- */
- protected abstract TestScript instantiateScriptClass(Class<?> scriptClass, IUserSession connection) throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException;
-
- public abstract void singleStepEnv();
-
- @Override
- public void resetScriptLoader(Configuration configuration, String[] strings) throws Exception {
- getRuntimeManager().resetScriptLoader(configuration, strings);
- }
-
- public void addPreInstantiationListener(IPreScriptInstantiation listener) {
- preInstantiation.add(listener);
- }
-
- public void removePreInstantiationListener(IPreScriptInstantiation listener) {
- preInstantiation.remove(listener);
- }
-
- public void notifyPreInstantiationListeners() {
- for (IPreScriptInstantiation pre : preInstantiation) {
- pre.run();
- }
- }
-
- public IOInstrumentation getIOInstrumentation(String name) {
- setupIOInstrumentation();
- return ioInstrumentation.getIOInstrumentation(name);
- }
-
- public IOInstrumentation registerIOInstrumentation(String name, IOInstrumentation io) {
- setupIOInstrumentation();
- return ioInstrumentation.registerIOInstrumentation(name, io);
- }
-
- public void deregisterIOInstrumentation(String name) {
- setupIOInstrumentation();
- ioInstrumentation.unregisterIOInstrumentation(name);
- }
-
- public void addInstrumentationRegistrationListener(IInstrumentationRegistrationListener listener) {
- setupIOInstrumentation();
- ioInstrumentation.addRegistrationListener(listener);
- }
-
- public void removeInstrumentationRegistrationListener(IInstrumentationRegistrationListener listener) {
- setupIOInstrumentation();
- ioInstrumentation.removeRegistrationListener(listener);
- }
-
- public Class<?> loadClassFromMessageLoader(String path) throws ClassNotFoundException {
- return getRuntimeManager().loadFromRuntimeLibraryLoader(path);
- }
-} \ No newline at end of file

Back to the top