如何在Spring集成中测试MessageChannel?

mu0hgdu0  于 2024-01-05  发布在  Spring
关注(0)|答案(1)|浏览(298)

我想知道消息是否通过特定通道进行测试,或者我想从特定通道获取消息
所以我的流程是:controller -> gateway -> ServiceActivator

  1. private final Gateway gateway;
  2. public ResponseEntity<Map<String,String>> submit(String applicationId, ApplicationDto applicationDto) {
  3. applicationDto.setApplicationId(applicationId);
  4. gateway.submitApplication(applicationDto);
  5. return ResponseEntity.ok(Map.of(MESSAGE, "Accepted submit"));
  6. }

字符串
网关

  1. @Gateway(requestChannel = "submitApplicationChannel", replyChannel = "replySubmitApplicationChannel")
  2. WorkflowPayload submitApplication(ApplicationDto applicationDto);


管道

  1. @Bean
  2. MessageChannel submitApplicationChannel() {
  3. return new DirectChannel();
  4. }


所以我的测试是发送一个启动流的请求

  1. @Test
  2. @DisplayName("Application Submission")
  3. void submissionTest() throws Exception {
  4. mockMvc.perform(MockMvcRequestBuilders
  5. .post("/api/v1/applications/contract-validation/" + APPLICATION_ID)
  6. .contentType(MediaType.APPLICATION_JSON)
  7. .content(objectMapper.writeValueAsString(payload)))
  8. .andExpect(status().isAccepted())
  9. .andReturn();
  10. //Check HERE if the message passed through the channel
  11. }


你能给予我搭把手吗?

j5fpnvbx

j5fpnvbx1#

在测试中,在调用网关之前,将ChannelInterceptor添加到submitApplicationChannel

  1. public interface ChannelInterceptor {
  2. /**
  3. * Invoked before the Message is actually sent to the channel.
  4. * This allows for modification of the Message if necessary.
  5. * If this method returns {@code null} then the actual
  6. * send invocation will not occur.
  7. */
  8. @Nullable
  9. default Message<?> preSend(Message<?> message, MessageChannel channel) {
  10. return message;
  11. }
  12. /**
  13. * Invoked immediately after the send invocation. The boolean
  14. * value argument represents the return value of that invocation.
  15. */
  16. default void postSend(Message<?> message, MessageChannel channel, boolean sent) {
  17. }
  18. /**
  19. * Invoked after the completion of a send regardless of any exception that
  20. * have been raised thus allowing for proper resource cleanup.
  21. * <p>Note that this will be invoked only if {@link #preSend} successfully
  22. * completed and returned a Message, i.e. it did not return {@code null}.
  23. * @since 4.1
  24. */
  25. default void afterSendCompletion(
  26. Message<?> message, MessageChannel channel, boolean sent, @Nullable Exception ex) {
  27. }
  28. /**
  29. * Invoked as soon as receive is called and before a Message is
  30. * actually retrieved. If the return value is 'false', then no
  31. * Message will be retrieved. This only applies to PollableChannels.
  32. */
  33. default boolean preReceive(MessageChannel channel) {
  34. return true;
  35. }
  36. /**
  37. * Invoked immediately after a Message has been retrieved but before
  38. * it is returned to the caller. The Message may be modified if
  39. * necessary; {@code null} aborts further interceptor invocations.
  40. * This only applies to PollableChannels.
  41. */
  42. @Nullable
  43. default Message<?> postReceive(Message<?> message, MessageChannel channel) {
  44. return message;
  45. }
  46. /**
  47. * Invoked after the completion of a receive regardless of any exception that
  48. * have been raised thus allowing for proper resource cleanup.
  49. * <p>Note that this will be invoked only if {@link #preReceive} successfully
  50. * completed and returned {@code true}.
  51. * @since 4.1
  52. */
  53. default void afterReceiveCompletion(@Nullable Message<?> message, MessageChannel channel,
  54. @Nullable Exception ex) {
  55. }
  56. }

字符串

展开查看全部

相关问题