使用他们的测试绑定器测试 spring-cloud-stream 总是抛出 MessageDeliveryExcepti



我正在尝试为我的消息生产者编写测试。但是每当我尝试使用注入的绑定发送消息时,我都会收到以下错误

Caused by: org.springframework.integration.MessageDispatchingException: Dispatcher has no subscribers, failedMessage=GenericMessage [payload=..., headers={spanTraceId=0761b2d61b665041, spanId=e3b298682fefe198, spanParentSpanId=549ea87126d2484d, nativeHeaders={X-B3-TraceId=[0761b2d61b665041], spanTraceId=[0761b2d61b665041], X-B3-SpanId=[e3b298682fefe198], spanId=[e3b298682fefe198], X-B3-ParentSpanId=[549ea87126d2484d], spanParentSpanId=[549ea87126d2484d], X-B3-Sampled=[0], spanSampled=[0]}, X-B3-SpanId=e3b298682fefe198, X-B3-ParentSpanId=549ea87126d2484d, X-B3-Sampled=0, X-B3-TraceId=0761b2d61b665041, id=0c885a37-a1b1-fc0a-1314-e403ec1bffdb, spanSampled=0, contentType=application/json, timestamp=1589551815143}]
at org.springframework.integration.dispatcher.UnicastingDispatcher.doDispatch(UnicastingDispatcher.java:138)
at org.springframework.integration.dispatcher.UnicastingDispatcher.dispatch(UnicastingDispatcher.java:105)
at org.springframework.integration.channel.AbstractSubscribableChannel.doSend(AbstractSubscribableChannel.java:73)
... 42 more

由于我正在测试消息生产者,因此我的代码中自然没有消费者。如何修复此异常?

这是我创建的最小测试类,它显示了相同的行为:

@RunWith(SpringRunner.class)
@ActiveProfiles("test")
@SpringBootTest(classes = {MessagingTest.SampleConfiguration.class, Application.class, EventMockConfiguration.class})
public class MessagingTest {
@Autowired
private LibraryMessageSource libraryMessageSource;
@Autowired
private InputDestination input;
@Autowired
private OutputDestination output;
@Test
public void test() throws Exception {
libraryMessageSource.creations().send(MessageBuilder.withPayload("test").build());
}
@SpringBootApplication
@Import({TestChannelBinderConfiguration.class})
public static class SampleConfiguration {
}
}

注意:应用程序.class我的应用程序和 EventMock 的主类用特定的模拟覆盖上下文中的 bean。

public interface LibraryMessageSource {
String LIBRARY_CREATE = "messages-library-create";
String LIBRARY_UPDATE = "messages-library-update";
@Input(LIBRARY_CREATE)
MessageChannel creations();
@Input(LIBRARY_UPDATE)
MessageChannel updates();
}

因为我正在测试消息生产者

您的应用程序具有使用者,而不是生产者

@Input(INPUT)
MessageChannel events();

而且您没有订阅@StreamListener

@Test
public void test() throws Exception {
libraryMessageSource.events().send(MessageBuilder.withPayload("test").build());
}