Package org.mokai.plugin.jpf

Examples of org.mokai.plugin.jpf.JpfPluginMechanism


public class PluginTypeLoader implements TypeLoader {

  private PluginMechanism pluginMechanism;

  public PluginTypeLoader() {
    this(new JpfPluginMechanism());
  }
View Full Code Here


  private final String PLUGINS_PATH = "src/test/resources/plugins-test/";

  @Test
  public void testLoadNonExistentType() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // check that null is returned when we try to load an unexistent class
    Class<?> nonExistentClass = pluginMechanism.loadClass("non.existent.class");
    Assert.assertNull(nonExistentClass);

    pluginMechanism.destroy();
  }
View Full Code Here

    pluginMechanism.destroy();
  }

  @Test
  public void testLoadAcceptorTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // check that we can load the class
    Class<?> acceptorClass = pluginMechanism.loadClass("org.mokai.acceptor.TestAcceptor");
    Assert.assertNotNull(acceptorClass);

    // check that we find the acceptor class in the test plugin
    Set<Class<? extends Acceptor>> acceptorTypes = pluginMechanism.loadTypes(Acceptor.class);
    Assert.assertEquals(1, acceptorTypes.size());
    Assert.assertEquals(acceptorClass, acceptorTypes.iterator().next());

    pluginMechanism.destroy();
  }
View Full Code Here

    pluginMechanism.destroy();
  }

  @Test
  public void testLoadActionTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // check that we can load the class
    Class<?> actionClass = (Class<?>) pluginMechanism.loadClass("org.mokai.action.TestAction");
    Assert.assertNotNull(actionClass);

    // check that we find the action class in the test plugin
    Set<Class<? extends Action>> actionTypes = pluginMechanism.loadTypes(Action.class);
    Assert.assertEquals(1, actionTypes.size());
    Assert.assertEquals(actionClass, actionTypes.iterator().next());

    pluginMechanism.destroy();
  }
View Full Code Here

    pluginMechanism.destroy();
  }

  @Test
  public void testLoadConnectorTypes() throws Exception {
    JpfPluginMechanism pluginMechanism = new JpfPluginMechanism(PLUGINS_PATH);
    pluginMechanism.configure();

    // check that we can load the class
    Class<?> receiverClass = (Class<?>) pluginMechanism.loadClass("org.mokai.connector.TestConnector");
    Assert.assertNotNull(receiverClass);

    // check that we find the receiver class in the test plugin
    Set<Class<? extends Connector>> receiverTypes = pluginMechanism.loadTypes(Connector.class);
    Assert.assertEquals(1, receiverTypes.size());
    Assert.assertEquals(receiverClass, receiverTypes.iterator().next());

    pluginMechanism.destroy();
  }
View Full Code Here

TOP

Related Classes of org.mokai.plugin.jpf.JpfPluginMechanism

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.