use of io.spine.server.rejection.given.RejectionSubscriberMethodTestEnv.ValidThreeParams in project core-java by SpineEventEngine.
the class RejectionSubscriberMethodShould method consider_subscriber_with_both_messages_and_context_params_valid.
@Test
public void consider_subscriber_with_both_messages_and_context_params_valid() {
final Method subscriber = new ValidThreeParams().getMethod();
assertIsRejectionSubscriber(subscriber, true);
}
use of io.spine.server.rejection.given.RejectionSubscriberMethodTestEnv.ValidThreeParams 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());
}
Aggregations