Search in sources :

Example 1 with ConstantNewAtomURIDecorator

use of won.bot.integrationtest.failsim.ConstantNewAtomURIDecorator in project webofneeds by researchstudio-sat.

the class DuplicateAtomURIFailureBot method initializeEventListeners.

@Override
protected void initializeEventListeners() {
    EventListenerContext ctx = getEventListenerContext();
    EventBus bus = getEventBus();
    // create atoms every trigger execution until 2 atoms are created
    bus.subscribe(ActEvent.class, new ActionOnEventListener(ctx, new CreateAtomWithSocketsAction(// message
    new ConstantNewAtomURIDecorator(ctx, "constantAtomURI" + System.currentTimeMillis()), getBotContextWrapper().getAtomCreateListName()), 2));
    // 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 with identical URI"), 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) CreateAtomWithSocketsAction(won.bot.framework.eventbot.action.impl.atomlifecycle.CreateAtomWithSocketsAction) TestFailedEvent(won.bot.framework.eventbot.event.impl.test.TestFailedEvent) ActionOnFirstNEventsListener(won.bot.framework.eventbot.listener.impl.ActionOnFirstNEventsListener) ConstantNewAtomURIDecorator(won.bot.integrationtest.failsim.ConstantNewAtomURIDecorator) 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) ActionOnEventListener(won.bot.framework.eventbot.listener.impl.ActionOnEventListener)

Aggregations

EventListenerContext (won.bot.framework.eventbot.EventListenerContext)1 LogAction (won.bot.framework.eventbot.action.impl.LogAction)1 LogErrorAction (won.bot.framework.eventbot.action.impl.LogErrorAction)1 MultipleActions (won.bot.framework.eventbot.action.impl.MultipleActions)1 PublishEventAction (won.bot.framework.eventbot.action.impl.PublishEventAction)1 CreateAtomWithSocketsAction (won.bot.framework.eventbot.action.impl.atomlifecycle.CreateAtomWithSocketsAction)1 DeactivateAllAtomsAction (won.bot.framework.eventbot.action.impl.atomlifecycle.DeactivateAllAtomsAction)1 SignalWorkDoneAction (won.bot.framework.eventbot.action.impl.lifecycle.SignalWorkDoneAction)1 EventBus (won.bot.framework.eventbot.bus.EventBus)1 SuccessEvent (won.bot.framework.eventbot.event.impl.test.SuccessEvent)1 TestFailedEvent (won.bot.framework.eventbot.event.impl.test.TestFailedEvent)1 TestPassedEvent (won.bot.framework.eventbot.event.impl.test.TestPassedEvent)1 ActionOnEventListener (won.bot.framework.eventbot.listener.impl.ActionOnEventListener)1 ActionOnFirstNEventsListener (won.bot.framework.eventbot.listener.impl.ActionOnFirstNEventsListener)1 ActionOnceAfterNEventsListener (won.bot.framework.eventbot.listener.impl.ActionOnceAfterNEventsListener)1 ConstantNewAtomURIDecorator (won.bot.integrationtest.failsim.ConstantNewAtomURIDecorator)1