Search in sources :

Example 1 with InvalidProjectName

use of io.spine.test.reflect.ReflectRejections.InvalidProjectName in project core-java by SpineEventEngine.

the class RejectionReactorMethodShould method invoke_reactor_method.

@Test
public void invoke_reactor_method() throws InvocationTargetException {
    final RValidThreeParams reactorObject = new RValidThreeParams();
    final RejectionReactorMethod reactor = new RejectionReactorMethod(reactorObject.getMethod());
    final InvalidProjectName rejectionMessage = Given.RejectionMessage.invalidProjectName();
    final RejectionContext.Builder builder = RejectionContext.newBuilder();
    final CommandContext commandContext = CommandContext.newBuilder().setTargetVersion(3040).build();
    final RjUpdateProjectName commandMessage = RjUpdateProjectName.getDefaultInstance();
    builder.setCommand(Command.newBuilder().setMessage(pack(commandMessage)).setContext(commandContext));
    final RejectionContext rejectionContext = builder.build();
    reactor.invoke(reactorObject, rejectionMessage, rejectionContext);
    assertEquals(rejectionMessage, reactorObject.getLastRejectionMessage());
    assertEquals(commandMessage, reactorObject.getLastCommandMessage());
    assertEquals(commandContext, reactorObject.getLastCommandContext());
}
Also used : CommandContext(io.spine.core.CommandContext) InvalidProjectName(io.spine.test.reflect.ReflectRejections.InvalidProjectName) RejectionContext(io.spine.core.RejectionContext) RjUpdateProjectName(io.spine.test.rejection.command.RjUpdateProjectName) RValidThreeParams(io.spine.server.rejection.given.RejectionReactorMethodTestEnv.RValidThreeParams) Test(org.junit.Test)

Example 2 with InvalidProjectName

use of io.spine.test.reflect.ReflectRejections.InvalidProjectName in project core-java by SpineEventEngine.

the class RejectionSubscriberMethodShould method invoke_subscriber_method.

@Test
public void invoke_subscriber_method() throws InvocationTargetException {
    final ValidThreeParams subscriberObject = new ValidThreeParams();
    final RejectionSubscriberMethod method = new RejectionSubscriberMethod(subscriberObject.getMethod());
    final InvalidProjectName rejectionMessage = Given.RejectionMessage.invalidProjectName();
    final RejectionContext.Builder builder = RejectionContext.newBuilder();
    final CommandContext commandContext = CommandContext.newBuilder().setTargetVersion(1020).build();
    final RjUpdateProjectName commandMessage = RjUpdateProjectName.getDefaultInstance();
    builder.setCommand(Command.newBuilder().setMessage(pack(commandMessage)).setContext(commandContext));
    final RejectionContext rejectionContext = builder.build();
    method.invoke(subscriberObject, rejectionMessage, rejectionContext);
    assertEquals(rejectionMessage, subscriberObject.getLastRejectionMessage());
    assertEquals(commandMessage, subscriberObject.getLastCommandMessage());
    assertEquals(commandContext, subscriberObject.getLastCommandContext());
}
Also used : CommandContext(io.spine.core.CommandContext) ValidThreeParams(io.spine.server.rejection.given.RejectionSubscriberMethodTestEnv.ValidThreeParams) InvalidProjectName(io.spine.test.reflect.ReflectRejections.InvalidProjectName) RejectionContext(io.spine.core.RejectionContext) RjUpdateProjectName(io.spine.test.rejection.command.RjUpdateProjectName) Test(org.junit.Test)

Aggregations

CommandContext (io.spine.core.CommandContext)2 RejectionContext (io.spine.core.RejectionContext)2 InvalidProjectName (io.spine.test.reflect.ReflectRejections.InvalidProjectName)2 RjUpdateProjectName (io.spine.test.rejection.command.RjUpdateProjectName)2 Test (org.junit.Test)2 RValidThreeParams (io.spine.server.rejection.given.RejectionReactorMethodTestEnv.RValidThreeParams)1 ValidThreeParams (io.spine.server.rejection.given.RejectionSubscriberMethodTestEnv.ValidThreeParams)1