use of org.jboss.ide.eclipse.as.wtp.core.server.behavior.ISubsystemController in project jbosstools-openshift by jbosstools.
the class OpenShiftSubsystemTest method testSubsystemsEAP.
@Test
public void testSubsystemsEAP() throws Exception {
IServer s1 = OpenShiftServerTestUtils.createOpenshift3Server("example", OpenshiftEapProfileDetector.PROFILE);
IControllableServerBehavior beh = (IControllableServerBehavior) s1.loadAdapter(IControllableServerBehavior.class, new NullProgressMonitor());
String[] systems = new String[] { IControllableServerBehavior.SYSTEM_LAUNCH, IControllableServerBehavior.SYSTEM_MODULES, IControllableServerBehavior.SYSTEM_PUBLISH, IControllableServerBehavior.SYSTEM_SHUTDOWN, IFilesystemController.SYSTEM_ID, IDeploymentOptionsController.SYSTEM_ID, IModuleDeployPathController.SYSTEM_ID };
String[] expected = new String[] { "org.jboss.tools.openshift.core.server.behavior.OpenShiftLaunchController", "org.jboss.tools.openshift.core.server.behavior.eap.OpenShiftEapModulesController", "org.jboss.tools.openshift.core.server.behavior.eap.OpenShiftEapPublishController", "org.jboss.tools.openshift.core.server.behavior.OpenShiftShutdownController", "org.jboss.ide.eclipse.as.wtp.core.server.behavior.LocalFilesystemController", "org.jboss.tools.openshift.core.server.behavior.OpenShiftDeploymentOptionsController", "org.jboss.tools.openshift.core.server.behavior.eap.OpenShiftEapDeployPathController" };
for (int i = 0; i < systems.length; i++) {
ISubsystemController c = beh.getController(systems[i]);
assertEquals(expected[i], c.getClass().getName());
}
}
use of org.jboss.ide.eclipse.as.wtp.core.server.behavior.ISubsystemController in project jbosstools-openshift by jbosstools.
the class OpenShiftSubsystemTest method testOpenshift3Standard.
private void testOpenshift3Standard(IServer s1) throws CoreException {
IControllableServerBehavior beh = (IControllableServerBehavior) s1.loadAdapter(IControllableServerBehavior.class, new NullProgressMonitor());
String[] systems = new String[] { IControllableServerBehavior.SYSTEM_LAUNCH, IControllableServerBehavior.SYSTEM_MODULES, IControllableServerBehavior.SYSTEM_PUBLISH, IControllableServerBehavior.SYSTEM_SHUTDOWN, IFilesystemController.SYSTEM_ID, IDeploymentOptionsController.SYSTEM_ID, IModuleDeployPathController.SYSTEM_ID };
String[] expected = new String[] { "org.jboss.tools.openshift.core.server.behavior.OpenShiftLaunchController", "org.jboss.tools.as.core.server.controllable.subsystems.internal.NoOpModuleController", "org.jboss.tools.openshift.core.server.behavior.OpenShiftPublishController", "org.jboss.tools.openshift.core.server.behavior.OpenShiftShutdownController", "org.jboss.ide.eclipse.as.wtp.core.server.behavior.LocalFilesystemController", "org.jboss.tools.openshift.core.server.behavior.OpenShiftDeploymentOptionsController", "org.jboss.tools.as.core.server.controllable.subsystems.internal.ModuleDeployPathController" };
for (int i = 0; i < systems.length; i++) {
ISubsystemController c = beh.getController(systems[i]);
assertEquals(expected[i], c.getClass().getName());
}
}
Aggregations