Search in sources :

Example 6 with MultipleActions

use of won.bot.framework.eventbot.action.impl.MultipleActions in project webofneeds by researchstudio-sat.

the class DuplicateMessageURIFailureBot method initializeEventListeners.

@Override
protected void initializeEventListeners() {
    EventListenerContext ctx = getEventListenerContext();
    EventBus bus = getEventBus();
    // log error if we can create 2 atoms
    bus.subscribe(AtomCreatedEvent.class, new ActionOnceAfterNEventsListener(ctx, 2, new MultipleActions(ctx, new LogErrorAction(ctx, "Should not have been able to create 2 atoms using message with identical URIs"), new PublishEventAction(ctx, new TestFailedEvent(this, "Should not have been able to create 2 atoms with identical URI")))));
    // log success if we could create 1 atom
    bus.subscribe(AtomCreatedEvent.class, new ActionOnFirstNEventsListener(ctx, 1, new MultipleActions(ctx, new LogAction(ctx, "Good: could create one atom"), new PublishEventAction(ctx, new SuccessEvent()))));
    // log success if we got an error for 2nd atom
    bus.subscribe(AtomCreationFailedEvent.class, new ActionOnFirstNEventsListener(ctx, 1, new MultipleActions(ctx, new LogAction(ctx, "Good: atom creation failed for 2nd atom."), new PublishEventAction(ctx, new SuccessEvent()))));
    // when we have 2 SuccessEvents, we're done. Deactivate the atoms and signal
    // we're finished
    bus.subscribe(SuccessEvent.class, new ActionOnceAfterNEventsListener(ctx, 2, new MultipleActions(ctx, new LogAction(ctx, "Test passed."), new PublishEventAction(ctx, new TestPassedEvent(this)), new DeactivateAllAtomsAction(ctx))));
    // when we have a FailureEvent, we're done, too. Deactivate the atoms and signal
    // we're finished
    bus.subscribe(TestFailedEvent.class, new ActionOnceAfterNEventsListener(ctx, 1, new MultipleActions(ctx, new LogAction(ctx, "Test failed."), new DeactivateAllAtomsAction(ctx))));
    // wait for the atomDeactivated event, then say we're done.
    bus.subscribe(AtomDeactivatedEvent.class, new ActionOnceAfterNEventsListener(ctx, 1, new SignalWorkDoneAction(ctx, this)));
// TODO: fix: bot runs forever even if test fails.
// TODO: fix: atom 1 is not deactivated if test fails.
}
Also used : EventListenerContext(won.bot.framework.eventbot.EventListenerContext) ActionOnceAfterNEventsListener(won.bot.framework.eventbot.listener.impl.ActionOnceAfterNEventsListener) PublishEventAction(won.bot.framework.eventbot.action.impl.PublishEventAction) LogErrorAction(won.bot.framework.eventbot.action.impl.LogErrorAction) EventBus(won.bot.framework.eventbot.bus.EventBus) SignalWorkDoneAction(won.bot.framework.eventbot.action.impl.lifecycle.SignalWorkDoneAction) TestFailedEvent(won.bot.framework.eventbot.event.impl.test.TestFailedEvent) ActionOnFirstNEventsListener(won.bot.framework.eventbot.listener.impl.ActionOnFirstNEventsListener) TestPassedEvent(won.bot.framework.eventbot.event.impl.test.TestPassedEvent) MultipleActions(won.bot.framework.eventbot.action.impl.MultipleActions) LogAction(won.bot.framework.eventbot.action.impl.LogAction) DeactivateAllAtomsAction(won.bot.framework.eventbot.action.impl.atomlifecycle.DeactivateAllAtomsAction) SuccessEvent(won.bot.framework.eventbot.event.impl.test.SuccessEvent)

Aggregations

MultipleActions (won.bot.framework.eventbot.action.impl.MultipleActions)6 EventBus (won.bot.framework.eventbot.bus.EventBus)6 EventListenerContext (won.bot.framework.eventbot.EventListenerContext)5 BaseEventBotAction (won.bot.framework.eventbot.action.BaseEventBotAction)4 PublishEventAction (won.bot.framework.eventbot.action.impl.PublishEventAction)4 Event (won.bot.framework.eventbot.event.Event)4 EventListener (won.bot.framework.eventbot.listener.EventListener)4 ActionOnEventListener (won.bot.framework.eventbot.listener.impl.ActionOnEventListener)4 DeactivateAllAtomsAction (won.bot.framework.eventbot.action.impl.atomlifecycle.DeactivateAllAtomsAction)3 SignalWorkDoneAction (won.bot.framework.eventbot.action.impl.lifecycle.SignalWorkDoneAction)3 TestFailedEvent (won.bot.framework.eventbot.event.impl.test.TestFailedEvent)3 TestPassedEvent (won.bot.framework.eventbot.event.impl.test.TestPassedEvent)3 LogAction (won.bot.framework.eventbot.action.impl.LogAction)2 LogErrorAction (won.bot.framework.eventbot.action.impl.LogErrorAction)2 CreateAtomWithSocketsAction (won.bot.framework.eventbot.action.impl.atomlifecycle.CreateAtomWithSocketsAction)2 FailureResponseEvent (won.bot.framework.eventbot.event.impl.wonmessage.FailureResponseEvent)2 ActionOnceAfterNEventsListener (won.bot.framework.eventbot.listener.impl.ActionOnceAfterNEventsListener)2 URI (java.net.URI)1 Dataset (org.apache.jena.query.Dataset)1 Resource (org.apache.jena.rdf.model.Resource)1